Class: RFunk::Success
- Inherits:
-
Value
- Object
- Value
- RFunk::Success
show all
- Defined in:
- lib/rfunk/either/success.rb
Instance Method Summary
collapse
Methods inherited from Value
#==, #initialize, #result
Constructor Details
This class inherits a constructor from RFunk::Value
Instance Method Details
#failure? ⇒ Boolean
7
8
9
|
# File 'lib/rfunk/either/success.rb', line 7
def failure?
false
end
|
#or(_) ⇒ Object
11
12
13
|
# File 'lib/rfunk/either/success.rb', line 11
def or(_)
self
end
|
#success? ⇒ Boolean
3
4
5
|
# File 'lib/rfunk/either/success.rb', line 3
def success?
true
end
|