Methods

+ΒΆ

+(f:Fun, g:Fun)

Compose functions
Source: stdlib.ngs:1591

Returns

Fun f(g(...))

Example

F reject(something, predicate) {
	something.filter(not + predicate)
}