Sha256: eb9523744b9a38c0132f73767ade860222d21b9568bf38bf58b42e57cd7849d9
Contents?: true
Size: 383 Bytes
Versions: 63
Compression:
Stored size: 383 Bytes
Contents
module Expressir module Model module Expressions class IndexReference < ModelElement attr_accessor :ref attr_accessor :index1 attr_accessor :index2 def initialize(options = {}) @ref = options[:ref] @index1 = options[:index1] @index2 = options[:index2] super end end end end end
Version data entries
63 entries across 63 versions & 1 rubygems