This class represents a concrete object like a Numeric or String. It stores the actual module in the instance variable @mod.
This accessor points to the actual module
# File lib/rubybreaker/type/type.rb, line 86 def initialize(mod=nil,*args) super(*args) @mod = mod end