├── .envrc ├── .gitignore ├── LICENSE ├── README.md ├── benchmark └── Main.hs ├── bytestring-builders-benchmark.cabal ├── flake.lock ├── flake.nix ├── library └── ByteString │ └── BuildersBenchmark │ ├── Actions.hs │ ├── Benchmarks.hs │ ├── Inputs.hs │ └── Subjects.hs └── run-benchmarks /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist-newstyle/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/benchmark/Main.hs -------------------------------------------------------------------------------- /bytestring-builders-benchmark.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/bytestring-builders-benchmark.cabal -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/flake.nix -------------------------------------------------------------------------------- /library/ByteString/BuildersBenchmark/Actions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/library/ByteString/BuildersBenchmark/Actions.hs -------------------------------------------------------------------------------- /library/ByteString/BuildersBenchmark/Benchmarks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/library/ByteString/BuildersBenchmark/Benchmarks.hs -------------------------------------------------------------------------------- /library/ByteString/BuildersBenchmark/Inputs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/library/ByteString/BuildersBenchmark/Inputs.hs -------------------------------------------------------------------------------- /library/ByteString/BuildersBenchmark/Subjects.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/library/ByteString/BuildersBenchmark/Subjects.hs -------------------------------------------------------------------------------- /run-benchmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-perf/strict-bytestring-builders/HEAD/run-benchmarks --------------------------------------------------------------------------------