The following behavior of into function is a bug or the intended result?

2015-08-09 Thread Young Kim
This works well as expected. The order of input elements is maintained. (into (array-map) [[1 :a] [2 :b] [3 :c] [4 :d] [5 :e] [6 :f] [7 :g] [8 :h]]) ; => {1 :a, 2 :b, 3 :c, 4 :d, 5 :e, 6 :f, 7 :g, 8 :h} However, as soon as the number of the input elements exceeds 9, the order is not maintained a

Is the following behavior of into function a bug or the intended result?

2015-08-09 Thread Young Kim
This works well as excepted. The order of input elements is maintained. (into (array-map) [[1 :a] [2 :b] [3 :c] [4 :d] [5 :e] [6 :f] [7 :g] [8 :h]]) ; => {1 :a, 2 :b, 3 :c, 4 :d, 5 :e, 6 :f, 7 :g, 8 :h} However, as soon as the number of the input elements exceeds 9, the order is not maintained a

[ANN] debux 0.1.0

2015-07-14 Thread Young Kim
https://github.com/philoskim/debux Debux is a simple library for debugging Clojure and ClojureScript source code. I wrote this library to debug my own Clojure(Script) souce code and to analyze other developer's Clojure(Script) souce code. -- You received this message because you are subscribed

Re: swank-cdt: Using Slime with the Clojure Debugging Toolkit

2011-12-07 Thread Young Kim
I posted the related problem on https://github.com/technomancy/swank-clojure/issues/86 Please refer to it! I hope that it will be helpful for you. On Dec 7, 12:47 pm, Andrew wrote: > Thanks for taking the time Sean! You're right... > >    - I'm on Windows XP >    - I had to copy tools.jar to my

Re: swank-cdt: Using Slime with the Clojure Debugging Toolkit

2011-12-07 Thread Young Kim
The following is the file lists in clojure-clojure-source-1.3.0- alpha5.jar on Windows 7. As you can see, there are no *.clj files in clojure-clojure- source-1.3.0-alpha5.jar. So I think that it is natural that 'clojure/set.clj - source not found.' message appeared. Do I misunderstand anything? ==

Re: A question on deftest- macro.

2011-11-06 Thread Young Kim
of the deftest- macro? On Nov 6, 5:33 am, Phil Hagelberg wrote: > On Sat, Nov 5, 2011 at 6:57 AM, Young Kim wrote: > > The unexpected result was that the message "Ran 5 tests containing 8 > > assertions". > > > The expected message was that "Ran 3 tests c

A question on deftest- macro.

2011-11-05 Thread Young Kim
My development environment on Windows 7 is as follows. -- C:\work> lein version Leiningen 1.6.2-SNAPSHOT on Java 1.7.0 Java HotSpot(TM) Client VM -- I created a new proj