Fetches the element at a given position.
Returns `Nothing` if the position beyond the list's end.
Totality: total
Visibility: public export- Totality: total
Visibility: export - Totality: total
Visibility: export findAndDeleteBy : (a -> Bool) -> List a -> Maybe (a, List a) Returns first element that matches the predicate and the list without it
Totality: total
Visibility: export Compute the difference of two lists by the given predicate.
Lists are treated as bags.
Totality: total
Visibility: export Remove adjacent duplicates
Totality: total
Visibility: export O(n * log(n)). Sort a list and remove duplicates
Totality: total
Visibility: export- Totality: total
Visibility: export