package bap-primus-round-robin-scheduler

  1. Overview
  2. Docs
Evaluates all machines in the BFS order

Install

Dune Dependency

Authors

Maintainers

Sources

v2.3.0.tar.gz
sha256=a6e80853aaaa26b7ca564d9878891d7146ec1c83852541387c1bba1ad036b8ea
md5=13f2cb1e3b9d90348852252fb0f2d09f

doc/bap-plugin-primus_round_robin/Primus_round_robin_main/RR/argument-1-Machine/Lift/index.html

Module Machine.Lift

Lifts functions into the monad.

A function that operates on values can be mapped to a function that operates on computations. We provide several liftes for common arities.

val nullary : 'a -> 'a t

nullary x lifts x (a synonym to return)

val unary : ('a -> 'b) -> 'a t -> 'b t

unary f lifts f

val binary : ('a -> 'b -> 'c) -> 'a t -> 'b t -> 'c t

binary f lifts f

val ternary : ('a -> 'b -> 'c -> 'd) -> 'a t -> 'b t -> 'c t -> 'd t

ternary f lifts f

val quaternary : ('a -> 'b -> 'c -> 'd -> 'e) -> 'a t -> 'b t -> 'c t -> 'd t -> 'e t

quaternary f lifts f

val quinary : ('a -> 'b -> 'c -> 'd -> 'e -> 'f) -> 'a t -> 'b t -> 'c t -> 'd t -> 'e t -> 'f t

quinary f lifts f

OCaml

Innovation. Community. Security.