Module: Origin::Extensions::NilClass
- Defined in:
- lib/origin/extensions/nil_class.rb
Overview
This module contains additional nil behaviour.
Instance Method Summary (collapse)
-
- (Object) __add__(object)
Add this object to nil.
-
- (nil) __evolve_time__
(also: #__evolve_date__)
Evolve the nil into a date or time.
-
- (Object) __expanded__(object)
Add this object to nil.
-
- (Object) __intersect__(object)
Add this object to nil.
-
- (Object) __override__(object)
Add this object to nil.
-
- (Object) __union__(object)
Add this object to nil.
Instance Method Details
- (Object) __add__(object)
Add this object to nil.
18 |
# File 'lib/origin/extensions/nil_class.rb', line 18 def __add__(object); object; end |
- (nil) __evolve_time__ Also known as: __evolve_date__
Evolve the nil into a date or time.
40 |
# File 'lib/origin/extensions/nil_class.rb', line 40 def __evolve_time__; self; end |
- (Object) __expanded__(object)
Add this object to nil.
30 |
# File 'lib/origin/extensions/nil_class.rb', line 30 def (object); object; end |
- (Object) __intersect__(object)
Add this object to nil.
53 |
# File 'lib/origin/extensions/nil_class.rb', line 53 def __intersect__(object); object; end |
- (Object) __override__(object)
Add this object to nil.
65 |
# File 'lib/origin/extensions/nil_class.rb', line 65 def __override__(object); object; end |
- (Object) __union__(object)
Add this object to nil.
77 |
# File 'lib/origin/extensions/nil_class.rb', line 77 def __union__(object); object; end |