class Ramda::Internal::Functors::Maybe::None

None value

Attributes

value[R]

Public Class Methods

new() click to toggle source
# File lib/ramda/internal/functors.rb, line 93
def new
  @instance ||= orig_new
end
Also aliased as: orig_new
orig_new()
Alias for: new

Public Instance Methods

==(other) click to toggle source
# File lib/ramda/internal/functors.rb, line 98
def ==(other)
  instance_of?(other.class)
end
ap(_m) click to toggle source
# File lib/ramda/internal/functors.rb, line 102
def ap(_m)
  self
end
chain(_f) click to toggle source
# File lib/ramda/internal/functors.rb, line 106
def chain(_f)
  self
end
map(_f) click to toggle source
# File lib/ramda/internal/functors.rb, line 110
def map(_f)
  self
end
none?() click to toggle source
# File lib/ramda/internal/functors.rb, line 114
def none?
  true
end
some?() click to toggle source
# File lib/ramda/internal/functors.rb, line 118
def some?
  false
end