@hackage unionmount0.2.2.0
Union mount filesystem paths into Haskell datastructures
Categories
License
MIT
Maintainer
srid@srid.ca
Links
- Documentation
- No source repository
- Security
Versions
Installation
Dependencies (17)
- base >=4.13.0 && <4.18
- bytestring
- containers
- directory
- filepath
- mtl Show all…
Dependents (4)
@hackage/ema-extra, @hackage/ob, @hackage/emanote, @hackage/ema
unionmount
Haskell library to "union mount" a bunch of folders onto an in-memory data structure, and keeping the latter in sync as the files change over time. Used in Ema and Emanote.
Usage
Both the mount
and unionMount
functions return a tuple value of type Dynamic, giving direct access to the initial value as well as the updater function that may be run in a separate thread. See how Ema uses it for an illustration.
Examples
See this example illustrating mounting a directory of Markdown files into (effectively) a Map FilePath String
. A more involved example from Emanote demonstrates the "union" aspect of the library.