package core_kernel

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

Unordered container tests are for types with serializations that will contain a certain set of elements (each represented by a single sexp or bin-io string) which may appear in any order, such as hash tables and hash sets.

type t = {
  1. sexps : Base.String.t Base.List.t;
  2. bin_io_header : Base.String.t;
  3. bin_io_elements : Base.String.t Base.List.t;
}