first.RdRetrieve the first element from list
first(lst)
| lst | the list to which the first element will be returned |
|---|
the first element
Retrieve and return the first element from a list. This lispy style function uses indexing under the hood but exposes the process as a function call.
Jay Morgan