├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples └── src │ ├── index.html │ └── manifold_test │ ├── daisy.cljs │ ├── main.cljs │ ├── robpike.cljs │ └── utils.cljs ├── src └── manifold_cljs │ ├── bus.cljs │ ├── deferred.clj │ ├── deferred.cljs │ ├── deferred │ ├── core.cljs │ ├── default_impl.clj │ └── default_impl.cljs │ ├── executor.clj │ ├── executor.cljs │ ├── impl │ ├── list.cljs │ ├── logging.cljs │ └── queue.cljs │ ├── stream.cljs │ ├── stream │ ├── core.clj │ ├── core.cljs │ ├── default_impl.cljs │ ├── graph.cljs │ └── seq.cljs │ ├── time.cljs │ ├── utils.clj │ └── utils.cljs ├── test └── manifold_cljs │ ├── bus_test.cljs │ ├── deferred_test.cljs │ ├── executor_test.cljs │ ├── stream │ └── seq_test.cljs │ ├── stream_test.cljs │ ├── test_util.clj │ └── test_util.cljs └── vendor ├── _weakmap ├── externs.js └── weakmap.js └── deps.cljs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/README.md -------------------------------------------------------------------------------- /examples/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/examples/src/index.html -------------------------------------------------------------------------------- /examples/src/manifold_test/daisy.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/examples/src/manifold_test/daisy.cljs -------------------------------------------------------------------------------- /examples/src/manifold_test/main.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/examples/src/manifold_test/main.cljs -------------------------------------------------------------------------------- /examples/src/manifold_test/robpike.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/examples/src/manifold_test/robpike.cljs -------------------------------------------------------------------------------- /examples/src/manifold_test/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/examples/src/manifold_test/utils.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/bus.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/bus.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/deferred.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/deferred.clj -------------------------------------------------------------------------------- /src/manifold_cljs/deferred.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/deferred.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/deferred/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/deferred/core.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/deferred/default_impl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/deferred/default_impl.clj -------------------------------------------------------------------------------- /src/manifold_cljs/deferred/default_impl.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/deferred/default_impl.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/executor.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/executor.clj -------------------------------------------------------------------------------- /src/manifold_cljs/executor.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/executor.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/impl/list.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/impl/list.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/impl/logging.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/impl/logging.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/impl/queue.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/impl/queue.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/stream.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/stream.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/stream/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/stream/core.clj -------------------------------------------------------------------------------- /src/manifold_cljs/stream/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/stream/core.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/stream/default_impl.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/stream/default_impl.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/stream/graph.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/stream/graph.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/stream/seq.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/stream/seq.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/time.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/time.cljs -------------------------------------------------------------------------------- /src/manifold_cljs/utils.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/utils.clj -------------------------------------------------------------------------------- /src/manifold_cljs/utils.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/src/manifold_cljs/utils.cljs -------------------------------------------------------------------------------- /test/manifold_cljs/bus_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/test/manifold_cljs/bus_test.cljs -------------------------------------------------------------------------------- /test/manifold_cljs/deferred_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/test/manifold_cljs/deferred_test.cljs -------------------------------------------------------------------------------- /test/manifold_cljs/executor_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/test/manifold_cljs/executor_test.cljs -------------------------------------------------------------------------------- /test/manifold_cljs/stream/seq_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/test/manifold_cljs/stream/seq_test.cljs -------------------------------------------------------------------------------- /test/manifold_cljs/stream_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/test/manifold_cljs/stream_test.cljs -------------------------------------------------------------------------------- /test/manifold_cljs/test_util.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/test/manifold_cljs/test_util.clj -------------------------------------------------------------------------------- /test/manifold_cljs/test_util.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/test/manifold_cljs/test_util.cljs -------------------------------------------------------------------------------- /vendor/_weakmap/externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/vendor/_weakmap/externs.js -------------------------------------------------------------------------------- /vendor/_weakmap/weakmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/vendor/_weakmap/weakmap.js -------------------------------------------------------------------------------- /vendor/deps.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dm3/manifold-cljs/HEAD/vendor/deps.cljs --------------------------------------------------------------------------------