Module TaglessFinal.BooleanOperator

This module provides a type that represents Python boolean operators.

type 'a t = private {
and_ : 'a;(*

Represents Python operator and.

*)
or_ : 'a;(*

Represents Python operator or.

*)
}
val make : and_:'a -> or_:'a -> unit -> 'a t

Constructor of t.