|
|
|
| Description |
| Provide standard imports and utilities which are useful everywhere, or
needed low in the module hierarchy. This is the bottom of the dependency graph.
|
|
| Synopsis |
|
|
|
| Documentation |
|
| module Char |
|
| module Control.Monad |
|
| module Data.List |
|
| module Data.Maybe |
|
| module Data.Ord |
|
| module Data.Tree |
|
| module Data.Time.Clock |
|
| module Data.Time.Calendar |
|
| module Data.Time.LocalTime |
|
| module Debug.Trace |
|
|
|
|
|
|
| Join multi-line strings as side-by-side rectangular strings of the same height, top-padded.
|
|
|
| Join multi-line strings as side-by-side rectangular strings of the same height, bottom-padded.
|
|
|
| Convert a multi-line string to a rectangular string top-padded to the specified height.
|
|
|
| Convert a multi-line string to a rectangular string bottom-padded to the specified height.
|
|
|
| Convert a multi-line string to a rectangular string left-padded to the specified width.
|
|
|
| Convert a multi-line string to a rectangular string right-padded to the specified width.
|
|
|
| Clip a multi-line string to the specified width and height from the top left.
|
|
|
| Clip and pad a multi-line string to fill the specified width and height.
|
|
|
|
|
|
| splitAtElement :: Eq a => a -> [a] -> [[a]] | Source |
|
|
|
| List just the leaf nodes of a tree
|
|
|
| get the sub-tree rooted at the first (left-most, depth-first) occurrence
of the specified node value
|
|
|
| get the sub-tree for the specified node value in the first tree in
forest in which it occurs.
|
|
|
| remove all nodes past a certain depth
|
|
|
| apply f to all tree nodes
|
|
|
| remove all subtrees whose nodes do not fulfill predicate
|
|
|
| is predicate true in any node of tree ?
|
|
|
| show a compact ascii representation of a tree
|
|
|
| show a compact ascii representation of a forest
|
|
|
| trace (print on stdout at runtime) a showable expression
(for easily tracing in the middle of a complex expression)
|
|
|
| labelled trace - like strace, with a newline and a label prepended
|
|
|
| trace an expression using a custom show function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| module Text.Printf |
|
| module Text.RegexPR |
|
| module Test.HUnit |
|
| Produced by Haddock version 2.6.0 |