package core

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

Produce unit tests for binary searchable containers

module type For_test = sig ... end

To implement the tests, we need two different elt values small < big, to be able to compare those values, and to be able to construct a t containing those values.

module type For_test1 = sig ... end
module type Indexable_and_for_test = sig ... end
module type Indexable1_and_for_test = sig ... end
module type Binary_searchable_and_for_test = sig ... end
module type Binary_searchable1_and_for_test = sig ... end
module type Test_binary_searchable = sig ... end