Header menu logo Nu

CoreOperators Module

The core operators that come with the Nu Game Engine.

Functions and values

Function or value Description

f $ g

Full Usage: f $ g

Parameters:
    f : 'a -> 'b
    g : 'a

Returns: 'b
Modifiers: inline
Type parameters: 'a, 'b

Sequences two functions like Haskell ($). Same as the ($) operator found in Prime, but placed here to expose it directly from Nu.

f : 'a -> 'b
g : 'a
Returns: 'b

a =/= b

Full Usage: a =/= b

Parameters:
    a : obj
    b : obj

Returns: bool
Modifiers: inline

Test for object inequality. Same as the (=/=) operator found in Prime, but placed here to expose it directly from Nu.

a : obj
b : obj
Returns: bool

a === b

Full Usage: a === b

Parameters:
    a : obj
    b : obj

Returns: bool
Modifiers: inline

Test for object equality. Same as the (===) operator found in Prime, but placed here to expose it directly from Nu.

a : obj
b : obj
Returns: bool

Type something to start searching.