Method: TrueClass#dup!
- Defined in:
- lib/core/facets/object/dup.rb
#dup! ⇒ Object
Since TrueClass is immutable it cannot be duplicated. For this reason #try_dup returns self.
true.dup! #=> true
54 |
# File 'lib/core/facets/object/dup.rb', line 54 def dup! ; self ; end |