|
|
|
| Description |
| Mostly internal utilities for use by the rest of the library. Subject to
removal without further notice.
|
|
| Synopsis |
|
|
|
| Documentation |
|
|
| Pointer to a filesystem, possibly with start/end offsets. Supposed to be
fed to (uncurry mmapFileByteString) or similar.
|
|
|
| Read in a FileSegment into a Lazy ByteString. Implemented using mmap.
|
|
|
| Run an IO action with path as a working directory. Does neccessary
bracketing.
|
|
|
|
|
|
|
|
|
|
|
| Find a monadic fixed point of f that is the least above i. (Will
happily diverge if there is none.)
|
|
| fixFrom :: Eq a => (a -> a) -> a -> a | Source |
|
| Find a fixed point of f that is the least above i. (Will happily
diverge if there is none.)
|
|
| reachable :: forall monad key value. (Functor monad, Monad monad, Ord key, Eq value) => (value -> monad [key]) -> (key -> monad (Maybe (key, value))) -> Set key -> monad (Map key value) | Source |
|
| For a refs function, a map (key -> value) and a rootSet, find a
submap of map such that all items in map are reachable, through refs
from rootSet.
|
|
| Produced by Haddock version 2.6.0 |