/Prelude-v21.1.0/List/last.dhall
Copy path to clipboardRetrieve the last element of the list
Examples
last Natural [ 0, 1, 2 ] ≡ Some 2
last Natural ([] : List Natural) ≡ None Natural
Retrieve the last element of the list
last Natural [ 0, 1, 2 ] ≡ Some 2
last Natural ([] : List Natural) ≡ None Natural