class Frozen::Array

Implicitly frozen Array.

@note All calls are Array compatible. @see www.ruby-doc.org/core/classes/Array.html

Public Class Methods

new(*args, &block) click to toggle source
Calls superclass method
# File lib/frozen-objects/array.rb, line 17
def initialize(*args, &block)
    super(*args, &block)
    self.freeze
end