Lines Matching refs:hashtable
15 type hashtable struct { struct
39 func (ht *hashtable) init(size int) { argument
55 func (ht *hashtable) freeze() { argument
72 func (ht *hashtable) insert(k, v Value) error { argument
155 func (ht *hashtable) grow() { argument
175 func (ht *hashtable) lookup(k Value) (v Value, found bool, err error) { argument
204 func (ht *hashtable) items() []Tuple { argument
217 func (ht *hashtable) first() (Value, bool) { argument
224 func (ht *hashtable) keys() []Value { argument
232 func (ht *hashtable) delete(k Value) (v Value, found bool, err error) { argument
280 func (ht *hashtable) clear() error { argument
299 func (ht *hashtable) dump() { argument
325 func (ht *hashtable) iterate() *keyIterator { argument
333 ht *hashtable