identity
The identity map.
Syntax
-
identity(X)
-
X
is any object
-
Description
For any object X
, identity(X)
returns X
.
This is the function that implements the unary plus operator +
.
Examples
X ≔ RandomVector(100);
sort(X) = SortBy(X, identity)
true