class Frozen::String
Implicitly frozen String
.
@note All calls are String
compatible. @see www.ruby-doc.org/core/classes/String.html
Public Class Methods
new(*args, &block)
click to toggle source
Calls superclass method
# File lib/frozen-objects/string.rb, line 17 def initialize(*args, &block) super(*args, &block) self.freeze end