Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Hashcons
Sourcecreate n
creates an empty table of initial size n
. The table will grow as needed.
hashcons t n
hash-cons the value n
using table t
i.e. returns any existing value in t
equal to n
, if any; otherwise, allocates a new one hash-consed value of node n
and returns it. As a consequence the returned value is physically equal to any equal value already hash-consed using table t
.
iter f t
iterates f
over all elements of t
.
Return statistics on the table. The numbers are, in order: table length, number of entries, sum of bucket lengths, smallest bucket length, median bucket length, biggest bucket length.