package base

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

Non-short circuiting and branch-free boolean operators.

The default versions of these infix operators are short circuiting, which requires branching instructions to implement. The operators below are instead branch-free, and therefore not short-circuiting.

val (&&) : t -> t -> t
val (||) : t -> t -> t