Module: Polyfill::V2_3::String

Defined in:
lib/polyfill/v2_3/string.rb

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#+@Object



20
21
22
# File 'lib/polyfill/v2_3/string.rb', line 20

def +@
  frozen? ? dup : self
end

#-@Object



24
25
26
# File 'lib/polyfill/v2_3/string.rb', line 24

def -@
  frozen? ? self : dup.freeze
end