class Concurrent::Maybe
def or(other)
-
(Object)
- The value of self when `Just`; else the given default.
def or(other) just? ? just : other end
(Object)
- The value of self when `Just`; else the given default.
def or(other) just? ? just : other end