name: BoundedChan category: Concurrency version: 1.0.0.1 license: BSD3 license-file: LICENSE author: Adam Wick maintainer: Adam Wick stability: stable build-type: Simple cabal-version: >= 1.6 tested-with: GHC == 6.10 synopsis: Implementation of bounded channels. description: This library introduces BoundedChan. BoundedChans differ from Chans in that they are guaranteed to contain no more than a certain number of elements. library build-depends: base >= 3, array exposed-modules: Control.Concurrent.BoundedChan ghc-options: -O2 -Wall -funbox-strict-fields -fno-cse if impl(ghc >= 6.8) ghc-options: -fwarn-tabs source-repository head type: git location: git://code.haskell.org/BoundedChan.git