Method: Vedeu::Common#absent?

Defined in:
lib/vedeu/common.rb

#absent?(variable) ⇒ Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a boolean indicating whether a variable is nil or empty.



14
15
16
# File 'lib/vedeu/common.rb', line 14

def absent?(variable)
  !present?(variable)
end