helium-1.8: The Helium Compiler.

Safe HaskellNone

Helium.Utils.Utils

Description

Some Prelude-like functions

Synopsis

Documentation

hole :: StringSource

Concrete representation of holes

fst3 :: (a, b, c) -> aSource

snd3 :: (a, b, c) -> bSource

thd3 :: (a, b, c) -> cSource

fst4 :: (a, b, c, d) -> aSource

snd4 :: (a, b, c, d) -> bSource

thd4 :: (a, b, c, d) -> cSource

fth4 :: (a, b, c, d) -> dSource

groupAll :: Ord a => [a] -> [[a]]Source

groupAllBy :: Ord a => (a -> a -> Bool) -> [a] -> [[a]]Source

indexOf :: Eq a => a -> [a] -> Maybe IntSource

lastIndexOf :: Eq a => a -> [a] -> Maybe IntSource