packages feed

dhall-1.14.0: Prelude/List/head

{-
Retrieve the first element of the list

Examples:

```
./head Natural [ 0, 1, 2 ] = [ 0 ] : Optional Natural

./head Natural ([] : List Natural) = [] : Optional Natural
```
-}
let head : ∀(a : Type) → List a → Optional a = List/head in head