Sha256: 9e44e8806ccaac37576a4cf77fd40892fff1092f2b593685202d9f566bd4c36f
Contents?: true
Size: 495 Bytes
Versions: 13
Compression:
Stored size: 495 Bytes
Contents
module Expressir module Model module SupertypeExpressions # Specified in ISO 10303-11:2004 # - section 9.2.5.2 ONEOF class OneofSupertypeExpression < SupertypeExpression model_attr_accessor :operands, "Array<SupertypeExpression>" # @param [Hash] options # @option options [Array<SupertypeExpression>] :operands def initialize(options = {}) @operands = options[:operands] super end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems