package dolmen

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

Minimum required to type ae's bitvectors

type t

The type of terms

val mk : string -> t

Create a bitvector litteral from a string representation. The string should only contain characters '0' or '1'.

val concat : t -> t -> t

Bitvector concatenation.

val extract : int -> int -> t -> t

Bitvector extraction, using in that order, the start and then end the position of the bitvector to extract.