Class: Schema::Controls::DataStructure::ReadAndWrite::InAndOutAliases::Example
- Inherits:
-
Object
- Object
- Schema::Controls::DataStructure::ReadAndWrite::InAndOutAliases::Example
show all
- Includes:
- DataStructure
- Defined in:
- lib/schema/controls/data_structure.rb
Instance Method Summary
collapse
#clone, #deep_copy, included
Instance Method Details
104
105
106
|
# File 'lib/schema/controls/data_structure.rb', line 104
def transform_in(data)
data[:some_attribute] = 'some read value'
end
|
108
109
110
|
# File 'lib/schema/controls/data_structure.rb', line 108
def transform_out(data)
data[:some_attribute] = 'some written value'
end
|