├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── project.clj ├── src └── pjstadig │ ├── reducible_stream.clj │ └── reducible_stream │ └── transit.clj └── test └── pjstadig └── reducible_stream_test.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjstadig/reducible-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjstadig/reducible-stream/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjstadig/reducible-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjstadig/reducible-stream/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjstadig/reducible-stream/HEAD/project.clj -------------------------------------------------------------------------------- /src/pjstadig/reducible_stream.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjstadig/reducible-stream/HEAD/src/pjstadig/reducible_stream.clj -------------------------------------------------------------------------------- /src/pjstadig/reducible_stream/transit.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjstadig/reducible-stream/HEAD/src/pjstadig/reducible_stream/transit.clj -------------------------------------------------------------------------------- /test/pjstadig/reducible_stream_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pjstadig/reducible-stream/HEAD/test/pjstadig/reducible_stream_test.clj --------------------------------------------------------------------------------