class Concurrent::Maybe

def or(other)

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