Search OCaml packages
max) { row = max } }" @keyup.up="if (row !== null) { row -=1; if (row < 0) { row = null } }" @keyup.right="if (col < 1) col++" @keyup.left="if (col >= 1) col--" :aria-activedescendant="row !== null ? 'package-autocomplete-'+row+'-'+col : null" hx-get="/packages/autocomplete" hx-params="q" hx-trigger="keyup changed, search" hx-target="#header-search-results" hx-indicator="#header-search-indicator" autocomplete="off" >
Standard Library API
Learn
Tools
Packages
Community
News
Play
Search OCaml packages
Learn
Tools
Packages
Community
News
Play
Standard Library API
Get started
package
hashcons
latest (1.4.0)
1.4.0
1.3
1.2
1.0.1
search
Overview
Docs
You can search for identifiers within the package.
in-package search v0.2.0
package hashcons
hashcons
CHANGES
README
Library
hashcons
Hashcons
HashedType
S
Make
Hmap
Hset
Sources
hashcons
hashcons.ml
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Package index
hashcons
CHANGES
1.4.0
fixed performance bugs in weak hash tables implementation, by back porting some old fixes from OCaml's
Weak
module (reported by Edwin Török)
improved equality functions in Hset and Hmap (contributed by Dorian Lesbre)
a lot of missing functions in Hset and Hmap wrt OCaml's Set and Map, with the notable exception of
to_seq_rev
(contributed by Dorian Lesbre)
1.3
modules Hset and Hmap moved into module Hashcons, to avoid the clash with a module Hmap from another project (patch from Qi LI)
1.2
fixed bug in Hset (reported by Jan Midtgaard)
1.1
do not assume anymore that the hash function returns a nonnegative value
1.0, 09/09/2013
code moved to github