├── .gitignore ├── .travis.yml ├── LICENSE ├── Setup.hs ├── bench └── Main.hs ├── default.nix ├── liquid.yaml ├── src └── Succinct │ ├── Vector.hs │ └── Vector │ ├── Index.hs │ └── Primitives.hs ├── stack.yaml ├── succinct-vector.cabal └── test └── Main.hs /.gitignore: -------------------------------------------------------------------------------- 1 | .liquid 2 | .stack-work 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /bench/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/bench/Main.hs -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/default.nix -------------------------------------------------------------------------------- /liquid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/liquid.yaml -------------------------------------------------------------------------------- /src/Succinct/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/src/Succinct/Vector.hs -------------------------------------------------------------------------------- /src/Succinct/Vector/Index.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/src/Succinct/Vector/Index.hs -------------------------------------------------------------------------------- /src/Succinct/Vector/Primitives.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/src/Succinct/Vector/Primitives.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/stack.yaml -------------------------------------------------------------------------------- /succinct-vector.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/succinct-vector.cabal -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/Haskell-Succinct-Vector-Library/HEAD/test/Main.hs --------------------------------------------------------------------------------