Sha256: 9061ffb4e1c5327ba3e407465966d3dea1c88727b34c89c4840204f6e592b9b0

Contents?: true

Size: 296 Bytes

Versions: 7

Compression:

Stored size: 296 Bytes

Contents

# frozen_string_literal: true

module Grumlin
  module Expressions
    module Operator
      SUPPORTED_STEPS = %i[addAll and assign div max min minus mult or sum].freeze

      class << self
        extend Expression

        define_steps(SUPPORTED_STEPS, "Operator")
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
grumlin-0.15.3 lib/grumlin/expressions/operator.rb
grumlin-0.15.2 lib/grumlin/expressions/operator.rb
grumlin-0.15.1 lib/grumlin/expressions/operator.rb
grumlin-0.15.0 lib/grumlin/expressions/operator.rb
grumlin-0.14.5 lib/grumlin/expressions/operator.rb
grumlin-0.14.4 lib/grumlin/expressions/operator.rb
grumlin-0.14.3 lib/grumlin/expressions/operator.rb