Class: Dry::Logic::Rule::Predicate
Instance Attribute Summary
#args, #arity, #options, #predicate
Class Method Summary
collapse
Instance Method Summary
collapse
#bind, build, #curry, #eval_args, #id, #initialize, interfaces, #parameters, #with
Methods included from Operators
#and, #or, #then, #xor
Class Method Details
.specialize(arity, curried, base = Predicate) ⇒ Object
7
8
9
|
# File 'lib/dry/logic/rule/predicate.rb', line 7
def self.specialize(arity, curried, base = Predicate)
super
end
|
Instance Method Details
#ast(input = Undefined) ⇒ Object
Also known as:
to_ast
27
28
29
|
# File 'lib/dry/logic/rule/predicate.rb', line 27
def ast(input = Undefined)
[type, [name, args_with_names(input)]]
end
|
#name ⇒ Object
15
16
17
|
# File 'lib/dry/logic/rule/predicate.rb', line 15
def name
predicate.name
end
|
#to_s ⇒ Object
19
20
21
22
23
24
25
|
# File 'lib/dry/logic/rule/predicate.rb', line 19
def to_s
if args.empty?
name.to_s
else
"#{name}(#{args.map(&:inspect).join(", ")})"
end
end
|
#type ⇒ Object
11
12
13
|
# File 'lib/dry/logic/rule/predicate.rb', line 11
def type
:predicate
end
|