class Fear::PartialFunction::Any

Any is an object which is always truthy @api private

Public Class Methods

==(_other) click to toggle source

@param _other [any] @return [true]

# File lib/fear/partial_function/any.rb, line 17
def ==(_other)
  true
end
===(_other) click to toggle source

@param _other [any] @return [true]

# File lib/fear/partial_function/any.rb, line 11
def ===(_other)
  true
end
to_proc() click to toggle source

@return [Proc]

# File lib/fear/partial_function/any.rb, line 22
def to_proc
  proc { true }
end