Class: Antlr4::Runtime::ATNConfigSet::AbstractConfigHashSet

Inherits:
Antlr4::Runtime::Array2DHashSet show all
Defined in:
lib/antlr4/runtime/atn_config_set.rb

Direct Known Subclasses

ConfigHashSet

Constant Summary

Constants inherited from Antlr4::Runtime::Array2DHashSet

Antlr4::Runtime::Array2DHashSet::INITIAL_BUCKET_CAPACITY, Antlr4::Runtime::Array2DHashSet::INITIAL_CAPACITY, Antlr4::Runtime::Array2DHashSet::LOAD_FACTOR

Instance Attribute Summary

Attributes inherited from Antlr4::Runtime::Array2DHashSet

#buckets

Instance Method Summary collapse

Methods inherited from Antlr4::Runtime::Array2DHashSet

#==, #add, #add_all, #clear, #contains, #contains_all, #contains_fast, #create_bucket, #create_buckets, #empty?, #expand, #get, #get_bucket, #get_or_add, #get_or_add_impl, #hash, #iterator, #remove, #remove_all, #remove_fast, #retain_all, #size, #to_a, #to_s, #to_table_string

Constructor Details

#initialize(comparator) ⇒ AbstractConfigHashSet

Returns a new instance of AbstractConfigHashSet.



105
106
107
# File 'lib/antlr4/runtime/atn_config_set.rb', line 105

def initialize(comparator)
  super(comparator, 128, 8)
end