You cannot post messages because only members can post, and you are not currently a member.
Description:
Discussion group for developers who contribute to the Clojure and Clojure contrib projects. Contributions are made here only under the Clojure Contributor Agreement.
|
|
|
Transient support for sorted sets/maps?
|
| |
Hi all,
CLJ-995 requests support for sorted sets -- and since that's backed by a
(sorted) tree map, that would imply supporting transients for sorted
maps as well.
[link]
Are there any technical reason why this cannot/shouldn't be done? The
documentation on transients -- [link] --... more »
|
|
CLJ loop bindings hold on to head of lazy sequence
|
| |
Consider the following Clojure code: (let [s (range 10000000)] (reduce + s)) This behaves nicely and returns the value 49999995000000 Now consider this code: (loop [s (range 10000000)] (reduce + s)) In this case, the loop binding holds on to the head of the sequence, resulting in an OutOfMemoryError.... more »
|
|
CLJ tickets needing work on May 31 2012
|
| |
New in this week's report: A list of a few tickets (only 3 so far)
that have no patches, but might be a reasonably small amount of work.
Warning: a ticket being on that list is based on my preference, and
preferences can vary widely between developers. I know every ticket
was created by someone who cared enough about it to create a ticket.... more »
|
|
CLJ prescreened patch list for May 31 2012
|
| |
New in this week's report: Section "Tickets that might be closable
without any code changes"
List of prescreened patches for CLJ project
...
This list of tickets is intended primarily for Clojure screeners and
committers. If you are looking for tickets that need more work, look
for the separate "Tickets needing work" list.... more »
|
|
Clojure testing standards: What is the desired approach?
|
| |
Hello,
I have a question regarding what is typically expected of unit tests in the Clojure codebase, with specific regard to test/is function calls and failures.
Clearly, when making changes or additions to a codebase, it's a good thing to make new code mesh with the style and idioms of the existing code, and... more »
|
|
CLJS: Are we fast yet?
|
| |
CLJS devs:
In the spirit of "Are we Fast Yet?" ([link]) I've put
together a quick benchmarking / reporting tool that shows how the
performance of certain Clojurescript micro-benchmarks has progressed (or
regressed) with each update in the repository.
You can see the the results here: [link]... more »
|
|
reverse complement benchmark
|
| |
I have added a stab at reverse-complement [1] to the test.benchmark repos. I believe it will do better than the one currently on alioth [2].
I would be thrilled if anybody wanted to look at this and do any of: test correctness, verify perf, publish to alioth.
Cheers,
Stu
[1] [link]... more »
|
|
Adding varargs support to gen-class
|
| |
Hi,
This is my first post to the clojure-dev list, and now my CA is
'on-file', I'll start with a thank you for all the great work that's
gone into making clojure such a fun environment to play around in. I'm
hoping to be able to contribute back something to make it even better.
I wonder if anyone has any comments/observations on the following:... more »
|
|
|