Skip to content

caribou/clojure.walk2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clojure.walk2

A reimplementation of the clojure.walk namespace.

Submitted as an enhancement to Clojure in CLJ-1239.

This repo is for demonstration only. All further development/discussion should happen on Clojure's JIRA and mailing list.

Differences from the original clojure.walk:

  • Protocol-based dispatch for better performance

  • Support for records

Releases and Dependency Information

No binary releases.

Run lein install in this directory, then use this dependency in a Leiningen project:

[com.stuartsierra/clojure.walk2 "0.1.0-SNAPSHOT"]

Usage

(require '[clojure.walk2 :as walk])

The public API is identical to that of clojure.walk.

See clojure.walk API documentation

Tests

In this directory, run lein test. The test suite is the same as that for clojure.walk, with some added tests for records.

Benchmarks

In this directory, start a repl with lein repl and then:

(require 'bench)
(bench/bench 5)

Pass different numbers to bench/bench to run the test with different random seeds. Call bench/data with the same random seed to see the test data.

In my tests, clojure.walk2 is about 2 times faster than clojure.walk.

License

Copyright © 2013 Stuart Sierra. All rights reserved.

The use and distribution terms for this software are covered by the Eclipse Public License 1.0 which can be found in the file epl-v10.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.

About

Reimplementation of clojure.walk with protocols

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published