class Antlr4::Runtime::FlexibleHashMap::Entry

Attributes

key[RW]
value[RW]

Public Class Methods

new(key, value) click to toggle source
# File lib/antlr4/runtime/flexible_hash_map.rb, line 11
def initialize(key, value)
  @key = key
  @value = value
end

Public Instance Methods

to_s() click to toggle source
# File lib/antlr4/runtime/flexible_hash_map.rb, line 16
def to_s
  @key.to_s << ':' << @value.to_s
end