class OnappMarket::API::Query::Operator

Base clasee for mono and multi variable operators

Attributes

leaves[R]

The leaves on which this operator operates. These are either comparators or other operators.

Public Class Methods

new(array) click to toggle source

Create a new Operator

Attributes

  • array - Leaves this operates on

# File lib/onapp_market/api/query/operators.rb, line 15
def initialize(array)
  @leaves = array
end