package miou

  1. Overview
  2. Docs
Composable concurrency primitives for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

miou-0.5.3.tbz
sha256=eb6eb7830711d9eb8da9bf19492a4f996ce9f047b316505a1f3675aef1e605f2
sha512=37b2bc9439363371bbc35ba625a0737024f8da4285467cb9bf6243bbe48b090606d1deba86231b7f43dbef6ccda3d728d592285710a2467e2a6429b38fecf2dc

doc/miou.bitv/Miou_bitv/index.html

Module Miou_bitvSource

This module implements bit vectors, as an abstract datatype t. Since bit vectors are particular cases of arrays, this module provides the same operations as module Array. It also provides bitwise operations and conversions to/from integer types.

In the following, false stands for bit 0 and true for bit 1.

Sourcetype t

The type of bit vectors

Sourceval create : int -> bool -> t

create n b creates a new bit vector of length n, initialized with b.

Sourceval length : t -> int

length returns the length (number of elements) of the given vector.

Sourceval next : t -> int option

next v returns the next unset nth bit of v.

Sourceval max : t -> int
Sourceval get : t -> int -> bool

get v n returns the nth bit of v.

Sourceval set : t -> int -> bool -> unit

set v n b sets the nth bit of v to the value b.

Sourceval iter : (int -> unit) -> t -> unit

iter fn v applies function fn in turn to all indexes of the elements of v which are set (i.e. true); indexes are visited from least significant to most significant.

Sourceval equal : t -> t -> bool

Returns true if two bit vectors are of the same length and with the same bits.