package hardcaml_circuits

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

Parameters

module Arg : Arg

Signature

type t
type op = {
  1. slot : Hardcaml.Signal.t;
    (*

    Slot to perform operation at

    *)
  2. op : Hardcaml.Signal.t;
    (*

    Operation type (insert, remove or nothing)

    *)
  3. insert_data : Hardcaml.Signal.t Arg.Interface.t;
    (*

    Data to insert into the vec

    *)
  4. delete_data : Hardcaml.Signal.t Arg.Interface.t;
    (*

    Data written to the emptied slot in the vec

    *)
}

Operation performed on the vec circuit.

Create the vec with the given size.

next defines a function which can set the register when not performing an insert or delete operation.

Get the value at the given index.

Create a read multiplexer

val vec_size : t -> Base.int

Size of vec