Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clojure/core.incubator
Proving ground for proposed new core fns
https://github.com/clojure/core.incubator
Last synced: 3 days ago
JSON representation
Proving ground for proposed new core fns
- Host: GitHub
- URL: https://github.com/clojure/core.incubator
- Owner: clojure
- Created: 2011-04-20T11:27:28.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-07-15T17:58:55.000Z (6 months ago)
- Last Synced: 2024-12-21T15:03:07.639Z (10 days ago)
- Language: Clojure
- Homepage: http://clojure.org
- Size: 70.3 KB
- Stars: 116
- Watchers: 33
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# THIS PROJECT IS NO LONGER ACTIVE
# core.incubator
Future home of fns proposed for core inclusion. Currently:
* A "nil-safe" threading macro for interop forms (`.?.`)
* An implementation of `dissoc-in`
* An implementation of `seqable?` (deprecated - in core as of Clojure 1.9.0-alpha5)
* A string interpolation macro (`<<`), originally described
[here](https://cemerick.com/blog/2009/12/04/string-interpolation-in-clojure.html).NOTE: If you are looking for the other nil-safe threading macros — `-?>` and
`-?>>` — they're still here, but deprecated; they were effectively promoted into
`clojure.core` starting with Clojure 1.5 in the form of `some->` and `some->>`,
respectively.For more details, please see the project's [generated API
documentation](http://clojure.github.com/core.incubator/).## "Installation"
Add a dependency on core.incubator to your Leinigen `project.clj`:
```clojure
[org.clojure/core.incubator "0.1.4"]
```…or to your Maven `pom.xml`:
```clojure
org.clojure
core.incubator
0.1.4```
## License
Copyright (c) Rich Hickey and contributors. All rights reserved.
The use and distribution terms for this software are covered by the
Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
which can be found in the file epl.html at the root of this distribution.
By using this software in any fashion, you are agreeing to be bound by
the terms of this license.
You must not remove this notice, or any other, from this software.