class Mingle::AtomicTypeReference

Public Instance Methods

external_form() click to toggle source
# File lib/mingle.rb, line 1969
def external_form
    
    res = @name.external_form.dup
    ( res << "~" << @restriction.external_form ) if @restriction

    res
end
hash() click to toggle source
# File lib/mingle.rb, line 1964
def hash
    [ @name, @restriction ].hash
end