Class: Fear::PartialFunction::Guard::Or Private

Inherits:
Fear::PartialFunction::Guard show all
Defined in:
lib/fear/partial_function/guard/or.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Methods inherited from Fear::PartialFunction::Guard

and, and1, and2, and3, or

Constructor Details

#initialize(c1, c2) ⇒ Or

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Or.



10
11
12
13
# File 'lib/fear/partial_function/guard/or.rb', line 10

def initialize(c1, c2)
  @c1 = c1
  @c2 = c2
end

Instance Method Details

#===(arg) ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • arg (any)

Returns:

  • (Boolean)


32
33
34
# File 'lib/fear/partial_function/guard/or.rb', line 32

def ===(arg)
  (c1 === arg) || (c2 === arg)
end

#and(other) ⇒ Fear::PartialFunction::Guard

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



20
21
22
# File 'lib/fear/partial_function/guard/or.rb', line 20

def and(other)
  Guard::And.new(self, other)
end

#or(other) ⇒ Fear::PartialFunction::Guard

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



26
27
28
# File 'lib/fear/partial_function/guard/or.rb', line 26

def or(other)
  Guard::Or.new(self, other)
end