Methods
#
E
H
N
Attributes
[R] value
Class Public methods
new(value)
# File tool/transcode-tblgen.rb, line 79
def initialize(value)
  @value = value
end
Instance Public methods
==(other)
Alias for: eql?
eql?(other)
Also aliased as: ==
# File tool/transcode-tblgen.rb, line 88
def eql?(other)
  self.class == other.class &&
  @value == other.value
end
hash()
# File tool/transcode-tblgen.rb, line 84
def hash
  @value.hash
end