class AdLint::Cc1::TypeId

Attributes

value[R]

Public Class Methods

new(val) click to toggle source
# File lib/adlint/cc1/type.rb, line 630
def initialize(val)
  @value = val
end

Public Instance Methods

==(rhs_id) click to toggle source
# File lib/adlint/cc1/type.rb, line 634
def ==(rhs_id)
  @value == rhs_id.value
end
eql?(rhs_id) click to toggle source
# File lib/adlint/cc1/type.rb, line 638
def eql?(rhs_id)
  self == rhs_id
end
hash() click to toggle source
# File lib/adlint/cc1/type.rb, line 642
def hash
  @value.hash
end