class SQLSearch::Atoms::UnaryScalar

Attributes

operation[R]
value[R]

Public Class Methods

new(options) click to toggle source
# File lib/sql_search_parser.rb, line 90
def initialize options
  @value = options[:value]
  @operation = options[:operation]
end

Public Instance Methods

to_s() click to toggle source
# File lib/sql_search_parser.rb, line 95
def to_s
  "#{operation}#{value}"
end