Class: Ronin::SQL::UnaryExpr
- Inherits:
-
Struct
- Object
- Struct
- Ronin::SQL::UnaryExpr
- Includes:
- Emittable
- Defined in:
- lib/ronin/sql/unary_expr.rb
Overview
Represents a unary expression in SQL.
Instance Attribute Summary collapse
-
#operand ⇒ Object
Returns the value of attribute operand.
-
#operator ⇒ Object
Returns the value of attribute operator.
Method Summary
Methods included from Emittable
#emitter, #inspect, #to_s, #to_sql
Instance Attribute Details
#operand ⇒ Object
Returns the value of attribute operand
32 33 34 |
# File 'lib/ronin/sql/unary_expr.rb', line 32 def operand @operand end |
#operator ⇒ Object
Returns the value of attribute operator
32 33 34 |
# File 'lib/ronin/sql/unary_expr.rb', line 32 def operator @operator end |