Top Level Namespace

Defined Under Namespace

Modules: FunctionalLightService Classes: Null, Object

Instance Method Summary collapse

Instance Method Details

#Maybe(obj) ⇒ Object

rubocop:disable Naming/MethodName



12
13
14
# File 'lib/functional-light-service/functional/maybe.rb', line 12

def Maybe(obj)
  obj.nil? ? Null.instance : obj
end