package pyre-ast

  1. Overview
  2. Docs

This module provides a type that represents Python boolean operators.

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

    Represents Python operator and.

    *)
  2. or_ : 'a;
    (*

    Represents Python operator or.

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

Constructor of t.