Sha256: 399f363057ddf725bb1a23f469ba9d175952adf5da41249e6c061f616ddf616e
Contents?: true
Size: 399 Bytes
Versions: 63
Compression:
Stored size: 399 Bytes
Contents
module Expressir module Model module Expressions class UnaryExpression < ModelElement MINUS = :MINUS NOT = :NOT PLUS = :PLUS attr_accessor :operator attr_accessor :operand def initialize(options = {}) @operator = options[:operator] @operand = options[:operand] super end end end end end
Version data entries
63 entries across 63 versions & 1 rubygems