Safe Haskell | None |
---|---|
Language | Haskell2010 |
- data Repository rt p wRecordedstate wUnrecordedstate wTentativestate = Repo !String !RepoFormat !Pristine Cache
- data Pristine
- extractCache :: Repository rt p wR wU wT -> Cache
- modifyCache :: forall rt p wR wU wT. RepoPatch p => Repository rt p wR wU wT -> (Cache -> Cache) -> Repository rt p wR wU wT
Documentation
data Repository rt p wRecordedstate wUnrecordedstate wTentativestate Source #
A Repository
is a token representing the state of a repository on disk.
It is parameterized by the patch type in the repository, and witnesses for
the recorded state of the repository (i.e. what darcs get would retrieve),
the unrecorded state (what's in the working directory now),
and the tentative state, which represents work in progress that will
eventually become the new recorded state unless something goes wrong.
Show (Repository rt p wRecordedstate wUnrecordedstate wTentativestate) Source # | |
extractCache :: Repository rt p wR wU wT -> Cache Source #
modifyCache :: forall rt p wR wU wT. RepoPatch p => Repository rt p wR wU wT -> (Cache -> Cache) -> Repository rt p wR wU wT Source #
modifyCache
repository function
modifies the cache of
repository
with function
, remove duplicates and sort the results with compareByLocality
.