module FlexStruct::Frozen

Wraps a FlexStruct initializer to freeze the struct instance after creation.

Public Class Methods

new(*) click to toggle source
Calls superclass method
# File lib/flex_struct/frozen.rb, line 4
def initialize(*)
  super
  freeze
end