package radis

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

The Radix tree.

module type KEY = sig ... end
type 'a sequence = ('a -> unit) -> unit

A concrete iterable structure.

module type S = sig ... end

A Radix tree is a optimized container to bind a Key.t with a value.

module Make (Key : KEY) : Map.S with type key = Key.t