name: bit-array version: 0.1.2 synopsis: A bit array (aka bitset, bitmap, bit vector) API for numeric types description: The library extends the numeric types with an array-like interface over individual set bits. It also provides an API for conversion to and from the binary notation. category: Data Structures, Bit Vectors, Pretty Printer homepage: https://github.com/nikita-volkov/bit-array bug-reports: https://github.com/nikita-volkov/bit-array/issues author: Nikita Volkov maintainer: Nikita Volkov copyright: (c) 2014, Nikita Volkov license: MIT license-file: LICENSE build-type: Custom cabal-version: >=1.10 source-repository head type: git location: git://github.com/nikita-volkov/bit-array.git library hs-source-dirs: library other-modules: BitArray.Prelude BitArray.Parser exposed-modules: BitArray build-depends: -- general: numeric-qq >= 0.1.3 && < 0.2, base >= 4.7 && < 5 default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples default-language: Haskell2010 test-suite doctests type: exitcode-stdio-1.0 hs-source-dirs: executables main-is: Doctests.hs ghc-options: -threaded build-depends: doctest >= 0.9 && < 0.11, directory == 1.2.*, filepath >= 1.3 && < 1.5, base >= 4.5 && < 5 default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples default-language: Haskell2010