TicTacToe - 0.1.0

Stdlib.Function

Definitions

: {A : Type}{B : Type}{C : Type}(BC)(AB)ACSource#

Function composition.

const : {A : Type}{B : Type}ABASource#

Always returns the first argument.

id : {A : Type}AASource#

The identity function.

flip : {A : Type}{B : Type}{C : Type}(ABC)BACSource#

Swaps the order of the arguments of the given function.

$ : {A : Type}{B : Type}(AB)ABSource#

Application operator with right associativity. Usually used as a syntactical facility.

iterate : {A : Type} -> Nat -> (A -> A) -> A -> ASource#

Applies a function n times.

on : {A : Type}{B : Type}{C : Type}(BBC)(AB)AACSource#

builtin seq >>> : {A B : Type}ABBSource#