Module: Snow::BaseMarshalSupport
Overview
:nodoc: all
Defined Under Namespace
Modules: MarshalLoadSupport
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.included(base) ⇒ Object
19 20 21 |
# File 'lib/snow-math/marshal.rb', line 19 def self.included(base) base.extend(MarshalLoadSupport) end |
Instance Method Details
#_dump(level) ⇒ Object
8 9 10 11 |
# File 'lib/snow-math/marshal.rb', line 8 def _dump(level) # level ignored because it's not applicable Marshal.dump(self.to_a) end |