class Rasti::DB::NQL::Nodes::ArrayContent

Public Instance Methods

values() click to toggle source
# File lib/rasti/db/nql/nodes/array_content.rb, line 7
def values
  [left.value] + right_value
end

Private Instance Methods

right_value() click to toggle source
# File lib/rasti/db/nql/nodes/array_content.rb, line 13
def right_value
  right.is_a?(self.class) ? right.values : [right.value]
end