Class: Dry::Logic::Rule::Predicate

Inherits:
Dry::Logic::Rule show all
Defined in:
lib/dry/logic/rule/predicate.rb

Instance Attribute Summary

Attributes inherited from Dry::Logic::Rule

#args, #arity, #options, #predicate

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Dry::Logic::Rule

#bind, build, #curry, #eval_args, #id, #initialize, interfaces, #parameters, #with

Methods included from Operators

#and, #or, #then, #xor

Constructor Details

This class inherits a constructor from Dry::Logic::Rule

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

#nameObject



15
16
17
# File 'lib/dry/logic/rule/predicate.rb', line 15

def name
  predicate.name
end

#to_sObject



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

#typeObject



11
12
13
# File 'lib/dry/logic/rule/predicate.rb', line 11

def type
  :predicate
end