cons package:base-compat

Synonym for <|.
const x y always evaluates to x, ignoring its second argument.
>>> const 42 "hello"
42
>>> map (const 42) [0..3]
[42,42,42,42]
The Const functor.
uncons produces the first element of the stream, and a stream of the remaining elements, if any.