Sha256: 2628f6e508011ef977ee9cd39b3d625c97c5043a2d4fe7863411963ec9aba6cd
Contents?: true
Size: 773 Bytes
Versions: 13
Compression:
Stored size: 773 Bytes
Contents
module Expressir module Model module References # Specified in ISO 10303-11:2004 # - section 12.3.1 Binary indexing # - section 12.5.1 String indexing # - section 12.6.1 Aggregate indexing class IndexReference < Reference model_attr_accessor :ref, "Reference" model_attr_accessor :index1, "Expression" model_attr_accessor :index2, "Expression" # @param [Hash] options # @option options [Reference] :ref # @option options [Expression] :index1 # @option options [Expression] :index2 def initialize(options = {}) @ref = options[:ref] @index1 = options[:index1] @index2 = options[:index2] super end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems