= (HashTable)

Checks if iterators point to the same entry.

Arguments

iterator0
and
iterator1
are HashTableIterators to compare.

Return values

condition
is TRUE if the iterators point ot the same entry, FALSE otherwise.

Complexity

Constant

Example

"sl/hashTable" useFile a: HashTable; a.empty print LF print 34 "element" a.insert 35 "element" a.insert 38 "element" a.insert it: a.firstIter; [ it a.endIter = ~ ] [ it.get print "," print it.next !it ] while
Output:
TRUE { key: 34; value: "element"; },{ key: 35; value: "element"; },{ key: 38; value: "element"; },