add | Addition. |
all | Returns TRUE iff all elements match the predicate, otherwise... |
and | Combine all logical values of a list with a conjuntion.... |
any | Returns TRUE if any element matches the predicate, otherwise... |
Applicative | Applicative class. This also defines the interface for... |
comp | Prefix version of \ comp(f, g) \itemffunction \itemgfunction... |
concat | Concatenate a list of lists to a list. |
concatMap | concatMap is 'concat' %.% 'map'. Here the list can be used as... |
cons | Returns TRUE iff the parameter is an empty list |
drop | Drop a number of elements from a list. |
either | Function either. See also 'Either$either' |
Either | Either monad implementation. |
eq | Equality. |
filter | Filters a list by predicate function. |
flip | Flip the parameters of a function |
foldl | Fold over a list applying a function to each element and... |
fst | Select first component. |
Functor | Functor class. |
geq | Greater or equal. |
grapes-elem-grapes | Is element of list. |
grapes-.-grapes | Standard math. function composition: '(f %.% g)(x) ==... |
grapes-notElem-grapes | Is not element of list. |
grapes-seq-grapes | Sequencing of functions |
gt | Greater than. |
head | Returns the first element of a list. Unsafe! I.e. expects a... |
id | Identity function |
intercalate | 'intercalate' @xs xss@ is equivalent to @('concat'... |
intersperse | O(n). The intersperse function takes an element and a list... |
Just | Constructor class for type 'Maybe'. |
last | Returns the last element of a list. Unsafe! I.e. expects a... |
Left | Constructor class for type 'Either'. |
leq | Less or equal. |
lt | Less than. |
map | Map with corrected parameter order. You should only use pure... |
mapM | This is @map@, but with indication that IO is happening. I.e.... |
mapM_ | This is @map@, but with indication that IO is happening. I.e.... |
maybe | Function maybe. See also 'Maybe$maybe' |
Maybe | Maybe monad implementation. |
Monad | Monad class. |
neq | Not-equal function. |
not | Inverse for Boolean. |
Nothing | Constructor class for type 'Maybe'. |
null | Returns TRUE iff the parameter is an empty list |
or | Combine all logical values of a list with a disjuntion.... |
pAdd | Partially applied addition. |
pApply | Apply partial function. |
pEq | Partially applied equality, returns a function, where the... |
pGeq | Partially applied greater or equal, returns a function with... |
pGt | Partially applied greater, returns a function with > x, where... |
pIdentical | Partially applied @identical@, returns a function, where the... |
pLeq | Partially applied less or equal, returns a function with <=... |
pLt | Partially applied less, returns a function with < x, where x... |
pNeq | Partially applied not-equal function. |
pNIdentical | Partially applied @not %.% identical@, returns a function,... |
pSubtract | Creates a function which subtracts the given value. |
replicate | Create a list of @nr@ elements of @x@. |
reverse | Reverse function. Uses 'base::rev' under the hood. |
Right | Constructor class for type 'Either'. |
snd | Select second component. |
splitAt | Split a list into two separate lists wrapped in a tuple. The... |
subtract | Subtraction. |
sum | Sum of a list of numbers. O(n) |
tail | Returns the tail of the list (all but first element). |
take | Take a number of elements from a list. |
uncurry | Function to apply a tuple to a function. Makes a function... |
unlines | Collapse a list of string |
unzip | Unzip a list of tuples into a tuple of lists. |
void | Ignore the output of a function. Wrapper for @invisible@ |
zip | Zip two list into a list of tuples. |
zipWith | Zip two lists together by a specific function. |
zipWith3 | Zip two lists together by a specific function. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.