| CARVIEW |
capability: Extensional capabilities and deriving combinators
Standard capability type classes for extensional effects and combinators to derive capability instances with little boilerplate.
[Skip to Readme]
Modules
[Index] [Quick Jump]
- Capability
- Capability.Accessors
- Capability.Constraints
- Capability.Derive
- Capability.Error
- Capability.Reader
- Internal
- Capability.Reader.Internal.Class
- Capability.Reader.Internal.Strategies
- Internal
- Capability.Reflection
- Capability.Sink
- Internal
- Capability.Sink.Internal.Class
- Capability.Sink.Internal.Strategies
- Internal
- Capability.Source
- Internal
- Capability.Source.Internal.Class
- Capability.Source.Internal.Strategies
- Internal
- Capability.State
- Internal
- Capability.State.Internal.Class
- Capability.State.Internal.Strategies
- Capability.State.Internal.Strategies.Common
- Internal
- Capability.Stream
- Capability.TypeOf
- Capability.Writer
Flags
Manual Flags
| Name | Description | Default |
|---|---|---|
| dev | Turn on development settings. | Disabled |
Automatic Flags
| Name | Description | Default |
|---|---|---|
| hspec-jenkins | You can enable the use of the `hspec-jenkins` package using `-fhspec-jenkins`. This package allows JUnit formatted test reporting for CI. | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- capability-0.5.0.1.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
| Versions [RSS] | 0.1.0.0, 0.2.0.0, 0.3.0.0, 0.4.0.0, 0.5.0.0, 0.5.0.1 |
|---|---|
| Change log | ChangeLog.md |
| Dependencies | base (>=4.14 && <5.0), constraints (>=0.1), dlist (>=0.8), exceptions (>=0.6), generic-lens (>=2.0), lens (>=4.16), monad-control (>=1.0), mtl (>=2.0), mutable-containers (>=0.3), primitive (>=0.6), reflection (>=2.1), safe-exceptions (>=0.1), streaming (>=0.2), transformers (>=0.5.5), unliftio (>=0.2), unliftio-core (>=0.1) [details] |
| Tested with | ghc ==8.10.4, ghc ==9.2.2 |
| License | BSD-3-Clause |
| Copyright | 2018 EURL Tweag |
| Author | |
| Maintainer | andreas.herrmann@tweag.io |
| Uploaded | by aherrmann at 2022-03-21T12:50:53Z |
| Revised | Revision 6 made by aherrmann at 2025-10-24T07:16:34Z |
| Category | Control |
| Home page | https://github.com/tweag/capability |
| Source repo | head: git clone https://github.com/tweag/capability |
| Distributions | LTSHaskell:0.5.0.1, NixOS:0.5.0.1, Stackage:0.5.0.1 |
| Reverse Dependencies | 2 direct, 0 indirect [details] |
| Downloads | 3612 total (36 in the last 30 days) |
| Rating | 2.0 (votes: 1) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs uploaded by user Build status unknown [no reports yet] |
Readme for capability-0.5.0.1
[back to package description]capability: effects, extensionally
A capability is a type class that says explicitly which effects
a function is allowed to use. The mtl works like this too.
But unlike the mtl, this library decouples effects from their
implementation. What this means in practice:
- You can implement large sets of capabilities using the
efficient
ReaderTpattern, rather than a slow monad transformer stack. - Capabilities compose well: e.g. it's easy to have multiple reader effects.
- You can use a writer effect without implementing it as a writer monad (which is known to leak space).
- You can reason about effects. For instance, if a monad provides a
reader effect at type
IORef A, it also provides a state effect at typeA
For more on these, you may want to read the announcement blog post.
This library is an alternative to the mtl. It defines a set
of standard, reusable capability type classes, such as the HasReader
and HasState type classes, which provide the standard reader and
state effects, respectively.
Where mtl instances only need to be defined once and for all,
capability-style programming has traditionally suffered from verbose
boilerplate: rote instance definitions for every new implementation of
the capability. Fortunately GHC 8.6 introduced
the DerivingVia language extension. We use it to
remove the boilerplate, turning capability-style programming into an
appealing alternative to mtl-style programming. The
generic-lens library is used to access fields of
structure in the style of the ReaderT pattern.
An additional benefit of separating capabilities from their
implementation is that they avoid a pitfall of the mtl. In the
mtl, two different MonadState are disambiguated by their types,
which means that it is difficult to have two MonadState Int in the
same monad stack. Capability type classes are parameterized by a name
(also known as a tag). This makes it possible to combine multiple
versions of the same capability. For example,
twoStates :: (HasState "a" Int m, HasState "b" Int m) => m ()
Here, the tags "a" and "b" refer to different state spaces.
In summary, compared to the mtl:
- capabilities represent what effects a function can use, rather than how the monad is constructed;
- capabilities are named, rather than disambiguated by type;
- capabilites are discharged with deriving-via combinators
and
generic-lens, rather than with instance resolution.
An example usage looks like this:
testParity :: (HasReader "foo" Int m, HasState "bar" Bool m) => m ()
testParity = do
num <- ask @"foo"
put @"bar" (even num)
data Ctx = Ctx { foo :: Int, bar :: IORef Bool }
deriving Generic
newtype M a = M { runM :: Ctx -> IO a }
deriving (Functor, Applicative, Monad) via ReaderT Ctx IO
-- Use DerivingVia to derive a HasReader instance.
deriving (HasReader "foo" Int, HasSource "foo" Int) via
-- Pick the field foo from the Ctx record in the ReaderT environment.
Field "foo" "ctx" (MonadReader (ReaderT Ctx IO))
-- Use DerivingVia to derive a HasState instance.
deriving (HasState "bar" Bool, HasSource "bar" Bool, HasSink "bar" Bool) via
-- Convert a reader of IORef to a state capability.
ReaderIORef (Field "bar" "ctx" (MonadReader (ReaderT Ctx IO)))
example :: IO ()
example = do
rEven <- newIORef False
runM testParity (Ctx 2 rEven)
readIORef rEven >>= print
runM testParity (Ctx 3 rEven)
readIORef rEven >>= print
For more complex examples, see the Examples section and
the examples subtree.
API documentation can be found on Hackage.
Examples
An example is provided in WordCount.
Execute the following commands to try it out:
$ nix-shell --pure --run "cabal configure --enable-tests"
$ nix-shell --pure --run "cabal repl examples"
ghci> :set -XOverloadedStrings
ghci> wordAndLetterCount "ab ba"
Letters
'a': 2
'b': 2
Words
"ab": 1
"ba": 1
To execute all examples and see if they produce the expected results run
$ nix-shell --pure --run "cabal test examples --show-details=streaming --test-option=--color"
Build instructions
Nix Shell
A development environment with all dependencies in scope is defined in
shell.nix.
Build
The build instructions assume that you have Nix installed. Execute the following command to build the library.
$ nix-shell --pure --run "cabal configure"
$ nix-shell --pure --run "cabal build"