class Cdb::HashTableEntry
Value class for an entry in a hash table.
Attributes
hash[R]
key[R]
offset[R]
Public Class Methods
new(hash, key, offset)
click to toggle source
# File lib/cdb/writer.rb, line 135 def initialize(hash, key, offset) @hash = hash @key = key @offset = offset end