fe v0.1.5 FE View Source

Basic functional programming idioms.

Link to this section Summary

Functions

Create a unary function that always returns the same value, regardless of what it was called with

Always return the argument unchanged

Link to this section Functions

Link to this function const(a) View Source
const(a) :: (any() -> a) when a: var

Create a unary function that always returns the same value, regardless of what it was called with.

Link to this function id(a) View Source
id(a) :: a when a: var

Always return the argument unchanged.