Class: Algebrick::Serializers::Abstract
- Inherits:
-
Object
- Object
- Algebrick::Serializers::Abstract
show all
- Includes:
- TypeCheck
- Defined in:
- lib/algebrick/serializers/abstract.rb
Instance Method Summary
(collapse)
Methods included from TypeCheck
#Child!, #Child?, #Match!, #Match?, #Type!, #Type?, error
Instance Method Details
- (Object) dump(object, options = {})
24
25
26
|
# File 'lib/algebrick/serializers/abstract.rb', line 24
def dump(object, options = {})
raise NotImplementedError
end
|
- (Object) load(data, options = {})
20
21
22
|
# File 'lib/algebrick/serializers/abstract.rb', line 20
def load(data, options = {})
raise NotImplementedError
end
|