Class: ROM::Header::Embedded
- Defined in:
- core/lib/rom/header/attribute.rb
Overview
Embedded attribute is a special attribute type that has a header
This is the base of complex attributes like Hash or Group
Instance Attribute Summary collapse
-
#header ⇒ Object
readonly
private
return [Header] header of an attribute.
Instance Method Summary collapse
-
#initialize ⇒ Embedded
constructor
private
A new instance of Embedded.
- #pop_keys ⇒ Object
-
#tuple_keys ⇒ Array<Symbol>
private
Return tuple keys from the header.
Constructor Details
#initialize ⇒ Embedded
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Embedded.
116 117 118 119 |
# File 'core/lib/rom/header/attribute.rb', line 116 def initialize(*) super @header = .fetch(:header) end |
Instance Attribute Details
#header ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
return [Header] header of an attribute
113 114 115 |
# File 'core/lib/rom/header/attribute.rb', line 113 def header @header end |
Instance Method Details
#pop_keys ⇒ Object
130 131 132 |
# File 'core/lib/rom/header/attribute.rb', line 130 def pop_keys header.pop_keys end |
#tuple_keys ⇒ Array<Symbol>
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return tuple keys from the header
126 127 128 |
# File 'core/lib/rom/header/attribute.rb', line 126 def tuple_keys header.tuple_keys end |