Class: Arel::Nodes::PostgresArray
- Inherits:
-
Node
- Object
- Node
- Arel::Nodes::PostgresArray
- Includes:
- AliasPredication
- Defined in:
- lib/arel/nodes/postgresql.rb
Instance Attribute Summary collapse
-
#values ⇒ Object
Returns the value of attribute values.
Instance Method Summary collapse
-
#initialize(values) ⇒ PostgresArray
constructor
A new instance of PostgresArray.
Constructor Details
#initialize(values) ⇒ PostgresArray
Returns a new instance of PostgresArray.
9 10 11 |
# File 'lib/arel/nodes/postgresql.rb', line 9 def initialize(values) self.values = values end |
Instance Attribute Details
#values ⇒ Object
Returns the value of attribute values.
7 8 9 |
# File 'lib/arel/nodes/postgresql.rb', line 7 def values @values end |