ivar-simple-0.3.2: ivar-simple.cabal
name: ivar-simple
version: 0.3.2
category: Concurrency
stability: experimental
copyright: (c) 2008-2015 Bertram Felgenhauer
maintainer: Bertram Felgenhauer <int-e@gmx.de>
license: MIT
license-file: LICENSE
synopsis: Write once concurrency primitives.
description:
@IVar@s are write-once (immutable) variables.
.
They can be read, an operation that will block until a value was written
to the variable. They can be written to exactly once.
cabal-version: >= 1.6
build-type: Simple
extra-source-files:
README.md
Changelog
source-repository head
type: git
location: https://github.com/int-e/ivar-simple
library
hs-source-dirs:
src
exposed-modules:
Data.IVar.Simple
Data.IVar.Simple.IChan
Data.IVar.Simple.MIChan
build-depends:
base >= 4 && < 5
extensions:
DeriveDataTypeable