diff options
author | Chouser <chouser@n01se.net> | 2009-01-12 07:54:16 +0000 |
---|---|---|
committer | Chouser <chouser@n01se.net> | 2009-01-12 07:54:16 +0000 |
commit | 2b1e44f04489b5d70faff703bf824f07b74432d2 (patch) | |
tree | 2bc686386c956028744f7411a4404f59efca9115 /clojurescript | |
parent | 6e53cf73c313d2bf76f5ee3c9a847548665b32e2 (diff) |
Rearrange ClojureScript code for AOT compilation and its eventual place in clojure.contrib. Also fix major breaking errors for Clojure SVN 1205, but it's not well tested with this latest version.
Diffstat (limited to 'clojurescript')
-rw-r--r-- | clojurescript/README.txt | 18 | ||||
-rw-r--r-- | clojurescript/src/clojure/contrib/clojurescript.clj (renamed from clojurescript/tojs.clj) | 122 | ||||
-rw-r--r-- | clojurescript/src/clojure/contrib/clojurescript/cli.clj | 95 | ||||
-rw-r--r-- | clojurescript/src/clojure/contrib/clojurescript/core.js (renamed from clojurescript/core.js) | 2655 | ||||
-rw-r--r-- | clojurescript/src/clojure/contrib/clojurescript/repl/blank.gif (renamed from clojurescript/repl/blank.gif) | bin | 48 -> 48 bytes | |||
-rw-r--r-- | clojurescript/src/clojure/contrib/clojurescript/repl/clojure-logo-anim-03.gif (renamed from clojurescript/repl/clojure-logo-anim-03.gif) | bin | 4919 -> 4919 bytes | |||
-rw-r--r-- | clojurescript/src/clojure/contrib/clojurescript/repl/dots.png (renamed from clojurescript/repl/dots.png) | bin | 437 -> 437 bytes | |||
-rw-r--r-- | clojurescript/src/clojure/contrib/clojurescript/repl/repl.cljs (renamed from clojurescript/repl/repl.cljs) | 0 | ||||
-rw-r--r-- | clojurescript/src/clojure/contrib/clojurescript/repl/repl.html (renamed from clojurescript/repl/repl.html) | 0 | ||||
-rw-r--r-- | clojurescript/src/clojure/contrib/clojurescript/repl/repl.js (renamed from clojurescript/repl/repl.js) | 59 | ||||
-rw-r--r-- | clojurescript/src/clojure/contrib/clojurescript/rt.js (renamed from clojurescript/rt.js) | 10 | ||||
-rw-r--r-- | clojurescript/support-for-clojurescript.patch | 248 | ||||
-rw-r--r-- | clojurescript/tests/t01.cljs (renamed from clojurescript/t01.cljs) | 0 | ||||
-rw-r--r-- | clojurescript/tests/t02.cljs (renamed from clojurescript/t02.cljs) | 0 | ||||
-rw-r--r-- | clojurescript/tests/t03.cljs (renamed from clojurescript/t03.cljs) | 0 | ||||
-rw-r--r-- | clojurescript/tests/t04.cljs (renamed from clojurescript/t04.cljs) | 0 | ||||
-rw-r--r-- | clojurescript/tests/t05.js (renamed from clojurescript/t05.js) | 0 | ||||
-rw-r--r-- | clojurescript/tests/t06.cljs (renamed from clojurescript/t06.cljs) | 0 |
18 files changed, 1685 insertions, 1522 deletions
diff --git a/clojurescript/README.txt b/clojurescript/README.txt index 5fe80972..8b38a2aa 100644 --- a/clojurescript/README.txt +++ b/clojurescript/README.txt @@ -4,21 +4,23 @@ subset of Clojure to be automatically translated to JavaScript. tojs.clj is Clojure code to translate Clojure forms to Javascript. It was used to generate core.js from clojure's own core.clj and -core-print.clj. +core_print.clj. -To run any of the tests, do something like: +To run any of the tests from the command line, do something like: -java -cp ~/build/clojure/clojure.jar:/home/chouser/proj/clojure-contrib/src -clojure.lang.Script tojs.clj -- t03.cljs > t03.js +java -cp ~/build/clojure/clojure.jar:/home/chouser/proj/clojure-contrib/src:src \ + clojure.main src/clojure/contrib/clojurescript/cli.clj -- \ + tests/t03.cljs > t03.js Now that you've got the .js file, you can test using Rhino: -/usr/bin/java -jar /usr/share/java/js.jar -f rt.js -f core.js -f t03.js - -Or point a browser at test.html and choose the test you want to run. +/usr/bin/java -jar /usr/share/java/js.jar \ + -f src/clojure/contrib/clojurescript/rt.js \ + -f src/clojure/contrib/clojurescript/core.js \ + -f t03.js There's plenty more to do. If you'd like to help, contact the Clojure Google group: clojure@googlegroups.com --Chouser -23 Sept 2008 +12 Jan 2009 diff --git a/clojurescript/tojs.clj b/clojurescript/src/clojure/contrib/clojurescript.clj index 8c9f9e4d..66e7eac3 100644 --- a/clojurescript/tojs.clj +++ b/clojurescript/src/clojure/contrib/clojurescript.clj @@ -1,23 +1,19 @@ -; Copyright (c) Chris Houser, Sep 2008. All rights reserved. +; Copyright (c) Chris Houser, Sep 2008-Jan 2009. All rights reserved. ; The use and distribution terms for this software are covered by the -; Common Public License 1.0 (http://opensource.org/licenses/cpl.php) -; which can be found in the file CPL.TXT at the root of this distribution. +; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) +; 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. ; Reads Clojure code and emits equivalent JavaScript -(ns clojurescript.tojs - (:import (clojure.lang Compiler Compiler$C Compiler$BodyExpr - Compiler$DefExpr Compiler$InstanceMethodExpr) - (java.io BufferedReader InputStreamReader StringReader PrintWriter) - (java.net URLDecoder)) - (:use [clojure.contrib.command-line :only (with-command-line)]) - (:require (clojure.contrib [duck-streams :as ds] - [seq-utils :as su]))) +(ns clojure.contrib.clojurescript + (:import (clojure.lang Compiler Compiler$C Compiler$BodyExpr + Compiler$DefExpr Compiler$InstanceMethodExpr)) + (:require [clojure.contrib.duck-streams :as ds])) -(defn vstr [v] +(defn- vstr [v] (let [sb (StringBuilder.) lvl (fn lvl [v] (doseq [i v] @@ -35,9 +31,9 @@ (def *has-recur*) (def *local-names* {}) -(defmulti tojs (fn [e ctx] (class e))) +(defmulti #^{:private true} tojs (fn [e ctx] (class e))) -(defn fnmethod [fm maxm ctx] +(defn- fnmethod [fm maxm ctx] (let [lm (into {} (for [[lb lb] (.locals fm)] [lb (str (.name lb) "_" (.idx lb))])) thisfn (first (filter #(= 0 (.idx %)) (keys lm))) @@ -123,7 +119,7 @@ (vec (interpose "," (map #(tojs % ctx) (.args e)))) "])"])) -(defn const-str [c] +(defn- const-str [c] (cond (or (instance? Character c) (string? c)) (pr-str (str c)) @@ -144,13 +140,13 @@ (def js-reserved '#{import boolean short byte char class}) -(defn var-munge [x] +(defn- var-munge [x] (let [n (-> x str Compiler/munge (.replace "." "_DOT_"))] (if (js-reserved (symbol n)) (str n "_") n))) -(defn var-parts [e] +(defn- var-parts [e] (let [{:keys [name ns]} ^(.var e)] [(Compiler/munge (str (.getName ns))) (var-munge name)])) @@ -333,9 +329,13 @@ (= "setMacro" (.methodName (second (.exprs mainexpr)))))) (tojs expr {:localmap {}}))))))) -(defn filetojs [filename] - (let [reader (java.io.PushbackReader. (ds/reader filename))] - (binding [*ns* (create-ns 'user)] +(defn filetojs [filename & optseq] + (let [reader (java.io.PushbackReader. (ds/reader filename)) + opts (apply array-map optseq)] + (binding [*ns* (create-ns 'user) + *debug-fn-names* (:debug-fn-names opts true) + *debug-comments* (:debug-comments opts true) + *eval-defmacro* (:eval-defmacro opts true)] (loop [] (let [f (read reader false reader false)] (when-not (identical? f reader) @@ -355,85 +355,3 @@ (print "// Skipping: ") (prn f))) (recur))))))) - -(defn simple-tests [] - (println (formtojs - '(defn foo - ([a b c & d] (prn 3 a b c)) - ([c] - ;(String/asd "hello") - ;(.foo 55) - (let [[a b] [1 2]] - (prn a b c) - "hi"))))) - - (println (formtojs - '(defn foo [a] - (prn "hi") - (let [a 5] - (let [a 10] - (prn "yo") - (prn a)) - (prn a)) - (prn a)))) - - (println (formtojs - '(defn x [] (conj [] (loop [i 5] (if (pos? i) (recur (- i 2)) i)))))) - - ;(println (formtojs '(binding [*out* 5] (set! *out* 10)))) - (println (formtojs '(.replace "a/b/c" "/" "."))) - (println (formtojs '(.getName ":foo"))) - (println (formtojs '(list '(1 "str" 'sym :key) 4 "str2" 6 #{:set 9 8}))) - (println (formtojs '(fn forever[] (forever)))) - (println (formtojs '(fn forever[] (loop [] (recur)))))) - -(defn start-server [port] - ;(println "Opening port" port) - (loop [server (java.net.ServerSocket. port)] ; should bind only to 127.0.0.1 - (send-off (agent (.accept server)) - (fn [socket] - (with-open [socket socket] - (binding [*debug-fn-names* false - *debug-comments* false - *eval-defmacro* false - *out* (-> socket .getOutputStream ds/writer)] - (try - (print "HTTP/1.0 200 OK\nContent-Type: text/javascript\n\n") - (let [line1 (-> socket .getInputStream ds/reader .readLine) - [_ url] (re-find #"^GET /\?(.*?) HTTP" line1) - codestr (URLDecoder/decode url) - js (with-out-str (filetojs (StringReader. codestr)))] - (println "jsrepl.state('compiled');try{") - (println "jsrepl.lastval=" js ) - (println "jsrepl.state('done');}catch(e){jsrepl.err(e)};")) - (catch Exception e - (if (= (.getMessage e) "EOF while reading") - (println "jsrepl.state('incomplete');") - (let [trace (with-out-str - (.printStackTrace e (PrintWriter. *out*)))] - (println "jsrepl.state('error',\"" - (.replace trace "\n" "\\n") "\");"))))))))) - (recur server))) - -(defn mkcore [] - (binding [*out* (ds/writer "core.js")] - (doseq [file ["clojure/core.clj" "clojure/core-print.clj"]] - (filetojs (.getResourceAsStream (clojure.lang.RT/baseLoader) file))))) - -(defn -main [& args] - (with-command-line args - "tojs -- Compile ClojureScript to JavaScript" - [[simple? "Runs some simple built-in tests"] - [serve "Starts a repl server on the given port" 8081] - [mkcore? "Generates a core.js file"] - [v? "Includes extra fn names and comments in js"] - filenames] - (binding [*debug-fn-names* v? *debug-comments* v?] - (cond - simple? (simple-tests) - serve (start-server (Integer/parseInt serve)) - mkcore? (mkcore) - :else (doseq [filename filenames] - (filetojs filename)))))) - -;(when-not *compile-files* (apply -main *command-line-args*)) diff --git a/clojurescript/src/clojure/contrib/clojurescript/cli.clj b/clojurescript/src/clojure/contrib/clojurescript/cli.clj new file mode 100644 index 00000000..da823b75 --- /dev/null +++ b/clojurescript/src/clojure/contrib/clojurescript/cli.clj @@ -0,0 +1,95 @@ +; Copyright (c) Chris Houser, Sep 2008-Jan 2009. 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-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. + +; Command Line Interface for generating JavaScript from Clojure code. + +(ns clojure.contrib.clojurescript.cli + (:import (java.io PrintWriter StringReader) + (java.net URLDecoder)) + (:use [clojure.contrib.command-line :only (with-command-line)] + [clojure.contrib.clojurescript :only (formtojs filetojs)]) + (:require [clojure.contrib.duck-streams :as ds])) + +(defn start-server [port] + ;(println "Opening port" port) + (loop [server (java.net.ServerSocket. port)] ; TODO bind only to 127.0.0.1 + (send-off (agent (.accept server)) + (fn [socket] + (with-open [socket socket] + (binding [*out* (-> socket .getOutputStream ds/writer)] + (try + (print "HTTP/1.0 200 OK\nContent-Type: text/javascript\n\n") + (let [line1 (-> socket .getInputStream ds/reader .readLine) + [_ url] (re-find #"^GET /\?(.*?) HTTP" line1) + codestr (URLDecoder/decode url) + js (with-out-str (filetojs (StringReader. codestr) + :debug-fn-names false + :debug-comments false + :eval-defmacro false))] + (println "jsrepl.state('compiled');try{") + (println "jsrepl.lastval=" js ) + (println "jsrepl.state('done');}catch(e){jsrepl.err(e)};")) + (catch Exception e + (if (= (.getMessage e) "EOF while reading") + (println "jsrepl.state('incomplete');") + (let [trace (with-out-str + (.printStackTrace e (PrintWriter. *out*)))] + (println "jsrepl.state('error',\"" + (.replace trace "\n" "\\n") "\");"))))))))) + (recur server))) + +(defn mkcore [] + (binding [*out* (ds/writer "core.js")] + (doseq [file ["clojure/core.clj" "clojure/core_print.clj"]] + (filetojs (.getResourceAsStream (clojure.lang.RT/baseLoader) file))))) + +(defn simple-tests [] + (println (formtojs + '(defn foo + ([a b c & d] (prn 3 a b c)) + ([c] + ;(String/asd "hello") + ;(.foo 55) + (let [[a b] [1 2]] + (prn a b c) + "hi"))))) + + (println (formtojs + '(defn foo [a] + (prn "hi") + (let [a 5] + (let [a 10] + (prn "yo") + (prn a)) + (prn a)) + (prn a)))) + + (println (formtojs + '(defn x [] (conj [] (loop [i 5] (if (pos? i) (recur (- i 2)) i)))))) + + ;(println (formtojs '(binding [*out* 5] (set! *out* 10)))) + (println (formtojs '(.replace "a/b/c" "/" "."))) + (println (formtojs '(.getName ":foo"))) + (println (formtojs '(list '(1 "str" 'sym :key) 4 "str2" 6 #{:set 9 8}))) + (println (formtojs '(fn forever[] (forever)))) + (println (formtojs '(fn forever[] (loop [] (recur)))))) + +(when-not *compile-files* + (with-command-line *command-line-args* + "clojurescript.cli -- Compile ClojureScript to JavaScript" + [[simple? "Runs some simple built-in tests"] + [serve "Starts a repl server on the given port" 8081] + [mkcore? "Generates a core.js file"] + [v? "Includes extra fn names and comments in js"] + filenames] + (cond + simple? (simple-tests) + serve (start-server (Integer/parseInt serve)) + mkcore? (mkcore) + :else (doseq [filename filenames] + (filetojs filename :debug-fn-names v? :debug-comments v?))))) diff --git a/clojurescript/core.js b/clojurescript/src/clojure/contrib/clojurescript/core.js index 1542d3f2..7726b43f 100644 --- a/clojurescript/core.js +++ b/clojurescript/src/clojure/contrib/clojurescript/core.js @@ -1,14 +1,20 @@ //====== -//(in-ns (quote clojure.core)) +//(ns clojure.core) //--- -(function __user_fn_2(){ +(function __user_fn_538(){ return (clojure.core.in_ns.apply(null,[clojure.core.symbol("clojure.core")]))}).apply(null,[]); //====== +//(def unquote) +//--- +(function __clojure_core_fn_544(){ +return (clojure.JS.def(clojure.core,"unquote",null))}).apply(null,[]); + +//====== //(def list (. clojure.lang.PersistentList creator)) //--- -(function __clojure_core_fn_8(){ +(function __clojure_core_fn_547(){ return (clojure.JS.def(clojure.core,"list",clojure.JS.getOrRun(clojure.lang.PersistentList,"creator")))}).apply(null,[]); // Skipping: (def cons (fn* cons [x seq] (. clojure.lang.RT (cons x seq)))) // Skipping: (def let (fn* let [& decl] (cons (quote let*) decl))) @@ -20,8 +26,8 @@ return (clojure.JS.def(clojure.core,"list",clojure.JS.getOrRun(clojure.lang.Pers //====== //(def conj (fn conj ([coll x] (. clojure.lang.RT (conj coll x))) ([coll x & xs] (if xs (recur (conj coll x) (first xs) (rest xs)) (conj coll x))))) //--- -(function __clojure_core_fn_41(){ -return (clojure.JS.def(clojure.core,"conj",clojure.JS.variadic(2,(function __clojure_core_fn_41_conj_43(coll_1,x_2){switch(arguments.length){ +(function __clojure_core_fn_580(){ +return (clojure.JS.def(clojure.core,"conj",clojure.JS.variadic(2,(function __clojure_core_fn_580_conj_582(coll_1,x_2){switch(arguments.length){ case 2:var conj_0=arguments.callee; return (clojure.lang.RT.conj(coll_1,x_2))} var _cnt,_rtn,conj_0=arguments.callee,xs_3=clojure.JS.rest_args(this,arguments,2); @@ -31,40 +37,40 @@ do{_cnt=0;_rtn=((xs_3)?((_cnt=1,_rtn=[conj_0.apply(null,[coll_1,x_2]),clojure.co //====== //(def second (fn second [x] (first (rest x)))) //--- -(function __clojure_core_fn_46(){ -return (clojure.JS.def(clojure.core,"second",(function __clojure_core_fn_46_second_48(x_1){ +(function __clojure_core_fn_585(){ +return (clojure.JS.def(clojure.core,"second",(function __clojure_core_fn_585_second_587(x_1){ var second_0=arguments.callee; return (clojure.core.first.apply(null,[clojure.core.rest.apply(null,[x_1])]))})))}).apply(null,[]); //====== //(def ffirst (fn ffirst [x] (first (first x)))) //--- -(function __clojure_core_fn_51(){ -return (clojure.JS.def(clojure.core,"ffirst",(function __clojure_core_fn_51_ffirst_53(x_1){ +(function __clojure_core_fn_590(){ +return (clojure.JS.def(clojure.core,"ffirst",(function __clojure_core_fn_590_ffirst_592(x_1){ var ffirst_0=arguments.callee; return (clojure.core.first.apply(null,[clojure.core.first.apply(null,[x_1])]))})))}).apply(null,[]); //====== //(def rfirst (fn rfirst [x] (rest (first x)))) //--- -(function __clojure_core_fn_56(){ -return (clojure.JS.def(clojure.core,"rfirst",(function __clojure_core_fn_56_rfirst_58(x_1){ +(function __clojure_core_fn_595(){ +return (clojure.JS.def(clojure.core,"rfirst",(function __clojure_core_fn_595_rfirst_597(x_1){ var rfirst_0=arguments.callee; return (clojure.core.rest.apply(null,[clojure.core.first.apply(null,[x_1])]))})))}).apply(null,[]); //====== //(def frest (fn frest [x] (first (rest x)))) //--- -(function __clojure_core_fn_61(){ -return (clojure.JS.def(clojure.core,"frest",(function __clojure_core_fn_61_frest_63(x_1){ +(function __clojure_core_fn_600(){ +return (clojure.JS.def(clojure.core,"frest",(function __clojure_core_fn_600_frest_602(x_1){ var frest_0=arguments.callee; return (clojure.core.first.apply(null,[clojure.core.rest.apply(null,[x_1])]))})))}).apply(null,[]); //====== //(def rrest (fn rrest [x] (rest (rest x)))) //--- -(function __clojure_core_fn_66(){ -return (clojure.JS.def(clojure.core,"rrest",(function __clojure_core_fn_66_rrest_68(x_1){ +(function __clojure_core_fn_605(){ +return (clojure.JS.def(clojure.core,"rrest",(function __clojure_core_fn_605_rrest_607(x_1){ var rrest_0=arguments.callee; return (clojure.core.rest.apply(null,[clojure.core.rest.apply(null,[x_1])]))})))}).apply(null,[]); // Skipping: (def seq (fn seq [coll] (. clojure.lang.RT (seq coll)))) @@ -73,8 +79,8 @@ return (clojure.core.rest.apply(null,[clojure.core.rest.apply(null,[x_1])]))}))) //====== //(def seq? (fn seq? [x] (instance? clojure.lang.ISeq x))) //--- -(function __clojure_core_fn_81(){ -return (clojure.JS.def(clojure.core,"seq_QMARK_",(function __clojure_core_fn_81_seq_QMARK_83(x_1){ +(function __clojure_core_fn_620(){ +return (clojure.JS.def(clojure.core,"seq_QMARK_",(function __clojure_core_fn_620_seq_QMARK_622(x_1){ var seq_QMARK__0=arguments.callee; return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.ISeq,x_1]))})))}).apply(null,[]); // Skipping: (def string? (fn string? [x] (instance? String x))) @@ -82,51 +88,51 @@ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.ISeq,x_1]))})))}). //====== //(def map? (fn map? [x] (instance? clojure.lang.IPersistentMap x))) //--- -(function __clojure_core_fn_91(){ -return (clojure.JS.def(clojure.core,"map_QMARK_",(function __clojure_core_fn_91_map_QMARK_93(x_1){ +(function __clojure_core_fn_630(){ +return (clojure.JS.def(clojure.core,"map_QMARK_",(function __clojure_core_fn_630_map_QMARK_632(x_1){ var map_QMARK__0=arguments.callee; return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.IPersistentMap,x_1]))})))}).apply(null,[]); //====== //(def vector? (fn vector? [x] (instance? clojure.lang.IPersistentVector x))) //--- -(function __clojure_core_fn_96(){ -return (clojure.JS.def(clojure.core,"vector_QMARK_",(function __clojure_core_fn_96_vector_QMARK_98(x_1){ +(function __clojure_core_fn_635(){ +return (clojure.JS.def(clojure.core,"vector_QMARK_",(function __clojure_core_fn_635_vector_QMARK_637(x_1){ var vector_QMARK__0=arguments.callee; return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.IPersistentVector,x_1]))})))}).apply(null,[]); //====== //(def sigs (fn [fdecl] (if (seq? (first fdecl)) (loop [ret [] fdecl fdecl] (if fdecl (recur (conj ret (first (first fdecl))) (rest fdecl)) (seq ret))) (list (first fdecl))))) //--- -(function __clojure_core_fn_101(){ -return (clojure.JS.def(clojure.core,"sigs",(function __clojure_core_fn_101_sigs_103(fdecl_1){ -var fdecl_3,ret_2; +(function __clojure_core_fn_640(){ +return (clojure.JS.def(clojure.core,"sigs",(function __clojure_core_fn_640_sigs_642(fdecl_1){ +var ret_2,fdecl_3; return (((clojure.core.seq_QMARK_.apply(null,[clojure.core.first.apply(null,[fdecl_1])]))?(((function __loop(){var _rtn,_cnt;(ret_2=clojure.lang.PersistentVector.EMPTY), (fdecl_3=fdecl_1);do{_cnt=0; _rtn=((fdecl_3)?((_cnt=1,_rtn=[clojure.core.conj.apply(null,[ret_2,clojure.core.first.apply(null,[clojure.core.first.apply(null,[fdecl_3])])]),clojure.core.rest.apply(null,[fdecl_3])],ret_2=_rtn[0],fdecl_3=_rtn[1])):(clojure.core.seq.apply(null,[ret_2])))}while(_cnt);return _rtn;})())):(clojure.core.list.apply(null,[clojure.core.first.apply(null,[fdecl_1])]))))})))}).apply(null,[]); // Skipping: (def assoc (fn assoc ([map key val] (. clojure.lang.RT (assoc map key val))) ([map key val & kvs] (let [ret (assoc map key val)] (if kvs (recur ret (first kvs) (second kvs) (rrest kvs)) ret))))) //====== -//(def meta (fn meta [x] (if (instance? clojure.lang.IObj x) (. x (meta))))) +//(def meta (fn meta [x] (if (instance? clojure.lang.IMeta x) (. x (meta))))) //--- -(function __clojure_core_fn_112(){ -return (clojure.JS.def(clojure.core,"meta",(function __clojure_core_fn_112_meta_114(x_1){ +(function __clojure_core_fn_651(){ +return (clojure.JS.def(clojure.core,"meta",(function __clojure_core_fn_651_meta_653(x_1){ var meta_0=arguments.callee; -return (((clojure.core.instance_QMARK_.apply(null,[clojure.lang.IObj,x_1]))?((x_1).meta()):(null)))})))}).apply(null,[]); +return (((clojure.core.instance_QMARK_.apply(null,[clojure.lang.IMeta,x_1]))?((x_1).meta()):(null)))})))}).apply(null,[]); //====== //(def with-meta (fn with-meta [x m] (. x (withMeta m)))) //--- -(function __clojure_core_fn_117(){ -return (clojure.JS.def(clojure.core,"with_meta",(function __clojure_core_fn_117_with_meta_119(x_1,m_2){ +(function __clojure_core_fn_656(){ +return (clojure.JS.def(clojure.core,"with_meta",(function __clojure_core_fn_656_with_meta_658(x_1,m_2){ var with_meta_0=arguments.callee; return ((x_1).withMeta(m_2))})))}).apply(null,[]); //====== //(def last (fn last [s] (if (rest s) (recur (rest s)) (first s)))) //--- -(function __clojure_core_fn_122(){ -return (clojure.JS.def(clojure.core,"last",(function __clojure_core_fn_122_last_124(s_1){ +(function __clojure_core_fn_661(){ +return (clojure.JS.def(clojure.core,"last",(function __clojure_core_fn_661_last_663(s_1){ var _cnt,_rtn,last_0=arguments.callee; do{_cnt=0;_rtn=((clojure.core.rest.apply(null,[s_1]))?((_cnt=1,_rtn=[clojure.core.rest.apply(null,[s_1])],s_1=_rtn[0])):(clojure.core.first.apply(null,[s_1]))) }while(_cnt);return _rtn;})))}).apply(null,[]); @@ -134,8 +140,8 @@ do{_cnt=0;_rtn=((clojure.core.rest.apply(null,[s_1]))?((_cnt=1,_rtn=[clojure.cor //====== //(def butlast (fn butlast [s] (loop [ret [] s s] (if (rest s) (recur (conj ret (first s)) (rest s)) (seq ret))))) //--- -(function __clojure_core_fn_127(){ -return (clojure.JS.def(clojure.core,"butlast",(function __clojure_core_fn_127_butlast_129(s_1){ +(function __clojure_core_fn_666(){ +return (clojure.JS.def(clojure.core,"butlast",(function __clojure_core_fn_666_butlast_668(s_1){ var ret_2,s_3,butlast_0=arguments.callee; return (((function __loop(){var _rtn,_cnt;(ret_2=clojure.lang.PersistentVector.EMPTY), (s_3=s_1);do{_cnt=0; @@ -146,16 +152,16 @@ _rtn=((clojure.core.rest.apply(null,[s_3]))?((_cnt=1,_rtn=[clojure.core.conj.app //====== //(defn cast "Throws a ClassCastException if x is not a c, else returns x." [c x] (. c (cast x))) //--- -(function __clojure_core_fn_140(){ -return (clojure.JS.def(clojure.core,"cast",(function __clojure_core_fn_140_cast_142(c_1,x_2){ +(function __clojure_core_fn_679(){ +return (clojure.JS.def(clojure.core,"cast",(function __clojure_core_fn_679_cast_681(c_1,x_2){ return ((c_1).cast(x_2))})))}).apply(null,[]); // Skipping: (defn to-array "Returns an array of Objects containing the contents of coll, which\n can be any Collection. Maps to java.util.Collection.toArray()." [coll] (. clojure.lang.RT (toArray coll))) //====== //(defn vector "Creates a new vector containing the args." ([] []) ([& args] (. clojure.lang.LazilyPersistentVector (create args)))) //--- -(function __clojure_core_fn_152(){ -return (clojure.JS.def(clojure.core,"vector",clojure.JS.variadic(0,(function __clojure_core_fn_152_vector_154(){switch(arguments.length){ +(function __clojure_core_fn_691(){ +return (clojure.JS.def(clojure.core,"vector",clojure.JS.variadic(0,(function __clojure_core_fn_691_vector_693(){switch(arguments.length){ case 0:return (clojure.lang.PersistentVector.EMPTY)} var args_1=clojure.JS.rest_args(this,arguments,0); return (clojure.lang.LazilyPersistentVector.create(args_1))}))))}).apply(null,[]); @@ -163,16 +169,16 @@ return (clojure.lang.LazilyPersistentVector.create(args_1))}))))}).apply(null,[] //====== //(defn vec "Creates a new vector containing the contents of coll." ([coll] (. clojure.lang.LazilyPersistentVector (createOwning (to-array coll))))) //--- -(function __clojure_core_fn_159(){ -return (clojure.JS.def(clojure.core,"vec",(function __clojure_core_fn_159_vec_161(coll_1){ +(function __clojure_core_fn_698(){ +return (clojure.JS.def(clojure.core,"vec",(function __clojure_core_fn_698_vec_700(coll_1){ return (clojure.lang.LazilyPersistentVector.createOwning(clojure.core.to_array.apply(null,[coll_1])))})))}).apply(null,[]); // Skipping: (defn hash-map "keyval => key val\n Returns a new hash map with supplied mappings." ([] {}) ([& keyvals] (. clojure.lang.PersistentHashMap (create keyvals)))) //====== //(defn hash-set "Returns a new hash set with supplied keys." ([] #{}) ([& keys] (. clojure.lang.PersistentHashSet (create keys)))) //--- -(function __clojure_core_fn_172(){ -return (clojure.JS.def(clojure.core,"hash_set",clojure.JS.variadic(0,(function __clojure_core_fn_172_hash_set_174(){switch(arguments.length){ +(function __clojure_core_fn_711(){ +return (clojure.JS.def(clojure.core,"hash_set",clojure.JS.variadic(0,(function __clojure_core_fn_711_hash_set_713(){switch(arguments.length){ case 0:return (clojure.lang.PersistentHashSet.EMPTY)} var keys_1=clojure.JS.rest_args(this,arguments,0); return (clojure.lang.PersistentHashSet.create(keys_1))}))))}).apply(null,[]); @@ -180,24 +186,24 @@ return (clojure.lang.PersistentHashSet.create(keys_1))}))))}).apply(null,[]); //====== //(defn sorted-map "keyval => key val\n Returns a new sorted map with supplied mappings." ([& keyvals] (. clojure.lang.PersistentTreeMap (create keyvals)))) //--- -(function __clojure_core_fn_179(){ -return (clojure.JS.def(clojure.core,"sorted_map",clojure.JS.variadic(0,(function __clojure_core_fn_179_sorted_map_181(){ +(function __clojure_core_fn_718(){ +return (clojure.JS.def(clojure.core,"sorted_map",clojure.JS.variadic(0,(function __clojure_core_fn_718_sorted_map_720(){ var keyvals_1=clojure.JS.rest_args(this,arguments,0); return (clojure.lang.PersistentTreeMap.create(keyvals_1))}))))}).apply(null,[]); //====== //(defn sorted-set "Returns a new sorted set with supplied keys." ([& keys] (. clojure.lang.PersistentTreeSet (create keys)))) //--- -(function __clojure_core_fn_185(){ -return (clojure.JS.def(clojure.core,"sorted_set",clojure.JS.variadic(0,(function __clojure_core_fn_185_sorted_set_187(){ +(function __clojure_core_fn_724(){ +return (clojure.JS.def(clojure.core,"sorted_set",clojure.JS.variadic(0,(function __clojure_core_fn_724_sorted_set_726(){ var keys_1=clojure.JS.rest_args(this,arguments,0); return (clojure.lang.PersistentTreeSet.create(keys_1))}))))}).apply(null,[]); //====== //(defn sorted-map-by "keyval => key val\n Returns a new sorted map with supplied mappings, using the supplied comparator." ([comparator & keyvals] (. clojure.lang.PersistentTreeMap (create comparator keyvals)))) //--- -(function __clojure_core_fn_191(){ -return (clojure.JS.def(clojure.core,"sorted_map_by",clojure.JS.variadic(1,(function __clojure_core_fn_191_sorted_map_by_193(comparator_1){ +(function __clojure_core_fn_730(){ +return (clojure.JS.def(clojure.core,"sorted_map_by",clojure.JS.variadic(1,(function __clojure_core_fn_730_sorted_map_by_732(comparator_1){ var keyvals_2=clojure.JS.rest_args(this,arguments,1); return (clojure.lang.PersistentTreeMap.create(comparator_1,keyvals_2))}))))}).apply(null,[]); // Skipping: (def defmacro (fn [name & args] (list (quote do) (cons (quote clojure.core/defn) (cons name args)) (list (quote .) (list (quote var) name) (quote (setMacro)))))) @@ -208,40 +214,40 @@ return (clojure.lang.PersistentTreeMap.create(comparator_1,keyvals_2))}))))}).ap //====== //(defn nil? "Returns true if x is nil, false otherwise." {:tag Boolean} [x] (identical? x nil)) //--- -(function __clojure_core_fn_224(){ -return (clojure.JS.def(clojure.core,"nil_QMARK_",(function __clojure_core_fn_224_nil_QMARK_226(x_1){ +(function __clojure_core_fn_763(){ +return (clojure.JS.def(clojure.core,"nil_QMARK_",(function __clojure_core_fn_763_nil_QMARK_765(x_1){ return (clojure.core.identical_QMARK_.apply(null,[x_1,null]))})))}).apply(null,[]); //====== //(defn false? "Returns true if x is the value false, false otherwise." {:tag Boolean} [x] (identical? x false)) //--- -(function __clojure_core_fn_230(){ -return (clojure.JS.def(clojure.core,"false_QMARK_",(function __clojure_core_fn_230_false_QMARK_232(x_1){ +(function __clojure_core_fn_769(){ +return (clojure.JS.def(clojure.core,"false_QMARK_",(function __clojure_core_fn_769_false_QMARK_771(x_1){ return (clojure.core.identical_QMARK_.apply(null,[x_1,false]))})))}).apply(null,[]); //====== //(defn true? "Returns true if x is the value true, false otherwise." {:tag Boolean} [x] (identical? x true)) //--- -(function __clojure_core_fn_236(){ -return (clojure.JS.def(clojure.core,"true_QMARK_",(function __clojure_core_fn_236_true_QMARK_238(x_1){ +(function __clojure_core_fn_775(){ +return (clojure.JS.def(clojure.core,"true_QMARK_",(function __clojure_core_fn_775_true_QMARK_777(x_1){ return (clojure.core.identical_QMARK_.apply(null,[x_1,true]))})))}).apply(null,[]); //====== //(defn not "Returns true if x is logical false, false otherwise." {:tag Boolean} [x] (if x false true)) //--- -(function __clojure_core_fn_242(){ -return (clojure.JS.def(clojure.core,"not",(function __clojure_core_fn_242_not_244(x_1){ +(function __clojure_core_fn_781(){ +return (clojure.JS.def(clojure.core,"not",(function __clojure_core_fn_781_not_783(x_1){ return (((x_1)?(false):(true)))})))}).apply(null,[]); //====== //(defn str "With no args, returns the empty string. With one arg x, returns\n x.toString(). (str nil) returns the empty string. With more than\n one arg, returns the concatenation of the str values of the args." {:tag String} ([] "") ([x] (if (nil? x) "" (. x (toString)))) ([x & ys] ((fn [sb more] (if more (recur (. sb (append (str (first more)))) (rest more)) (str sb))) (clojure.lang.RT/makeStringBuilder (str x)) ys))) //--- -(function __clojure_core_fn_248(){ -return (clojure.JS.def(clojure.core,"str",clojure.JS.variadic(1,(function __clojure_core_fn_248_str_250(x_1){switch(arguments.length){ -case 1:return (((clojure.core.nil_QMARK_.apply(null,[x_1]))?(""):((x_1).toString()))) -case 0:return ("")} +(function __clojure_core_fn_787(){ +return (clojure.JS.def(clojure.core,"str",clojure.JS.variadic(1,(function __clojure_core_fn_787_str_789(x_1){switch(arguments.length){ +case 0:return ("") +case 1:return (((clojure.core.nil_QMARK_.apply(null,[x_1]))?(""):((x_1).toString())))} var ys_2=clojure.JS.rest_args(this,arguments,1); -return ((function __clojure_core_fn_248_str_250_fn_254(sb_1,more_2){ +return ((function __clojure_core_fn_787_str_789_fn_793(sb_1,more_2){ var _cnt,_rtn; do{_cnt=0;_rtn=((more_2)?((_cnt=1,_rtn=[(sb_1).append(clojure.core.str.apply(null,[clojure.core.first.apply(null,[more_2])])),clojure.core.rest.apply(null,[more_2])],sb_1=_rtn[0],more_2=_rtn[1])):(clojure.core.str.apply(null,[sb_1]))) }while(_cnt);return _rtn;}).apply(null,[clojure.lang.RT.makeStringBuilder(clojure.core.str.apply(null,[x_1])),ys_2]))}))))}).apply(null,[]); @@ -249,100 +255,101 @@ do{_cnt=0;_rtn=((more_2)?((_cnt=1,_rtn=[(sb_1).append(clojure.core.str.apply(nul //====== //(defn symbol? "Return true if x is a Symbol" [x] (instance? clojure.lang.Symbol x)) //--- -(function __clojure_core_fn_259(){ -return (clojure.JS.def(clojure.core,"symbol_QMARK_",(function __clojure_core_fn_259_symbol_QMARK_261(x_1){ +(function __clojure_core_fn_798(){ +return (clojure.JS.def(clojure.core,"symbol_QMARK_",(function __clojure_core_fn_798_symbol_QMARK_800(x_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Symbol,x_1]))})))}).apply(null,[]); //====== //(defn keyword? "Return true if x is a Keyword" [x] (instance? clojure.lang.Keyword x)) //--- -(function __clojure_core_fn_265(){ -return (clojure.JS.def(clojure.core,"keyword_QMARK_",(function __clojure_core_fn_265_keyword_QMARK_267(x_1){ +(function __clojure_core_fn_804(){ +return (clojure.JS.def(clojure.core,"keyword_QMARK_",(function __clojure_core_fn_804_keyword_QMARK_806(x_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Keyword,x_1]))})))}).apply(null,[]); // Skipping: (defn symbol "Returns a Symbol with the given namespace and name." ([name] (if (symbol? name) name (. clojure.lang.Symbol (intern name)))) ([ns name] (. clojure.lang.Symbol (intern ns name)))) // Skipping: (defn keyword "Returns a Keyword with the given namespace and name. Do not use :\n in the keyword strings, it will be added automatically." ([name] (if (keyword? name) name (. clojure.lang.Keyword (intern nil name)))) ([ns name] (. clojure.lang.Keyword (intern ns name)))) //====== -//(defn gensym "Returns a new symbol with a unique name. If a prefix string is\n supplied, the name is prefix# where # is some unique number. If\n prefix is not supplied, the prefix is 'G'." ([] (gensym "G__")) ([prefix-string] (. clojure.lang.Symbol (intern (str prefix-string (str (. clojure.lang.RT (nextID)))))))) +//(defn gensym "Returns a new symbol with a unique name. If a prefix string is\n supplied, the name is prefix# where # is some unique number. If\n prefix is not supplied, the prefix is 'G__'." ([] (gensym "G__")) ([prefix-string] (. clojure.lang.Symbol (intern (str prefix-string (str (. clojure.lang.RT (nextID)))))))) //--- -(function __clojure_core_fn_285(){ -return (clojure.JS.def(clojure.core,"gensym",(function __clojure_core_fn_285_gensym_287(prefix_string_1){switch(arguments.length){ +(function __clojure_core_fn_824(){ +return (clojure.JS.def(clojure.core,"gensym",(function __clojure_core_fn_824_gensym_826(prefix_string_1){switch(arguments.length){ case 0:return (clojure.core.gensym.apply(null,["G__"]))} return (clojure.lang.Symbol.intern(clojure.core.str.apply(null,[prefix_string_1,clojure.core.str.apply(null,[clojure.lang.RT.nextID()])])))})))}).apply(null,[]); -// Skipping: (defmacro cond "Takes a set of test/expr pairs. It evaluates each test one at a\n time. If a test returns logical true, cond evaluates and returns\n the value of the corresponding expr and doesn't evaluate any of the\n other tests or exprs. (cond) returns nil." [& clauses] (when clauses (list (quote if) (first clauses) (second clauses) (cons (quote clojure.core/cond) (rest (rest clauses)))))) +// Skipping: (defmacro cond "Takes a set of test/expr pairs. It evaluates each test one at a\n time. If a test returns logical true, cond evaluates and returns\n the value of the corresponding expr and doesn't evaluate any of the\n other tests or exprs. (cond) returns nil." [& clauses] (when clauses (list (quote if) (first clauses) (if (rest clauses) (second clauses) (throw (IllegalArgumentException. "cond requires an even number of forms"))) (cons (quote clojure.core/cond) (rest (rest clauses)))))) //====== //(defn spread {:private true} [arglist] (cond (nil? arglist) nil (nil? (rest arglist)) (seq (first arglist)) :else (cons (first arglist) (spread (rest arglist))))) //--- -(function __clojure_core_fn_301(){ -return (clojure.JS.def(clojure.core,"spread",(function __clojure_core_fn_301_spread_303(arglist_1){ +(function __clojure_core_fn_840(){ +return (clojure.JS.def(clojure.core,"spread",(function __clojure_core_fn_840_spread_842(arglist_1){ return (((clojure.core.nil_QMARK_.apply(null,[arglist_1]))?(null):(((clojure.core.nil_QMARK_.apply(null,[clojure.core.rest.apply(null,[arglist_1])]))?(clojure.core.seq.apply(null,[clojure.core.first.apply(null,[arglist_1])])):(((clojure.core.keyword("","else"))?(clojure.core.cons.apply(null,[clojure.core.first.apply(null,[arglist_1]),clojure.core.spread.apply(null,[clojure.core.rest.apply(null,[arglist_1])])])):(null)))))))})))}).apply(null,[]); // Skipping: (defn apply "Applies fn f to the argument list formed by prepending args to argseq." {:arglists (quote ([f args* argseq]))} [f & args] (. f (applyTo (spread args)))) //====== //(defn list* "Creates a new list containing the item prepended to more." [item & more] (spread (cons item more))) //--- -(function __clojure_core_fn_313(){ -return (clojure.JS.def(clojure.core,"list_STAR_",clojure.JS.variadic(1,(function __clojure_core_fn_313_list_STAR_315(item_1){ +(function __clojure_core_fn_852(){ +return (clojure.JS.def(clojure.core,"list_STAR_",clojure.JS.variadic(1,(function __clojure_core_fn_852_list_STAR_854(item_1){ var more_2=clojure.JS.rest_args(this,arguments,1); return (clojure.core.spread.apply(null,[clojure.core.cons.apply(null,[item_1,more_2])]))}))))}).apply(null,[]); -// Skipping: (defmacro delay "Takes a body of expressions and yields a Delay object than will\n invoke the body only the first time it is forced (with force), and\n will cache the result and return it on all subsequent force calls" [& body] (list (quote new) (quote clojure.lang.Delay) (list* (quote clojure.core/fn) [] body))) +// Skipping: (defmacro delay "Takes a body of expressions and yields a Delay object that will\n invoke the body only the first time it is forced (with force), and\n will cache the result and return it on all subsequent force calls" [& body] (list (quote new) (quote clojure.lang.Delay) (list* (quote clojure.core/fn) [] body))) //====== //(defn delay? "returns true if x is a Delay created with delay" [x] (instance? clojure.lang.Delay x)) //--- -(function __clojure_core_fn_328(){ -return (clojure.JS.def(clojure.core,"delay_QMARK_",(function __clojure_core_fn_328_delay_QMARK_330(x_1){ +(function __clojure_core_fn_867(){ +return (clojure.JS.def(clojure.core,"delay_QMARK_",(function __clojure_core_fn_867_delay_QMARK_869(x_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Delay,x_1]))})))}).apply(null,[]); //====== //(defn force "If x is a Delay, returns the (possibly cached) value of its expression, else returns x" [x] (. clojure.lang.Delay (force x))) //--- -(function __clojure_core_fn_334(){ -return (clojure.JS.def(clojure.core,"force",(function __clojure_core_fn_334_force_336(x_1){ +(function __clojure_core_fn_873(){ +return (clojure.JS.def(clojure.core,"force",(function __clojure_core_fn_873_force_875(x_1){ return (clojure.lang.Delay.force(x_1))})))}).apply(null,[]); //====== //(defn fnseq "Returns a seq object whose first is first and whose rest is the\n value produced by calling restfn with no arguments. restfn will be\n called at most once per step in the sequence, e.g. calling rest\n repeatedly on the head of the seq calls restfn once - the value it\n yields is cached." [first restfn] (new clojure.lang.FnSeq first restfn)) //--- -(function __clojure_core_fn_340(){ -return (clojure.JS.def(clojure.core,"fnseq",(function __clojure_core_fn_340_fnseq_342(first_1,restfn_2){ +(function __clojure_core_fn_879(){ +return (clojure.JS.def(clojure.core,"fnseq",(function __clojure_core_fn_879_fnseq_881(first_1,restfn_2){ return ((new clojure.lang.FnSeq(first_1,restfn_2)))})))}).apply(null,[]); // Skipping: (defmacro lazy-cons "Expands to code which produces a seq object whose first is\n first-expr and whose rest is rest-expr, neither of which is\n evaluated until first/rest is called. Each expr will be evaluated at most\n once per step in the sequence, e.g. calling first/rest repeatedly on the\n same node of the seq evaluates first/rest-expr once - the values they yield are\n cached." [first-expr & rest-expr] (list (quote new) (quote clojure.lang.LazyCons) (list (quote clojure.core/fn) (list [] first-expr) (list* [(gensym)] rest-expr)))) //====== //(defn cache-seq "Given a seq s, returns a lazy seq that will touch each element of s\n at most once, caching the results." [s] (when s (clojure.lang.CachedSeq. s))) //--- -(function __clojure_core_fn_355(){ -return (clojure.JS.def(clojure.core,"cache_seq",(function __clojure_core_fn_355_cache_seq_357(s_1){ +(function __clojure_core_fn_894(){ +return (clojure.JS.def(clojure.core,"cache_seq",(function __clojure_core_fn_894_cache_seq_896(s_1){ return (((s_1)?((new clojure.lang.CachedSeq(s_1))):(null)))})))}).apply(null,[]); //====== //(defn concat "Returns a lazy seq representing the concatenation of\tthe elements in the supplied colls." ([] nil) ([x] (seq x)) ([x y] (if (seq x) (lazy-cons (first x) (concat (rest x) y)) (seq y))) ([x y & zs] (let [cat (fn cat [xys zs] (if (seq xys) (lazy-cons (first xys) (cat (rest xys) zs)) (when zs (recur (first zs) (rest zs)))))] (cat (concat x y) zs)))) //--- -(function __clojure_core_fn_361(){ -return (clojure.JS.def(clojure.core,"concat",clojure.JS.variadic(2,(function __clojure_core_fn_361_concat_363(x_1,y_2){switch(arguments.length){ -case 2:return (((clojure.core.seq.apply(null,[x_1]))?((new clojure.lang.LazyCons((function __clojure_core_fn_361_concat_363_fn_368(G__367_1){switch(arguments.length){ -case 0:return (clojure.core.first.apply(null,[x_1]))} -return (clojure.core.concat.apply(null,[clojure.core.rest.apply(null,[x_1]),y_2]))})))):(clojure.core.seq.apply(null,[y_2])))) +(function __clojure_core_fn_900(){ +return (clojure.JS.def(clojure.core,"concat",clojure.JS.variadic(2,(function __clojure_core_fn_900_concat_902(x_1,y_2){switch(arguments.length){ case 0:return (null) -case 1:return (clojure.core.seq.apply(null,[x_1]))} +case 1:return (clojure.core.seq.apply(null,[x_1])) +case 2:return (((clojure.core.seq.apply(null,[x_1]))?((new clojure.lang.LazyCons((function __clojure_core_fn_900_concat_902_fn_907(G__906_1){switch(arguments.length){ +case 0:return (clojure.core.first.apply(null,[x_1]))} +return (clojure.core.concat.apply(null,[clojure.core.rest.apply(null,[x_1]),y_2]))})))):(clojure.core.seq.apply(null,[y_2]))))} var cat_4,zs_3=clojure.JS.rest_args(this,arguments,2); -return (((cat_4=(function __clojure_core_fn_361_concat_363_cat_373(xys_1,zs_2){ +return (((cat_4=(function __clojure_core_fn_900_concat_902_cat_912(xys_1,zs_2){ var _cnt,_rtn,cat_0=arguments.callee; -do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[xys_1]))?((new clojure.lang.LazyCons((function __clojure_core_fn_361_concat_363_cat_373_fn_375(G__374_1){switch(arguments.length){ +do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[xys_1]))?((new clojure.lang.LazyCons((function __clojure_core_fn_900_concat_902_cat_912_fn_914(G__913_1){switch(arguments.length){ case 0:return (clojure.core.first.apply(null,[xys_1]))} return (cat_0.apply(null,[clojure.core.rest.apply(null,[xys_1]),zs_2]))})))):(((zs_2)?((_cnt=1,_rtn=[clojure.core.first.apply(null,[zs_2]),clojure.core.rest.apply(null,[zs_2])],xys_1=_rtn[0],zs_2=_rtn[1])):(null)))) }while(_cnt);return _rtn;})), cat_4.apply(null,[clojure.core.concat.apply(null,[x_1,y_2]),zs_3])))}))))}).apply(null,[]); +// Skipping: (defmacro if-not "Evaluates test. If logical false, evaluates and returns then expr, otherwise else expr, if supplied, else nil." ([test then] (clojure.core/concat (clojure.core/list (quote clojure.core/if-not)) (clojure.core/list test) (clojure.core/list then) (clojure.core/list (quote nil)))) ([test then else] (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/not)) (clojure.core/list test))) (clojure.core/list then) (clojure.core/list else)))) //====== -//(defn = "Equality. Returns true if x equals y, false if not. Same as\n Java x.equals(y) except it also works for nil, and compares\n numbers in a type-independent manner. Clojure's immutable data\n structures define equals() (and thus =) as a value, not an identity,\n comparison." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Util)) (clojure.core/list (quote clojure.core/equal)) (clojure.core/list x) (clojure.core/list y))), :tag Boolean, :inline-arities #{2}} ([x] true) ([x y] (. clojure.lang.Util (equal x y))) ([x y & more] (if (= x y) (if (rest more) (recur y (first more) (rest more)) (= y (first more))) false))) +//(defn = "Equality. Returns true if x equals y, false if not. Same as\n Java x.equals(y) except it also works for nil, and compares\n numbers in a type-independent manner. Clojure's immutable data\n structures define equals() (and thus =) as a value, not an identity,\n comparison." {:tag Boolean, :inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Util)) (clojure.core/list (quote clojure.core/equal)) (clojure.core/list x) (clojure.core/list y))), :inline-arities #{2}} ([x] true) ([x y] (. clojure.lang.Util (equal x y))) ([x y & more] (if (= x y) (if (rest more) (recur y (first more) (rest more)) (= y (first more))) false))) //--- -(function __clojure_core_fn_382(){ -return (clojure.JS.def(clojure.core,"_EQ_",clojure.JS.variadic(2,(function __clojure_core_fn_382_EQ_387(x_1,y_2){switch(arguments.length){ -case 2:return (clojure.lang.Util.equal(x_1,y_2)) -case 1:return (true)} +(function __clojure_core_fn_932(){ +return (clojure.JS.def(clojure.core,"_EQ_",clojure.JS.variadic(2,(function __clojure_core_fn_932_EQ_937(x_1,y_2){switch(arguments.length){ +case 1:return (true) +case 2:return (clojure.lang.Util.equal(x_1,y_2))} var _cnt,_rtn,more_3=clojure.JS.rest_args(this,arguments,2); do{_cnt=0;_rtn=((clojure.lang.Util.equal(x_1,y_2))?(((clojure.core.rest.apply(null,[more_3]))?((_cnt=1,_rtn=[y_2,clojure.core.first.apply(null,[more_3]),clojure.core.rest.apply(null,[more_3])],x_1=_rtn[0],y_2=_rtn[1],more_3=_rtn[2])):(clojure.lang.Util.equal(y_2,clojure.core.first.apply(null,[more_3]))))):(false)) }while(_cnt);return _rtn;}))))}).apply(null,[]); @@ -350,33 +357,33 @@ do{_cnt=0;_rtn=((clojure.lang.Util.equal(x_1,y_2))?(((clojure.core.rest.apply(nu //====== //(defn not= "Same as (not (= obj1 obj2))" {:tag Boolean} ([x] false) ([x y] (not (= x y))) ([x y & more] (not (apply = x y more)))) //--- -(function __clojure_core_fn_393(){ -return (clojure.JS.def(clojure.core,"not_EQ_",clojure.JS.variadic(2,(function __clojure_core_fn_393_not_EQ_395(x_1,y_2){switch(arguments.length){ -case 2:return (clojure.core.not.apply(null,[clojure.lang.Util.equal(x_1,y_2)])) -case 1:return (false)} +(function __clojure_core_fn_943(){ +return (clojure.JS.def(clojure.core,"not_EQ_",clojure.JS.variadic(2,(function __clojure_core_fn_943_not_EQ_945(x_1,y_2){switch(arguments.length){ +case 1:return (false) +case 2:return (clojure.core.not.apply(null,[clojure.lang.Util.equal(x_1,y_2)]))} var more_3=clojure.JS.rest_args(this,arguments,2); return (clojure.core.not.apply(null,[clojure.core.apply.apply(null,[clojure.core._EQ_,x_1,y_2,more_3])]))}))))}).apply(null,[]); //====== -//(defn compare "Comparator. Returns 0 if x equals y, -1 if x is logically 'less\n than' y, else 1. Same as Java x.compareTo(y) except it also works\n for nil, and compares numbers in a type-independent manner. x must\n implement Comparable" {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Util)) (clojure.core/list (quote clojure.core/compare)) (clojure.core/list x) (clojure.core/list y))), :tag Integer} [x y] (. clojure.lang.Util (compare x y))) +//(defn compare "Comparator. Returns 0 if x equals y, -1 if x is logically 'less\n than' y, else 1. Same as Java x.compareTo(y) except it also works\n for nil, and compares numbers in a type-independent manner. x must\n implement Comparable" {:tag Integer, :inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Util)) (clojure.core/list (quote clojure.core/compare)) (clojure.core/list x) (clojure.core/list y)))} [x y] (. clojure.lang.Util (compare x y))) //--- -(function __clojure_core_fn_401(){ -return (clojure.JS.def(clojure.core,"compare",(function __clojure_core_fn_401_compare_406(x_1,y_2){ +(function __clojure_core_fn_951(){ +return (clojure.JS.def(clojure.core,"compare",(function __clojure_core_fn_951_compare_956(x_1,y_2){ return (clojure.lang.Util.compare(x_1,y_2))})))}).apply(null,[]); -// Skipping: (defmacro and "Evaluates exprs one at a time, from left to right. If a form\n returns logical false (nil or false), and returns that value and\n doesn't evaluate any of the other expressions, otherwise it returns\n the value of the last expr. (and) returns true." ([] true) ([x] x) ([x & rest] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote and__410)) (clojure.core/list x)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (quote and__410)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/and)) rest)) (clojure.core/list (quote and__410))))))) -// Skipping: (defmacro or "Evaluates exprs one at a time, from left to right. If a form\n returns a logical true value, or returns that value and doesn't\n evaluate any of the other expressions, otherwise it returns the\n value of the last expression. (or) returns nil." ([] nil) ([x] x) ([x & rest] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote or__424)) (clojure.core/list x)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (quote or__424)) (clojure.core/list (quote or__424)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/or)) rest))))))) +// Skipping: (defmacro and "Evaluates exprs one at a time, from left to right. If a form\n returns logical false (nil or false), and returns that value and\n doesn't evaluate any of the other expressions, otherwise it returns\n the value of the last expr. (and) returns true." ([] true) ([x] x) ([x & rest] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote and__960__auto__)) (clojure.core/list x)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (quote and__960__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/and)) rest)) (clojure.core/list (quote and__960__auto__))))))) +// Skipping: (defmacro or "Evaluates exprs one at a time, from left to right. If a form\n returns a logical true value, or returns that value and doesn't\n evaluate any of the other expressions, otherwise it returns the\n value of the last expression. (or) returns nil." ([] nil) ([x] x) ([x & rest] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote or__974__auto__)) (clojure.core/list x)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (quote or__974__auto__)) (clojure.core/list (quote or__974__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/or)) rest))))))) //====== //(defn reduce "f should be a function of 2 arguments. If val is not supplied,\n returns the result of applying f to the first 2 items in coll, then\n applying f to that result and the 3rd item, etc. If coll contains no\n items, f must accept no arguments as well, and reduce returns the\n result of calling f with no arguments. If coll has only 1 item, it\n is returned and f is not called. If val is supplied, returns the\n result of applying f to val and the first item in coll, then\n applying f to that result and the 2nd item, etc. If coll contains no\n items, returns val and f is not called." ([f coll] (let [s (seq coll)] (if s (if (instance? clojure.lang.IReduce s) (. s (reduce f)) (reduce f (first s) (rest s))) (f)))) ([f val coll] (let [s (seq coll)] (if (instance? clojure.lang.IReduce s) (. s (reduce f val)) ((fn [f val s] (if s (recur f (f val (first s)) (rest s)) val)) f val s))))) //--- -(function __clojure_core_fn_438(){ -return (clojure.JS.def(clojure.core,"reduce",(function __clojure_core_fn_438_reduce_440(f_1,val_2,coll_3){switch(arguments.length){ +(function __clojure_core_fn_988(){ +return (clojure.JS.def(clojure.core,"reduce",(function __clojure_core_fn_988_reduce_990(f_1,val_2,coll_3){switch(arguments.length){ case 2:var s_3,coll_2=arguments[1]; return (((s_3=clojure.core.seq.apply(null,[coll_2])), ((s_3)?(((clojure.core.instance_QMARK_.apply(null,[clojure.lang.IReduce,s_3]))?((s_3).reduce(f_1)):(clojure.core.reduce.apply(null,[f_1,clojure.core.first.apply(null,[s_3]),clojure.core.rest.apply(null,[s_3])])))):(f_1.apply(null,[])))))} var s_4; return (((s_4=clojure.core.seq.apply(null,[coll_3])), -((clojure.core.instance_QMARK_.apply(null,[clojure.lang.IReduce,s_4]))?((s_4).reduce(f_1,val_2)):((function __clojure_core_fn_438_reduce_440_fn_443(f_1,val_2,s_3){ +((clojure.core.instance_QMARK_.apply(null,[clojure.lang.IReduce,s_4]))?((s_4).reduce(f_1,val_2)):((function __clojure_core_fn_988_reduce_990_fn_993(f_1,val_2,s_3){ var _cnt,_rtn; do{_cnt=0;_rtn=((s_3)?((_cnt=1,_rtn=[f_1,f_1.apply(null,[val_2,clojure.core.first.apply(null,[s_3])]),clojure.core.rest.apply(null,[s_3])],f_1=_rtn[0],val_2=_rtn[1],s_3=_rtn[2])):(val_2)) }while(_cnt);return _rtn;}).apply(null,[f_1,val_2,s_4])))))})))}).apply(null,[]); @@ -384,26 +391,26 @@ do{_cnt=0;_rtn=((s_3)?((_cnt=1,_rtn=[f_1,f_1.apply(null,[val_2,clojure.core.firs //====== //(defn reverse "Returns a seq of the items in coll in reverse order. Not lazy." [coll] (reduce conj nil coll)) //--- -(function __clojure_core_fn_448(){ -return (clojure.JS.def(clojure.core,"reverse",(function __clojure_core_fn_448_reverse_450(coll_1){ +(function __clojure_core_fn_998(){ +return (clojure.JS.def(clojure.core,"reverse",(function __clojure_core_fn_998_reverse_1000(coll_1){ return (clojure.core.reduce.apply(null,[clojure.core.conj,null,coll_1]))})))}).apply(null,[]); //====== //(defn + "Returns the sum of nums. (+) returns 0." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/add)) (clojure.core/list x) (clojure.core/list y))))), :inline-arities #{2}} ([] 0) ([x] (clojure.lang.RT/numberCast x)) ([x y] (. clojure.lang.Numbers (add x y))) ([x y & more] (reduce + (+ x y) more))) //--- -(function __clojure_core_fn_454(){ -return (clojure.JS.def(clojure.core,"_PLUS_",clojure.JS.variadic(2,(function __clojure_core_fn_454_PLUS_459(x_1,y_2){switch(arguments.length){ +(function __clojure_core_fn_1004(){ +return (clojure.JS.def(clojure.core,"_PLUS_",clojure.JS.variadic(2,(function __clojure_core_fn_1004_PLUS_1009(x_1,y_2){switch(arguments.length){ case 0:return ((0)) -case 2:return (clojure.lang.Numbers.add(x_1,y_2)) -case 1:return (clojure.lang.RT.numberCast(x_1))} +case 1:return (clojure.lang.RT.numberCast(x_1)) +case 2:return (clojure.lang.Numbers.add(x_1,y_2))} var more_3=clojure.JS.rest_args(this,arguments,2); return (clojure.core.reduce.apply(null,[clojure.core._PLUS_,clojure.lang.Numbers.add(x_1,y_2),more_3]))}))))}).apply(null,[]); //====== //(defn * "Returns the product of nums. (*) returns 1." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/multiply)) (clojure.core/list x) (clojure.core/list y))))), :inline-arities #{2}} ([] 1) ([x] (clojure.lang.RT/numberCast x)) ([x y] (. clojure.lang.Numbers (multiply x y))) ([x y & more] (reduce * (* x y) more))) //--- -(function __clojure_core_fn_466(){ -return (clojure.JS.def(clojure.core,"_STAR_",clojure.JS.variadic(2,(function __clojure_core_fn_466_STAR_471(x_1,y_2){switch(arguments.length){ +(function __clojure_core_fn_1016(){ +return (clojure.JS.def(clojure.core,"_STAR_",clojure.JS.variadic(2,(function __clojure_core_fn_1016_STAR_1021(x_1,y_2){switch(arguments.length){ case 0:return ((1)) case 1:return (clojure.lang.RT.numberCast(x_1)) case 2:return (clojure.lang.Numbers.multiply(x_1,y_2))} @@ -413,28 +420,28 @@ return (clojure.core.reduce.apply(null,[clojure.core._STAR_,clojure.lang.Numbers //====== //(defn / "If no denominators are supplied, returns 1/numerator,\n else returns numerator divided by all of the denominators." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/divide)) (clojure.core/list x) (clojure.core/list y))))), :inline-arities #{2}} ([x] (/ 1 x)) ([x y] (. clojure.lang.Numbers (divide x y))) ([x y & more] (reduce / (/ x y) more))) //--- -(function __clojure_core_fn_478(){ -return (clojure.JS.def(clojure.core,"_SLASH_",clojure.JS.variadic(2,(function __clojure_core_fn_478_SLASH_483(x_1,y_2){switch(arguments.length){ -case 2:return (clojure.lang.Numbers.divide(x_1,y_2)) -case 1:return (clojure.lang.Numbers.divide((1),x_1))} +(function __clojure_core_fn_1028(){ +return (clojure.JS.def(clojure.core,"_SLASH_",clojure.JS.variadic(2,(function __clojure_core_fn_1028_SLASH_1033(x_1,y_2){switch(arguments.length){ +case 1:return (clojure.lang.Numbers.divide((1),x_1)) +case 2:return (clojure.lang.Numbers.divide(x_1,y_2))} var more_3=clojure.JS.rest_args(this,arguments,2); return (clojure.core.reduce.apply(null,[clojure.core._SLASH_,clojure.lang.Numbers.divide(x_1,y_2),more_3]))}))))}).apply(null,[]); //====== //(defn - "If no ys are supplied, returns the negation of x, else subtracts\n the ys from x and returns the result." {:inline (fn [& args] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/minus)) args)))), :inline-arities #{1 2}} ([x] (. clojure.lang.Numbers (minus x))) ([x y] (. clojure.lang.Numbers (minus x y))) ([x y & more] (reduce - (- x y) more))) //--- -(function __clojure_core_fn_489(){ -return (clojure.JS.def(clojure.core,"_",clojure.JS.variadic(2,(function __clojure_core_fn_489_494(x_1,y_2){switch(arguments.length){ -case 2:return (clojure.lang.Numbers.minus(x_1,y_2)) -case 1:return (clojure.lang.Numbers.minus(x_1))} +(function __clojure_core_fn_1039(){ +return (clojure.JS.def(clojure.core,"_",clojure.JS.variadic(2,(function __clojure_core_fn_1039_1044(x_1,y_2){switch(arguments.length){ +case 1:return (clojure.lang.Numbers.minus(x_1)) +case 2:return (clojure.lang.Numbers.minus(x_1,y_2))} var more_3=clojure.JS.rest_args(this,arguments,2); return (clojure.core.reduce.apply(null,[clojure.core._,clojure.lang.Numbers.minus(x_1,y_2),more_3]))}))))}).apply(null,[]); //====== //(defn < "Returns non-nil if nums are in monotonically increasing order,\n otherwise false." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/lt)) (clojure.core/list x) (clojure.core/list y))))), :inline-arities #{2}} ([x] true) ([x y] (. clojure.lang.Numbers (lt x y))) ([x y & more] (if (< x y) (if (rest more) (recur y (first more) (rest more)) (< y (first more))) false))) //--- -(function __clojure_core_fn_500(){ -return (clojure.JS.def(clojure.core,"_LT_",clojure.JS.variadic(2,(function __clojure_core_fn_500_LT_505(x_1,y_2){switch(arguments.length){ +(function __clojure_core_fn_1050(){ +return (clojure.JS.def(clojure.core,"_LT_",clojure.JS.variadic(2,(function __clojure_core_fn_1050_LT_1055(x_1,y_2){switch(arguments.length){ case 1:return (true) case 2:return (clojure.lang.Numbers.lt(x_1,y_2))} var _cnt,_rtn,more_3=clojure.JS.rest_args(this,arguments,2); @@ -444,8 +451,8 @@ do{_cnt=0;_rtn=((clojure.lang.Numbers.lt(x_1,y_2))?(((clojure.core.rest.apply(nu //====== //(defn <= "Returns non-nil if nums are in monotonically non-decreasing order,\n otherwise false." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/lte)) (clojure.core/list x) (clojure.core/list y))))), :inline-arities #{2}} ([x] true) ([x y] (. clojure.lang.Numbers (lte x y))) ([x y & more] (if (<= x y) (if (rest more) (recur y (first more) (rest more)) (<= y (first more))) false))) //--- -(function __clojure_core_fn_511(){ -return (clojure.JS.def(clojure.core,"_LT__EQ_",clojure.JS.variadic(2,(function __clojure_core_fn_511_LT_EQ_516(x_1,y_2){switch(arguments.length){ +(function __clojure_core_fn_1061(){ +return (clojure.JS.def(clojure.core,"_LT__EQ_",clojure.JS.variadic(2,(function __clojure_core_fn_1061_LT_EQ_1066(x_1,y_2){switch(arguments.length){ case 1:return (true) case 2:return (clojure.lang.Numbers.lte(x_1,y_2))} var _cnt,_rtn,more_3=clojure.JS.rest_args(this,arguments,2); @@ -455,10 +462,10 @@ do{_cnt=0;_rtn=((clojure.lang.Numbers.lte(x_1,y_2))?(((clojure.core.rest.apply(n //====== //(defn > "Returns non-nil if nums are in monotonically decreasing order,\n otherwise false." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/gt)) (clojure.core/list x) (clojure.core/list y))))), :inline-arities #{2}} ([x] true) ([x y] (. clojure.lang.Numbers (gt x y))) ([x y & more] (if (> x y) (if (rest more) (recur y (first more) (rest more)) (> y (first more))) false))) //--- -(function __clojure_core_fn_522(){ -return (clojure.JS.def(clojure.core,"_GT_",clojure.JS.variadic(2,(function __clojure_core_fn_522_GT_527(x_1,y_2){switch(arguments.length){ -case 2:return (clojure.lang.Numbers.gt(x_1,y_2)) -case 1:return (true)} +(function __clojure_core_fn_1072(){ +return (clojure.JS.def(clojure.core,"_GT_",clojure.JS.variadic(2,(function __clojure_core_fn_1072_GT_1077(x_1,y_2){switch(arguments.length){ +case 1:return (true) +case 2:return (clojure.lang.Numbers.gt(x_1,y_2))} var _cnt,_rtn,more_3=clojure.JS.rest_args(this,arguments,2); do{_cnt=0;_rtn=((clojure.lang.Numbers.gt(x_1,y_2))?(((clojure.core.rest.apply(null,[more_3]))?((_cnt=1,_rtn=[y_2,clojure.core.first.apply(null,[more_3]),clojure.core.rest.apply(null,[more_3])],x_1=_rtn[0],y_2=_rtn[1],more_3=_rtn[2])):(clojure.lang.Numbers.gt(y_2,clojure.core.first.apply(null,[more_3]))))):(false)) }while(_cnt);return _rtn;}))))}).apply(null,[]); @@ -466,10 +473,10 @@ do{_cnt=0;_rtn=((clojure.lang.Numbers.gt(x_1,y_2))?(((clojure.core.rest.apply(nu //====== //(defn >= "Returns non-nil if nums are in monotonically non-increasing order,\n otherwise false." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/gte)) (clojure.core/list x) (clojure.core/list y))))), :inline-arities #{2}} ([x] true) ([x y] (. clojure.lang.Numbers (gte x y))) ([x y & more] (if (>= x y) (if (rest more) (recur y (first more) (rest more)) (>= y (first more))) false))) //--- -(function __clojure_core_fn_533(){ -return (clojure.JS.def(clojure.core,"_GT__EQ_",clojure.JS.variadic(2,(function __clojure_core_fn_533_GT_EQ_538(x_1,y_2){switch(arguments.length){ -case 2:return (clojure.lang.Numbers.gte(x_1,y_2)) -case 1:return (true)} +(function __clojure_core_fn_1083(){ +return (clojure.JS.def(clojure.core,"_GT__EQ_",clojure.JS.variadic(2,(function __clojure_core_fn_1083_GT_EQ_1088(x_1,y_2){switch(arguments.length){ +case 1:return (true) +case 2:return (clojure.lang.Numbers.gte(x_1,y_2))} var _cnt,_rtn,more_3=clojure.JS.rest_args(this,arguments,2); do{_cnt=0;_rtn=((clojure.lang.Numbers.gte(x_1,y_2))?(((clojure.core.rest.apply(null,[more_3]))?((_cnt=1,_rtn=[y_2,clojure.core.first.apply(null,[more_3]),clojure.core.rest.apply(null,[more_3])],x_1=_rtn[0],y_2=_rtn[1],more_3=_rtn[2])):(clojure.lang.Numbers.gte(y_2,clojure.core.first.apply(null,[more_3]))))):(false)) }while(_cnt);return _rtn;}))))}).apply(null,[]); @@ -477,10 +484,10 @@ do{_cnt=0;_rtn=((clojure.lang.Numbers.gte(x_1,y_2))?(((clojure.core.rest.apply(n //====== //(defn == "Returns non-nil if nums all have the same value, otherwise false" {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/equiv)) (clojure.core/list x) (clojure.core/list y))))), :inline-arities #{2}} ([x] true) ([x y] (. clojure.lang.Numbers (equiv x y))) ([x y & more] (if (== x y) (if (rest more) (recur y (first more) (rest more)) (== y (first more))) false))) //--- -(function __clojure_core_fn_544(){ -return (clojure.JS.def(clojure.core,"_EQ__EQ_",clojure.JS.variadic(2,(function __clojure_core_fn_544_EQ_EQ_549(x_1,y_2){switch(arguments.length){ -case 2:return (clojure.lang.Numbers.equiv(x_1,y_2)) -case 1:return (true)} +(function __clojure_core_fn_1094(){ +return (clojure.JS.def(clojure.core,"_EQ__EQ_",clojure.JS.variadic(2,(function __clojure_core_fn_1094_EQ_EQ_1099(x_1,y_2){switch(arguments.length){ +case 1:return (true) +case 2:return (clojure.lang.Numbers.equiv(x_1,y_2))} var _cnt,_rtn,more_3=clojure.JS.rest_args(this,arguments,2); do{_cnt=0;_rtn=((clojure.lang.Numbers.equiv(x_1,y_2))?(((clojure.core.rest.apply(null,[more_3]))?((_cnt=1,_rtn=[y_2,clojure.core.first.apply(null,[more_3]),clojure.core.rest.apply(null,[more_3])],x_1=_rtn[0],y_2=_rtn[1],more_3=_rtn[2])):(clojure.lang.Numbers.equiv(y_2,clojure.core.first.apply(null,[more_3]))))):(false)) }while(_cnt);return _rtn;}))))}).apply(null,[]); @@ -488,18 +495,18 @@ do{_cnt=0;_rtn=((clojure.lang.Numbers.equiv(x_1,y_2))?(((clojure.core.rest.apply //====== //(defn max "Returns the greatest of the nums." ([x] x) ([x y] (if (> x y) x y)) ([x y & more] (reduce max (max x y) more))) //--- -(function __clojure_core_fn_555(){ -return (clojure.JS.def(clojure.core,"max",clojure.JS.variadic(2,(function __clojure_core_fn_555_max_557(x_1,y_2){switch(arguments.length){ -case 2:return (((clojure.lang.Numbers.gt(x_1,y_2))?(x_1):(y_2))) -case 1:return (x_1)} +(function __clojure_core_fn_1105(){ +return (clojure.JS.def(clojure.core,"max",clojure.JS.variadic(2,(function __clojure_core_fn_1105_max_1107(x_1,y_2){switch(arguments.length){ +case 1:return (x_1) +case 2:return (((clojure.lang.Numbers.gt(x_1,y_2))?(x_1):(y_2)))} var more_3=clojure.JS.rest_args(this,arguments,2); return (clojure.core.reduce.apply(null,[clojure.core.max,clojure.core.max.apply(null,[x_1,y_2]),more_3]))}))))}).apply(null,[]); //====== //(defn min "Returns the least of the nums." ([x] x) ([x y] (if (< x y) x y)) ([x y & more] (reduce min (min x y) more))) //--- -(function __clojure_core_fn_563(){ -return (clojure.JS.def(clojure.core,"min",clojure.JS.variadic(2,(function __clojure_core_fn_563_min_565(x_1,y_2){switch(arguments.length){ +(function __clojure_core_fn_1113(){ +return (clojure.JS.def(clojure.core,"min",clojure.JS.variadic(2,(function __clojure_core_fn_1113_min_1115(x_1,y_2){switch(arguments.length){ case 1:return (x_1) case 2:return (((clojure.lang.Numbers.lt(x_1,y_2))?(x_1):(y_2)))} var more_3=clojure.JS.rest_args(this,arguments,2); @@ -508,237 +515,244 @@ return (clojure.core.reduce.apply(null,[clojure.core.min,clojure.core.min.apply( //====== //(defn inc "Returns a number one greater than num." {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/inc)) (clojure.core/list x)))))} [x] (. clojure.lang.Numbers (inc x))) //--- -(function __clojure_core_fn_571(){ -return (clojure.JS.def(clojure.core,"inc",(function __clojure_core_fn_571_inc_576(x_1){ +(function __clojure_core_fn_1121(){ +return (clojure.JS.def(clojure.core,"inc",(function __clojure_core_fn_1121_inc_1126(x_1){ return (clojure.lang.Numbers.inc(x_1))})))}).apply(null,[]); //====== //(defn dec "Returns a number one less than num." {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/dec)) (clojure.core/list x)))))} [x] (. clojure.lang.Numbers (dec x))) //--- -(function __clojure_core_fn_580(){ -return (clojure.JS.def(clojure.core,"dec",(function __clojure_core_fn_580_dec_585(x_1){ +(function __clojure_core_fn_1130(){ +return (clojure.JS.def(clojure.core,"dec",(function __clojure_core_fn_1130_dec_1135(x_1){ return (clojure.lang.Numbers.dec(x_1))})))}).apply(null,[]); //====== //(defn unchecked-inc "Returns a number one greater than x, an int or long. \n Note - uses a primitive operator subject to overflow." {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked_inc)) (clojure.core/list x)))))} [x] (. clojure.lang.Numbers (unchecked_inc x))) //--- -(function __clojure_core_fn_589(){ -return (clojure.JS.def(clojure.core,"unchecked_inc",(function __clojure_core_fn_589_unchecked_inc_594(x_1){ +(function __clojure_core_fn_1139(){ +return (clojure.JS.def(clojure.core,"unchecked_inc",(function __clojure_core_fn_1139_unchecked_inc_1144(x_1){ return (clojure.lang.Numbers.unchecked_inc(x_1))})))}).apply(null,[]); //====== //(defn unchecked-dec "Returns a number one less than x, an int or long. \n Note - uses a primitive operator subject to overflow." {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked_dec)) (clojure.core/list x)))))} [x] (. clojure.lang.Numbers (unchecked_dec x))) //--- -(function __clojure_core_fn_598(){ -return (clojure.JS.def(clojure.core,"unchecked_dec",(function __clojure_core_fn_598_unchecked_dec_603(x_1){ +(function __clojure_core_fn_1148(){ +return (clojure.JS.def(clojure.core,"unchecked_dec",(function __clojure_core_fn_1148_unchecked_dec_1153(x_1){ return (clojure.lang.Numbers.unchecked_dec(x_1))})))}).apply(null,[]); //====== //(defn unchecked-negate "Returns the negation of x, an int or long. \n Note - uses a primitive operator subject to overflow." {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked_negate)) (clojure.core/list x)))))} [x] (. clojure.lang.Numbers (unchecked_negate x))) //--- -(function __clojure_core_fn_607(){ -return (clojure.JS.def(clojure.core,"unchecked_negate",(function __clojure_core_fn_607_unchecked_negate_612(x_1){ +(function __clojure_core_fn_1157(){ +return (clojure.JS.def(clojure.core,"unchecked_negate",(function __clojure_core_fn_1157_unchecked_negate_1162(x_1){ return (clojure.lang.Numbers.unchecked_negate(x_1))})))}).apply(null,[]); //====== //(defn unchecked-add "Returns the sum of x and y, both int or long. \n Note - uses a primitive operator subject to overflow." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked_add)) (clojure.core/list x) (clojure.core/list y)))))} [x y] (. clojure.lang.Numbers (unchecked_add x y))) //--- -(function __clojure_core_fn_616(){ -return (clojure.JS.def(clojure.core,"unchecked_add",(function __clojure_core_fn_616_unchecked_add_621(x_1,y_2){ +(function __clojure_core_fn_1166(){ +return (clojure.JS.def(clojure.core,"unchecked_add",(function __clojure_core_fn_1166_unchecked_add_1171(x_1,y_2){ return (clojure.lang.Numbers.unchecked_add(x_1,y_2))})))}).apply(null,[]); //====== //(defn unchecked-subtract "Returns the difference of x and y, both int or long. \n Note - uses a primitive operator subject to overflow." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked_subtract)) (clojure.core/list x) (clojure.core/list y)))))} [x y] (. clojure.lang.Numbers (unchecked_subtract x y))) //--- -(function __clojure_core_fn_625(){ -return (clojure.JS.def(clojure.core,"unchecked_subtract",(function __clojure_core_fn_625_unchecked_subtract_630(x_1,y_2){ +(function __clojure_core_fn_1175(){ +return (clojure.JS.def(clojure.core,"unchecked_subtract",(function __clojure_core_fn_1175_unchecked_subtract_1180(x_1,y_2){ return (clojure.lang.Numbers.unchecked_subtract(x_1,y_2))})))}).apply(null,[]); //====== //(defn unchecked-multiply "Returns the product of x and y, both int or long. \n Note - uses a primitive operator subject to overflow." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked_multiply)) (clojure.core/list x) (clojure.core/list y)))))} [x y] (. clojure.lang.Numbers (unchecked_multiply x y))) //--- -(function __clojure_core_fn_634(){ -return (clojure.JS.def(clojure.core,"unchecked_multiply",(function __clojure_core_fn_634_unchecked_multiply_639(x_1,y_2){ +(function __clojure_core_fn_1184(){ +return (clojure.JS.def(clojure.core,"unchecked_multiply",(function __clojure_core_fn_1184_unchecked_multiply_1189(x_1,y_2){ return (clojure.lang.Numbers.unchecked_multiply(x_1,y_2))})))}).apply(null,[]); //====== //(defn unchecked-divide "Returns the division of x by y, both int or long. \n Note - uses a primitive operator subject to truncation." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked_divide)) (clojure.core/list x) (clojure.core/list y)))))} [x y] (. clojure.lang.Numbers (unchecked_divide x y))) //--- -(function __clojure_core_fn_643(){ -return (clojure.JS.def(clojure.core,"unchecked_divide",(function __clojure_core_fn_643_unchecked_divide_648(x_1,y_2){ +(function __clojure_core_fn_1193(){ +return (clojure.JS.def(clojure.core,"unchecked_divide",(function __clojure_core_fn_1193_unchecked_divide_1198(x_1,y_2){ return (clojure.lang.Numbers.unchecked_divide(x_1,y_2))})))}).apply(null,[]); //====== -//(defn pos? "Returns true if num is greater than zero, else false" {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/isPos)) (clojure.core/list x))))), :tag Boolean} [x] (. clojure.lang.Numbers (isPos x))) +//(defn unchecked-remainder "Returns the remainder of division of x by y, both int or long. \n Note - uses a primitive operator subject to truncation." {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked_remainder)) (clojure.core/list x) (clojure.core/list y)))))} [x y] (. clojure.lang.Numbers (unchecked_remainder x y))) //--- -(function __clojure_core_fn_652(){ -return (clojure.JS.def(clojure.core,"pos_QMARK_",(function __clojure_core_fn_652_pos_QMARK_657(x_1){ +(function __clojure_core_fn_1202(){ +return (clojure.JS.def(clojure.core,"unchecked_remainder",(function __clojure_core_fn_1202_unchecked_remainder_1207(x_1,y_2){ +return (clojure.lang.Numbers.unchecked_remainder(x_1,y_2))})))}).apply(null,[]); + +//====== +//(defn pos? "Returns true if num is greater than zero, else false" {:tag Boolean, :inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/isPos)) (clojure.core/list x)))))} [x] (. clojure.lang.Numbers (isPos x))) +//--- +(function __clojure_core_fn_1211(){ +return (clojure.JS.def(clojure.core,"pos_QMARK_",(function __clojure_core_fn_1211_pos_QMARK_1216(x_1){ return (clojure.lang.Numbers.isPos(x_1))})))}).apply(null,[]); //====== -//(defn neg? "Returns true if num is less than zero, else false" {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/isNeg)) (clojure.core/list x))))), :tag Boolean} [x] (. clojure.lang.Numbers (isNeg x))) +//(defn neg? "Returns true if num is less than zero, else false" {:tag Boolean, :inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/isNeg)) (clojure.core/list x)))))} [x] (. clojure.lang.Numbers (isNeg x))) //--- -(function __clojure_core_fn_661(){ -return (clojure.JS.def(clojure.core,"neg_QMARK_",(function __clojure_core_fn_661_neg_QMARK_666(x_1){ +(function __clojure_core_fn_1220(){ +return (clojure.JS.def(clojure.core,"neg_QMARK_",(function __clojure_core_fn_1220_neg_QMARK_1225(x_1){ return (clojure.lang.Numbers.isNeg(x_1))})))}).apply(null,[]); //====== -//(defn zero? "Returns true if num is zero, else false" {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/isZero)) (clojure.core/list x))))), :tag Boolean} [x] (. clojure.lang.Numbers (isZero x))) +//(defn zero? "Returns true if num is zero, else false" {:tag Boolean, :inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/isZero)) (clojure.core/list x)))))} [x] (. clojure.lang.Numbers (isZero x))) //--- -(function __clojure_core_fn_670(){ -return (clojure.JS.def(clojure.core,"zero_QMARK_",(function __clojure_core_fn_670_zero_QMARK_675(x_1){ +(function __clojure_core_fn_1229(){ +return (clojure.JS.def(clojure.core,"zero_QMARK_",(function __clojure_core_fn_1229_zero_QMARK_1234(x_1){ return (clojure.lang.Numbers.isZero(x_1))})))}).apply(null,[]); //====== //(defn quot "quot[ient] of dividing numerator by denominator." [num div] (. clojure.lang.Numbers (quotient num div))) //--- -(function __clojure_core_fn_679(){ -return (clojure.JS.def(clojure.core,"quot",(function __clojure_core_fn_679_quot_681(num_1,div_2){ +(function __clojure_core_fn_1238(){ +return (clojure.JS.def(clojure.core,"quot",(function __clojure_core_fn_1238_quot_1240(num_1,div_2){ return (clojure.lang.Numbers.quotient(num_1,div_2))})))}).apply(null,[]); //====== //(defn rem "remainder of dividing numerator by denominator." [num div] (. clojure.lang.Numbers (remainder num div))) //--- -(function __clojure_core_fn_685(){ -return (clojure.JS.def(clojure.core,"rem",(function __clojure_core_fn_685_rem_687(num_1,div_2){ +(function __clojure_core_fn_1244(){ +return (clojure.JS.def(clojure.core,"rem",(function __clojure_core_fn_1244_rem_1246(num_1,div_2){ return (clojure.lang.Numbers.remainder(num_1,div_2))})))}).apply(null,[]); //====== //(defn rationalize "returns the rational value of num" [num] (. clojure.lang.Numbers (rationalize num))) //--- -(function __clojure_core_fn_691(){ -return (clojure.JS.def(clojure.core,"rationalize",(function __clojure_core_fn_691_rationalize_693(num_1){ +(function __clojure_core_fn_1250(){ +return (clojure.JS.def(clojure.core,"rationalize",(function __clojure_core_fn_1250_rationalize_1252(num_1){ return (clojure.lang.Numbers.rationalize(num_1))})))}).apply(null,[]); //====== //(defn bit-not "Bitwise complement" {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/not)) (clojure.core/list x)))))} [x] (. clojure.lang.Numbers not x)) //--- -(function __clojure_core_fn_697(){ -return (clojure.JS.def(clojure.core,"bit_not",(function __clojure_core_fn_697_bit_not_702(x_1){ +(function __clojure_core_fn_1256(){ +return (clojure.JS.def(clojure.core,"bit_not",(function __clojure_core_fn_1256_bit_not_1261(x_1){ return (clojure.lang.Numbers.not(x_1))})))}).apply(null,[]); //====== //(defn bit-and "Bitwise and" {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/and)) (clojure.core/list x) (clojure.core/list y)))))} [x y] (. clojure.lang.Numbers and x y)) //--- -(function __clojure_core_fn_706(){ -return (clojure.JS.def(clojure.core,"bit_and",(function __clojure_core_fn_706_bit_and_711(x_1,y_2){ +(function __clojure_core_fn_1265(){ +return (clojure.JS.def(clojure.core,"bit_and",(function __clojure_core_fn_1265_bit_and_1270(x_1,y_2){ return (clojure.lang.Numbers.and(x_1,y_2))})))}).apply(null,[]); //====== //(defn bit-or "Bitwise or" {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/or)) (clojure.core/list x) (clojure.core/list y)))))} [x y] (. clojure.lang.Numbers or x y)) //--- -(function __clojure_core_fn_715(){ -return (clojure.JS.def(clojure.core,"bit_or",(function __clojure_core_fn_715_bit_or_720(x_1,y_2){ +(function __clojure_core_fn_1274(){ +return (clojure.JS.def(clojure.core,"bit_or",(function __clojure_core_fn_1274_bit_or_1279(x_1,y_2){ return (clojure.lang.Numbers.or(x_1,y_2))})))}).apply(null,[]); //====== //(defn bit-xor "Bitwise exclusive or" {:inline (fn [x y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/xor)) (clojure.core/list x) (clojure.core/list y)))))} [x y] (. clojure.lang.Numbers xor x y)) //--- -(function __clojure_core_fn_724(){ -return (clojure.JS.def(clojure.core,"bit_xor",(function __clojure_core_fn_724_bit_xor_729(x_1,y_2){ +(function __clojure_core_fn_1283(){ +return (clojure.JS.def(clojure.core,"bit_xor",(function __clojure_core_fn_1283_bit_xor_1288(x_1,y_2){ return (clojure.lang.Numbers.xor(x_1,y_2))})))}).apply(null,[]); //====== //(defn bit-and-not "Bitwise and with complement" [x y] (. clojure.lang.Numbers andNot x y)) //--- -(function __clojure_core_fn_733(){ -return (clojure.JS.def(clojure.core,"bit_and_not",(function __clojure_core_fn_733_bit_and_not_735(x_1,y_2){ +(function __clojure_core_fn_1292(){ +return (clojure.JS.def(clojure.core,"bit_and_not",(function __clojure_core_fn_1292_bit_and_not_1294(x_1,y_2){ return (clojure.lang.Numbers.andNot(x_1,y_2))})))}).apply(null,[]); //====== //(defn bit-clear "Clear bit at index n" [x n] (. clojure.lang.Numbers clearBit x n)) //--- -(function __clojure_core_fn_739(){ -return (clojure.JS.def(clojure.core,"bit_clear",(function __clojure_core_fn_739_bit_clear_741(x_1,n_2){ +(function __clojure_core_fn_1298(){ +return (clojure.JS.def(clojure.core,"bit_clear",(function __clojure_core_fn_1298_bit_clear_1300(x_1,n_2){ return (clojure.lang.Numbers.clearBit(x_1,n_2))})))}).apply(null,[]); //====== //(defn bit-set "Set bit at index n" [x n] (. clojure.lang.Numbers setBit x n)) //--- -(function __clojure_core_fn_745(){ -return (clojure.JS.def(clojure.core,"bit_set",(function __clojure_core_fn_745_bit_set_747(x_1,n_2){ +(function __clojure_core_fn_1304(){ +return (clojure.JS.def(clojure.core,"bit_set",(function __clojure_core_fn_1304_bit_set_1306(x_1,n_2){ return (clojure.lang.Numbers.setBit(x_1,n_2))})))}).apply(null,[]); //====== //(defn bit-flip "Flip bit at index n" [x n] (. clojure.lang.Numbers flipBit x n)) //--- -(function __clojure_core_fn_751(){ -return (clojure.JS.def(clojure.core,"bit_flip",(function __clojure_core_fn_751_bit_flip_753(x_1,n_2){ +(function __clojure_core_fn_1310(){ +return (clojure.JS.def(clojure.core,"bit_flip",(function __clojure_core_fn_1310_bit_flip_1312(x_1,n_2){ return (clojure.lang.Numbers.flipBit(x_1,n_2))})))}).apply(null,[]); //====== //(defn bit-test "Test bit at index n" [x n] (. clojure.lang.Numbers testBit x n)) //--- -(function __clojure_core_fn_757(){ -return (clojure.JS.def(clojure.core,"bit_test",(function __clojure_core_fn_757_bit_test_759(x_1,n_2){ +(function __clojure_core_fn_1316(){ +return (clojure.JS.def(clojure.core,"bit_test",(function __clojure_core_fn_1316_bit_test_1318(x_1,n_2){ return (clojure.lang.Numbers.testBit(x_1,n_2))})))}).apply(null,[]); //====== //(defn bit-shift-left "Bitwise shift left" [x n] (. clojure.lang.Numbers shiftLeft x n)) //--- -(function __clojure_core_fn_763(){ -return (clojure.JS.def(clojure.core,"bit_shift_left",(function __clojure_core_fn_763_bit_shift_left_765(x_1,n_2){ +(function __clojure_core_fn_1322(){ +return (clojure.JS.def(clojure.core,"bit_shift_left",(function __clojure_core_fn_1322_bit_shift_left_1324(x_1,n_2){ return (clojure.lang.Numbers.shiftLeft(x_1,n_2))})))}).apply(null,[]); //====== //(defn bit-shift-right "Bitwise shift right" [x n] (. clojure.lang.Numbers shiftRight x n)) //--- -(function __clojure_core_fn_769(){ -return (clojure.JS.def(clojure.core,"bit_shift_right",(function __clojure_core_fn_769_bit_shift_right_771(x_1,n_2){ +(function __clojure_core_fn_1328(){ +return (clojure.JS.def(clojure.core,"bit_shift_right",(function __clojure_core_fn_1328_bit_shift_right_1330(x_1,n_2){ return (clojure.lang.Numbers.shiftRight(x_1,n_2))})))}).apply(null,[]); //====== //(defn even? "Returns true if n is even, throws an exception if n is not an integer" [n] (zero? (bit-and n 1))) //--- -(function __clojure_core_fn_775(){ -return (clojure.JS.def(clojure.core,"even_QMARK_",(function __clojure_core_fn_775_even_QMARK_777(n_1){ +(function __clojure_core_fn_1334(){ +return (clojure.JS.def(clojure.core,"even_QMARK_",(function __clojure_core_fn_1334_even_QMARK_1336(n_1){ return (clojure.lang.Numbers.isZero(clojure.lang.Numbers.and(n_1,(1))))})))}).apply(null,[]); //====== //(defn odd? "Returns true if n is odd, throws an exception if n is not an integer" [n] (not (even? n))) //--- -(function __clojure_core_fn_781(){ -return (clojure.JS.def(clojure.core,"odd_QMARK_",(function __clojure_core_fn_781_odd_QMARK_783(n_1){ +(function __clojure_core_fn_1340(){ +return (clojure.JS.def(clojure.core,"odd_QMARK_",(function __clojure_core_fn_1340_odd_QMARK_1342(n_1){ return (clojure.core.not.apply(null,[clojure.core.even_QMARK_.apply(null,[n_1])]))})))}).apply(null,[]); //====== //(defn complement "Takes a fn f and returns a fn that takes the same arguments as f,\n has the same effects, if any, and returns the opposite truth value." [f] (fn [& args] (not (apply f args)))) //--- -(function __clojure_core_fn_787(){ -return (clojure.JS.def(clojure.core,"complement",(function __clojure_core_fn_787_complement_789(f_1){ -return (clojure.JS.variadic(0,(function __clojure_core_fn_787_complement_789_fn_791(){ +(function __clojure_core_fn_1346(){ +return (clojure.JS.def(clojure.core,"complement",(function __clojure_core_fn_1346_complement_1348(f_1){ +return (clojure.JS.variadic(0,(function __clojure_core_fn_1346_complement_1348_fn_1350(){ var args_1=clojure.JS.rest_args(this,arguments,0); return (clojure.core.not.apply(null,[clojure.core.apply.apply(null,[f_1,args_1])]))})))})))}).apply(null,[]); //====== //(defn constantly "Returns a function that takes any number of arguments and returns x." [x] (fn [& args] x)) //--- -(function __clojure_core_fn_796(){ -return (clojure.JS.def(clojure.core,"constantly",(function __clojure_core_fn_796_constantly_798(x_1){ -return (clojure.JS.variadic(0,(function __clojure_core_fn_796_constantly_798_fn_800(){ +(function __clojure_core_fn_1355(){ +return (clojure.JS.def(clojure.core,"constantly",(function __clojure_core_fn_1355_constantly_1357(x_1){ +return (clojure.JS.variadic(0,(function __clojure_core_fn_1355_constantly_1357_fn_1359(){ var args_1=clojure.JS.rest_args(this,arguments,0); return (x_1)})))})))}).apply(null,[]); //====== //(defn identity "Returns its argument." [x] x) //--- -(function __clojure_core_fn_805(){ -return (clojure.JS.def(clojure.core,"identity",(function __clojure_core_fn_805_identity_807(x_1){ +(function __clojure_core_fn_1364(){ +return (clojure.JS.def(clojure.core,"identity",(function __clojure_core_fn_1364_identity_1366(x_1){ return (x_1)})))}).apply(null,[]); // Skipping: (defn count "Returns the number of items in the collection. (count nil) returns\n 0. Also works on strings, arrays, and Java Collections and Maps" [coll] (. clojure.lang.RT (count coll))) //====== //(defn peek "For a list or queue, same as first, for a vector, same as, but much\n more efficient than, last. If the collection is empty, returns nil." [coll] (. clojure.lang.RT (peek coll))) //--- -(function __clojure_core_fn_817(){ -return (clojure.JS.def(clojure.core,"peek",(function __clojure_core_fn_817_peek_819(coll_1){ +(function __clojure_core_fn_1376(){ +return (clojure.JS.def(clojure.core,"peek",(function __clojure_core_fn_1376_peek_1378(coll_1){ return (clojure.lang.RT.peek(coll_1))})))}).apply(null,[]); //====== //(defn pop "For a list or queue, returns a new list/queue without the first\n item, for a vector, returns a new vector without the last item. If\n the collection is empty, throws an exception. Note - not the same\n as rest/butlast." [coll] (. clojure.lang.RT (pop coll))) //--- -(function __clojure_core_fn_823(){ -return (clojure.JS.def(clojure.core,"pop",(function __clojure_core_fn_823_pop_825(coll_1){ +(function __clojure_core_fn_1382(){ +return (clojure.JS.def(clojure.core,"pop",(function __clojure_core_fn_1382_pop_1384(coll_1){ return (clojure.lang.RT.pop(coll_1))})))}).apply(null,[]); // Skipping: (defn nth "Returns the value at the index. get returns nil if index out of\n bounds, nth throws an exception unless not-found is supplied. nth\n also works for strings, Java arrays, regex Matchers and Lists, and,\n in O(n) time, for sequences." ([coll index] (. clojure.lang.RT (nth coll index))) ([coll index not-found] (. clojure.lang.RT (nth coll index not-found)))) // Skipping: (defn contains? "Returns true if key is present, else false." [map key] (. clojure.lang.RT (contains map key))) @@ -747,8 +761,8 @@ return (clojure.lang.RT.pop(coll_1))})))}).apply(null,[]); //====== //(defn dissoc "dissoc[iate]. Returns a new map of the same (hashed/sorted) type,\n that does not contain a mapping for key(s)." ([map] map) ([map key] (. clojure.lang.RT (dissoc map key))) ([map key & ks] (let [ret (dissoc map key)] (if ks (recur ret (first ks) (rest ks)) ret)))) //--- -(function __clojure_core_fn_849(){ -return (clojure.JS.def(clojure.core,"dissoc",clojure.JS.variadic(2,(function __clojure_core_fn_849_dissoc_851(map_1,key_2){switch(arguments.length){ +(function __clojure_core_fn_1408(){ +return (clojure.JS.def(clojure.core,"dissoc",clojure.JS.variadic(2,(function __clojure_core_fn_1408_dissoc_1410(map_1,key_2){switch(arguments.length){ case 1:return (map_1) case 2:return (clojure.lang.RT.dissoc(map_1,key_2))} var _cnt,_rtn,ret_4,ks_3=clojure.JS.rest_args(this,arguments,2); @@ -759,10 +773,10 @@ do{_cnt=0;_rtn=((ret_4=clojure.core.dissoc.apply(null,[map_1,key_2])), //====== //(defn disj "disj[oin]. Returns a new set of the same (hashed/sorted) type, that\n does not contain key(s)." ([set] set) ([set key] (. set (disjoin key))) ([set key & ks] (let [ret (disj set key)] (if ks (recur ret (first ks) (rest ks)) ret)))) //--- -(function __clojure_core_fn_857(){ -return (clojure.JS.def(clojure.core,"disj",clojure.JS.variadic(2,(function __clojure_core_fn_857_disj_859(set_1,key_2){switch(arguments.length){ -case 2:return ((set_1).disjoin(key_2)) -case 1:return (set_1)} +(function __clojure_core_fn_1416(){ +return (clojure.JS.def(clojure.core,"disj",clojure.JS.variadic(2,(function __clojure_core_fn_1416_disj_1418(set_1,key_2){switch(arguments.length){ +case 1:return (set_1) +case 2:return ((set_1).disjoin(key_2))} var _cnt,_rtn,ret_4,ks_3=clojure.JS.rest_args(this,arguments,2); do{_cnt=0;_rtn=((ret_4=clojure.core.disj.apply(null,[set_1,key_2])), ((ks_3)?((_cnt=1,_rtn=[ret_4,clojure.core.first.apply(null,[ks_3]),clojure.core.rest.apply(null,[ks_3])],set_1=_rtn[0],key_2=_rtn[1],ks_3=_rtn[2])):(ret_4))) @@ -772,10 +786,10 @@ do{_cnt=0;_rtn=((ret_4=clojure.core.disj.apply(null,[set_1,key_2])), //====== //(defn select-keys "Returns a map containing only those entries in map whose key is in keys" [map keyseq] (loop [ret {} keys (seq keyseq)] (if keys (let [entry (. clojure.lang.RT (find map (first keys)))] (recur (if entry (conj ret entry) ret) (rest keys))) ret))) //--- -(function __clojure_core_fn_871(){ -return (clojure.JS.def(clojure.core,"select_keys",(function __clojure_core_fn_871_select_keys_873(map_1,keyseq_2){ +(function __clojure_core_fn_1430(){ +return (clojure.JS.def(clojure.core,"select_keys",(function __clojure_core_fn_1430_select_keys_1432(map_1,keyseq_2){ var ret_3,keys_4,entry_5; -return (((function __loop(){var _rtn,_cnt;(ret_3=clojure.lang.PersistentHashMap.EMPTY), +return (((function __loop(){var _rtn,_cnt;(ret_3=clojure.lang.PersistentArrayMap.EMPTY), (keys_4=clojure.core.seq.apply(null,[keyseq_2]));do{_cnt=0; _rtn=((keys_4)?(((entry_5=clojure.lang.RT.find(map_1,clojure.core.first.apply(null,[keys_4]))), (_cnt=1,_rtn=[((entry_5)?(clojure.core.conj.apply(null,[ret_3,entry_5])):(ret_3)),clojure.core.rest.apply(null,[keys_4])],ret_3=_rtn[0],keys_4=_rtn[1]))):(ret_3))}while(_cnt);return _rtn;})()))})))}).apply(null,[]); @@ -785,190 +799,262 @@ _rtn=((keys_4)?(((entry_5=clojure.lang.RT.find(map_1,clojure.core.first.apply(nu //====== //(defn key "Returns the key of the map entry." [e] (. e (getKey))) //--- -(function __clojure_core_fn_889(){ -return (clojure.JS.def(clojure.core,"key",(function __clojure_core_fn_889_key_891(e_1){ +(function __clojure_core_fn_1448(){ +return (clojure.JS.def(clojure.core,"key",(function __clojure_core_fn_1448_key_1450(e_1){ return ((e_1).getKey())})))}).apply(null,[]); //====== //(defn val "Returns the value in the map entry." [e] (. e (getValue))) //--- -(function __clojure_core_fn_895(){ -return (clojure.JS.def(clojure.core,"val",(function __clojure_core_fn_895_val_897(e_1){ +(function __clojure_core_fn_1454(){ +return (clojure.JS.def(clojure.core,"val",(function __clojure_core_fn_1454_val_1456(e_1){ return ((e_1).getValue())})))}).apply(null,[]); //====== //(defn rseq "Returns, in constant time, a sequence of the items in rev (which\n can be a vector or sorted-map), in reverse order." [rev] (. rev (rseq))) //--- -(function __clojure_core_fn_901(){ -return (clojure.JS.def(clojure.core,"rseq",(function __clojure_core_fn_901_rseq_903(rev_1){ +(function __clojure_core_fn_1460(){ +return (clojure.JS.def(clojure.core,"rseq",(function __clojure_core_fn_1460_rseq_1462(rev_1){ return ((rev_1).rseq())})))}).apply(null,[]); //====== //(defn name "Returns the name String of a symbol or keyword." [x] (. x (getName))) //--- -(function __clojure_core_fn_907(){ -return (clojure.JS.def(clojure.core,"name",(function __clojure_core_fn_907_name_909(x_1){ +(function __clojure_core_fn_1466(){ +return (clojure.JS.def(clojure.core,"name",(function __clojure_core_fn_1466_name_1468(x_1){ return ((x_1).getName())})))}).apply(null,[]); //====== //(defn namespace "Returns the namespace String of a symbol or keyword, or nil if not present." [x] (. x (getNamespace))) //--- -(function __clojure_core_fn_913(){ -return (clojure.JS.def(clojure.core,"namespace",(function __clojure_core_fn_913_namespace_915(x_1){ +(function __clojure_core_fn_1472(){ +return (clojure.JS.def(clojure.core,"namespace",(function __clojure_core_fn_1472_namespace_1474(x_1){ return ((x_1).getNamespace())})))}).apply(null,[]); -// Skipping: (defmacro locking "Executes exprs in an implicit do, while holding the monitor of x.\n Will release the monitor of x in all circumstances." [x & body] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote lockee__919)) (clojure.core/list x)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote try)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote monitor-enter)) (clojure.core/list (quote lockee__919)))) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote finally)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote monitor-exit)) (clojure.core/list (quote lockee__919)))))))))) -// Skipping: (defmacro .. "form => fieldName-symbol or (instanceMethodName-symbol args*)\n\n Expands into a member access (.) of the first member on the first\n argument, followed by the next member on the result, etc. For\n instance:\n\n (.. System (getProperties) (get \"os.name\"))\n\n expands to:\n\n (. (. System (getProperties)) (get \"os.name\"))\n\n but is easier to write, read, and understand." ([x form] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list x) (clojure.core/list form))) ([x form & more] (clojure.core/concat (clojure.core/list (quote clojure.core/..)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list x) (clojure.core/list form))) more))) +// Skipping: (defmacro locking "Executes exprs in an implicit do, while holding the monitor of x.\n Will release the monitor of x in all circumstances." [x & body] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote lockee__1478__auto__)) (clojure.core/list x)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote try)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote monitor-enter)) (clojure.core/list (quote lockee__1478__auto__)))) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote finally)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote monitor-exit)) (clojure.core/list (quote lockee__1478__auto__)))))))))) +// Skipping: (defmacro .. "form => fieldName-symbol or (instanceMethodName-symbol args*)\n\n Expands into a member access (.) of the first member on the first\n argument, followed by the next member on the result, etc. For\n instance:\n\n (.. System (getProperties) (get \"os.name\"))\n\n expands to:\n\n (. (. System (getProperties)) (get \"os.name\"))\n\n but is easier to write, read, and understand." ([x form] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list x) (clojure.core/list form))) ([x form & more] (clojure.core/concat (clojure.core/list (quote ..)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list x) (clojure.core/list form))) more))) // Skipping: (defmacro -> "Threads the expr through the forms. Inserts x as the\n second item in the first form, making a list of it if it is not a\n list already. If there are more forms, inserts the first form as the\n second item in second form, etc." ([x form] (if (seq? form) (clojure.core/concat (clojure.core/list (first form)) (clojure.core/list x) (rest form)) (list form x))) ([x form & more] (clojure.core/concat (clojure.core/list (quote clojure.core/->)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/->)) (clojure.core/list x) (clojure.core/list form))) more))) // Skipping: (defmacro defmulti "Creates a new multimethod with the associated dispatch function. If\n default-dispatch-val is supplied it becomes the default dispatch\n value of the multimethod, otherwise the default dispatch value\n is :default." ([name dispatch-fn] (clojure.core/concat (clojure.core/list (quote clojure.core/defmulti)) (clojure.core/list name) (clojure.core/list dispatch-fn) (clojure.core/list :default))) ([name dispatch-fn default-val] (clojure.core/concat (clojure.core/list (quote def)) (clojure.core/list (with-meta name (assoc (clojure.core/meta name) :tag (quote clojure.lang.MultiFn)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote new)) (clojure.core/list (quote clojure.lang.MultiFn)) (clojure.core/list dispatch-fn) (clojure.core/list default-val)))))) // Skipping: (defmacro defmethod "Creates and installs a new method of multimethod associated with dispatch-value. " [multifn dispatch-val & fn-tail] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list multifn) (clojure.core/list (quote clojure.core/addMethod)) (clojure.core/list dispatch-val) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/fn)) fn-tail)))) -// Skipping: (defmacro remove-method "Removes the method of multimethod associated\twith dispatch-value." [multifn dispatch-val] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list multifn) (clojure.core/list (quote clojure.core/removeMethod)) (clojure.core/list dispatch-val))) -// Skipping: (defmacro prefer-method "Causes the multimethod to prefer matches of dispatch-val-x over dispatch-val-y when there is a conflict" [multifn dispatch-val-x dispatch-val-y] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list multifn) (clojure.core/list (quote clojure.core/preferMethod)) (clojure.core/list dispatch-val-x) (clojure.core/list dispatch-val-y))) -// Skipping: (defmacro binding "binding => var-symbol init-expr \n\n Creates new bindings for the (already-existing) vars, with the\n supplied initial values, executes the exprs in an implicit do, then\n re-establishes the bindings that existed before." [bindings & body] (let [var-ize (fn [var-vals] (loop [ret [] vvs (seq var-vals)] (if vvs (recur (conj (conj ret (clojure.core/concat (clojure.core/list (quote var)) (clojure.core/list (first vvs)))) (second vvs)) (rest (rest vvs))) (seq ret))))] (clojure.core/concat (clojure.core/list (quote do)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Var)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/pushThreadBindings)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/hash-map)) (var-ize bindings))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote try)) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote finally)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Var)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/popThreadBindings))))))))))))) + +//====== +//(defn remove-method "Removes the method of multimethod associated\twith dispatch-value." [multifn dispatch-val] (. multifn removeMethod dispatch-val)) +//--- +(function __clojure_core_fn_1530(){ +return (clojure.JS.def(clojure.core,"remove_method",(function __clojure_core_fn_1530_remove_method_1532(multifn_1,dispatch_val_2){ +return ((multifn_1).removeMethod(dispatch_val_2))})))}).apply(null,[]); + +//====== +//(defn prefer-method "Causes the multimethod to prefer matches of dispatch-val-x over dispatch-val-y when there is a conflict" [multifn dispatch-val-x dispatch-val-y] (. multifn preferMethod dispatch-val-x dispatch-val-y)) +//--- +(function __clojure_core_fn_1536(){ +return (clojure.JS.def(clojure.core,"prefer_method",(function __clojure_core_fn_1536_prefer_method_1538(multifn_1,dispatch_val_x_2,dispatch_val_y_3){ +return ((multifn_1).preferMethod(dispatch_val_x_2,dispatch_val_y_3))})))}).apply(null,[]); +// Skipping: (defmacro assert-args [fnname & pairs] (clojure.core/concat (clojure.core/list (quote do)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when-not)) (clojure.core/list (first pairs)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote throw)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote java.lang.IllegalArgumentException.)) (clojure.core/list (str fnname " requires " (second pairs))))))))) (clojure.core/list (let [more (rrest pairs)] (when more (list* (quote clojure.core/assert-args) fnname more)))))) +// Skipping: (defmacro binding "binding => var-symbol init-expr \n\n Creates new bindings for the (already-existing) vars, with the\n supplied initial values, executes the exprs in an implicit do, then\n re-establishes the bindings that existed before." [bindings & body] (assert-args binding (vector? bindings) "a vector for its binding" (even? (count bindings)) "an even number of forms in binding vector") (let [var-ize (fn [var-vals] (loop [ret [] vvs (seq var-vals)] (if vvs (recur (conj (conj ret (clojure.core/concat (clojure.core/list (quote var)) (clojure.core/list (first vvs)))) (second vvs)) (rest (rest vvs))) (seq ret))))] (clojure.core/concat (clojure.core/list (quote do)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Var)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/pushThreadBindings)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/hash-map)) (var-ize bindings))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote try)) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote finally)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Var)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/popThreadBindings))))))))))))) //====== //(defn find-var "Returns the global var named by the namespace-qualified symbol, or\n nil if no var with that name." [sym] (. clojure.lang.Var (find sym))) //--- -(function __clojure_core_fn_1004(){ -return (clojure.JS.def(clojure.core,"find_var",(function __clojure_core_fn_1004_find_var_1006(sym_1){ +(function __clojure_core_fn_1566(){ +return (clojure.JS.def(clojure.core,"find_var",(function __clojure_core_fn_1566_find_var_1568(sym_1){ return (clojure.lang.Var.find(sym_1))})))}).apply(null,[]); //====== -//(defn agent "Creates and returns an agent with an initial value of state and an\n optional validate fn. validate-fn must be nil or a side-effect-free fn of\n one argument, which will be passed the intended new state on any state\n change. If the new state is unacceptable, the validate-fn should\n throw an exception." ([state] (new clojure.lang.Agent state)) ([state validate-fn] (new clojure.lang.Agent state validate-fn))) +//(defn setup-reference [r options] (let [opts (apply hash-map options)] (when (:meta opts) (.resetMeta r (:meta opts))) (when (:validator opts) (.setValidator r (:validator opts))) r)) //--- -(function __clojure_core_fn_1010(){ -return (clojure.JS.def(clojure.core,"agent",(function __clojure_core_fn_1010_agent_1012(state_1,validate_fn_2){switch(arguments.length){ -case 1:return ((new clojure.lang.Agent(state_1)))} -return ((new clojure.lang.Agent(state_1,validate_fn_2)))})))}).apply(null,[]); +(function __clojure_core_fn_1572(){ +return (clojure.JS.def(clojure.core,"setup_reference",(function __clojure_core_fn_1572_setup_reference_1574(r_1,options_2){ +var opts_3; +return (((opts_3=clojure.core.apply.apply(null,[clojure.core.hash_map,options_2])), +((clojure.core.keyword("","meta").apply(null,[opts_3]))?((r_1).resetMeta(clojure.core.keyword("","meta").apply(null,[opts_3]))):(null)), +((clojure.core.keyword("","validator").apply(null,[opts_3]))?((r_1).setValidator(clojure.core.keyword("","validator").apply(null,[opts_3]))):(null)), +r_1))})))}).apply(null,[]); //====== -//(defn ! [& args] (throw (clojure.lang.RT/makeException "! is now send. See also send-off"))) +//(defn agent "Creates and returns an agent with an initial value of state and\n zero or more options (in any order):\n \n :meta metadata-map\n \n :validator validate-fn\n\n If metadata-map is supplied, it will be come the metadata on the\n agent. validate-fn must be nil or a side-effect-free fn of one\n argument, which will be passed the intended new state on any state\n change. If the new state is unacceptable, the validate-fn should\n return false or throw an exception." ([state] (new clojure.lang.Agent state)) ([state & options] (setup-reference (agent state) options))) //--- -(function __clojure_core_fn_1017(){ -return (clojure.JS.def(clojure.core,"_BANG_",clojure.JS.variadic(0,(function __clojure_core_fn_1017_BANG_1019(){ -var args_1=clojure.JS.rest_args(this,arguments,0); -return ((function __throw(){throw clojure.lang.RT.makeException("! is now send. See also send-off")})())}))))}).apply(null,[]); +(function __clojure_core_fn_1578(){ +return (clojure.JS.def(clojure.core,"agent",clojure.JS.variadic(1,(function __clojure_core_fn_1578_agent_1580(state_1){switch(arguments.length){ +case 1:return ((new clojure.lang.Agent(state_1)))} +var options_2=clojure.JS.rest_args(this,arguments,1); +return (clojure.core.setup_reference.apply(null,[clojure.core.agent.apply(null,[state_1]),options_2]))}))))}).apply(null,[]); //====== //(defn send "Dispatch an action to an agent. Returns the agent immediately.\n Subsequently, in a thread from a thread pool, the state of the agent\n will be set to the value of:\n\n (apply action-fn state-of-agent args)" [a f & args] (. a (dispatch f args false))) //--- -(function __clojure_core_fn_1023(){ -return (clojure.JS.def(clojure.core,"send",clojure.JS.variadic(2,(function __clojure_core_fn_1023_send_1025(a_1,f_2){ +(function __clojure_core_fn_1585(){ +return (clojure.JS.def(clojure.core,"send",clojure.JS.variadic(2,(function __clojure_core_fn_1585_send_1587(a_1,f_2){ var args_3=clojure.JS.rest_args(this,arguments,2); return ((a_1).dispatch(f_2,args_3,false))}))))}).apply(null,[]); //====== //(defn send-off "Dispatch a potentially blocking action to an agent. Returns the\n agent immediately. Subsequently, in a separate thread, the state of\n the agent will be set to the value of:\n\n (apply action-fn state-of-agent args)" [a f & args] (. a (dispatch f args true))) //--- -(function __clojure_core_fn_1029(){ -return (clojure.JS.def(clojure.core,"send_off",clojure.JS.variadic(2,(function __clojure_core_fn_1029_send_off_1031(a_1,f_2){ +(function __clojure_core_fn_1591(){ +return (clojure.JS.def(clojure.core,"send_off",clojure.JS.variadic(2,(function __clojure_core_fn_1591_send_off_1593(a_1,f_2){ var args_3=clojure.JS.rest_args(this,arguments,2); return ((a_1).dispatch(f_2,args_3,true))}))))}).apply(null,[]); //====== -//(defn add-watch "Experimental.\n Adds a watcher to an agent. Whenever the agent runs an action, any\n registered watchers will have their callback function called. The\n callback fn will be passed 3 args, the watcher, the agent and a boolean\n which will be true if the agent's state was (potentially) changed by\n the action. The callback fn is run synchronously with the action,\n and thus derefs of the agent in the callback will see the value set\n during that action. Because it is run on the action thread, the\n callback should not block, but can send messages." [a watcher callback] (.addWatch a watcher callback)) +//(defn release-pending-sends "Normally, actions sent directly or indirectly during another action\n are held until the action completes (changes the agent's\n state). This function can be used to dispatch any pending sent\n actions immediately. This has no impact on actions sent during a\n transaction, which are still held until commit. If no action is\n occurring, does nothing. Returns the number of actions dispatched." [] (clojure.lang.Agent/releasePendingSends)) +//--- +(function __clojure_core_fn_1597(){ +return (clojure.JS.def(clojure.core,"release_pending_sends",(function __clojure_core_fn_1597_release_pending_sends_1599(){ +return (clojure.lang.Agent.releasePendingSends())})))}).apply(null,[]); + +//====== +//(defn add-watcher "Experimental.\n Adds a watcher to an agent/atom/var/ref reference. The watcher must\n be an Agent, and the action a function of the agent's state and one\n additional arg, the reference. Whenever the reference's state\n changes, any registered watchers will have their actions\n sent. send-type must be one of :send or :send-off. The actions will\n be sent after the reference's state is changed. Var watchers are\n triggered only by root binding changes, not thread-local set!s" [reference send-type watcher-agent action-fn] (.addWatch reference watcher-agent action-fn (= send-type :send-off))) //--- -(function __clojure_core_fn_1035(){ -return (clojure.JS.def(clojure.core,"add_watch",(function __clojure_core_fn_1035_add_watch_1037(a_1,watcher_2,callback_3){ -return ((a_1).addWatch(watcher_2,callback_3))})))}).apply(null,[]); +(function __clojure_core_fn_1603(){ +return (clojure.JS.def(clojure.core,"add_watcher",(function __clojure_core_fn_1603_add_watcher_1605(reference_1,send_type_2,watcher_agent_3,action_fn_4){ +return ((reference_1).addWatch(watcher_agent_3,action_fn_4,clojure.lang.Util.equal(send_type_2,clojure.core.keyword("","send-off"))))})))}).apply(null,[]); //====== -//(defn remove-watch "Experimental.\n Removes a watcher (set by add-watch) from an agent" [a watcher] (.removeWatch a watcher)) +//(defn remove-watcher "Experimental.\n Removes a watcher (set by add-watcher) from a reference" [reference watcher-agent] (.removeWatch reference watcher-agent)) //--- -(function __clojure_core_fn_1041(){ -return (clojure.JS.def(clojure.core,"remove_watch",(function __clojure_core_fn_1041_remove_watch_1043(a_1,watcher_2){ -return ((a_1).removeWatch(watcher_2))})))}).apply(null,[]); +(function __clojure_core_fn_1609(){ +return (clojure.JS.def(clojure.core,"remove_watcher",(function __clojure_core_fn_1609_remove_watcher_1611(reference_1,watcher_agent_2){ +return ((reference_1).removeWatch(watcher_agent_2))})))}).apply(null,[]); //====== //(defn agent-errors "Returns a sequence of the exceptions thrown during asynchronous\n actions of the agent." [a] (. a (getErrors))) //--- -(function __clojure_core_fn_1047(){ -return (clojure.JS.def(clojure.core,"agent_errors",(function __clojure_core_fn_1047_agent_errors_1049(a_1){ +(function __clojure_core_fn_1615(){ +return (clojure.JS.def(clojure.core,"agent_errors",(function __clojure_core_fn_1615_agent_errors_1617(a_1){ return ((a_1).getErrors())})))}).apply(null,[]); //====== //(defn clear-agent-errors "Clears any exceptions thrown during asynchronous actions of the\n agent, allowing subsequent actions to occur." [a] (. a (clearErrors))) //--- -(function __clojure_core_fn_1053(){ -return (clojure.JS.def(clojure.core,"clear_agent_errors",(function __clojure_core_fn_1053_clear_agent_errors_1055(a_1){ +(function __clojure_core_fn_1621(){ +return (clojure.JS.def(clojure.core,"clear_agent_errors",(function __clojure_core_fn_1621_clear_agent_errors_1623(a_1){ return ((a_1).clearErrors())})))}).apply(null,[]); //====== //(defn shutdown-agents "Initiates a shutdown of the thread pools that back the agent\n system. Running actions will complete, but no new actions will be\n accepted" [] (. clojure.lang.Agent shutdown)) //--- -(function __clojure_core_fn_1059(){ -return (clojure.JS.def(clojure.core,"shutdown_agents",(function __clojure_core_fn_1059_shutdown_agents_1061(){ +(function __clojure_core_fn_1627(){ +return (clojure.JS.def(clojure.core,"shutdown_agents",(function __clojure_core_fn_1627_shutdown_agents_1629(){ return (clojure.lang.Agent.shutdown())})))}).apply(null,[]); //====== -//(defn ref "Creates and returns a Ref with an initial value of x and an optional validate fn.\n validate-fn must be nil or a side-effect-free fn of one argument, which will\n be passed the intended new state on any state change. If the new\n state is unacceptable, the validate-fn should throw an\n exception. validate-fn will be called on transaction commit, when\n all refs have their final values." ([x] (new clojure.lang.Ref x)) ([x validate-fn] (new clojure.lang.Ref x validate-fn))) +//(defn ref "Creates and returns a Ref with an initial value of x and zero or\n more options (in any order):\n \n :meta metadata-map\n \n :validator validate-fn\n\n If metadata-map is supplied, it will be come the metadata on the\n ref. validate-fn must be nil or a side-effect-free fn of one\n argument, which will be passed the intended new state on any state\n change. If the new state is unacceptable, the validate-fn should\n return false or throw an exception. validate-fn will be called on\n transaction commit, when all refs have their final values." ([x] (new clojure.lang.Ref x)) ([x & options] (setup-reference (ref x) options))) //--- -(function __clojure_core_fn_1065(){ -return (clojure.JS.def(clojure.core,"ref",(function __clojure_core_fn_1065_ref_1067(x_1,validate_fn_2){switch(arguments.length){ +(function __clojure_core_fn_1633(){ +return (clojure.JS.def(clojure.core,"ref",clojure.JS.variadic(1,(function __clojure_core_fn_1633_ref_1635(x_1){switch(arguments.length){ case 1:return ((new clojure.lang.Ref(x_1)))} -return ((new clojure.lang.Ref(x_1,validate_fn_2)))})))}).apply(null,[]); +var options_2=clojure.JS.rest_args(this,arguments,1); +return (clojure.core.setup_reference.apply(null,[clojure.core.ref.apply(null,[x_1]),options_2]))}))))}).apply(null,[]); //====== -//(defn deref "Also reader macro: @ref/@agent Within a transaction, returns the\n in-transaction-value of ref, else returns the\n most-recently-committed value of ref. When applied to an agent,\n returns its current state." [ref] (. ref (get))) +//(defn deref "Also reader macro: @ref/@agent/@var/@atom Within a transaction,\n returns the in-transaction-value of ref, else returns the\n most-recently-committed value of ref. When applied to a var, agent\n or atom, returns its current state." [ref] (. ref (get))) //--- -(function __clojure_core_fn_1072(){ -return (clojure.JS.def(clojure.core,"deref",(function __clojure_core_fn_1072_deref_1074(ref_1){ +(function __clojure_core_fn_1640(){ +return (clojure.JS.def(clojure.core,"deref",(function __clojure_core_fn_1640_deref_1642(ref_1){ return ((ref_1).get())})))}).apply(null,[]); //====== -//(defn set-validator "Sets the validator-fn for a var/ref/agent. validator-fn must be nil or a\n side-effect-free fn of one argument, which will be passed the intended\n new state on any state change. If the new state is unacceptable, the\n validator-fn should throw an exception. If the current state (root\n value if var) is not acceptable to the new validator, an exception\n will be thrown and the validator will not be changed." [iref validator-fn] (. iref (setValidator validator-fn))) +//(defn atom "Creates and returns an Atom with an initial value of x and zero or\n more options (in any order):\n \n :meta metadata-map\n \n :validator validate-fn\n\n If metadata-map is supplied, it will be come the metadata on the\n atom. validate-fn must be nil or a side-effect-free fn of one\n argument, which will be passed the intended new state on any state\n change. If the new state is unacceptable, the validate-fn should\n return false or throw an exception." ([x] (new clojure.lang.Atom x)) ([x & options] (setup-reference (atom x) options))) +//--- +(function __clojure_core_fn_1646(){ +return (clojure.JS.def(clojure.core,"atom",clojure.JS.variadic(1,(function __clojure_core_fn_1646_atom_1648(x_1){switch(arguments.length){ +case 1:return ((new clojure.lang.Atom(x_1)))} +var options_2=clojure.JS.rest_args(this,arguments,1); +return (clojure.core.setup_reference.apply(null,[clojure.core.atom.apply(null,[x_1]),options_2]))}))))}).apply(null,[]); + +//====== +//(defn swap! "Atomically swaps the value of atom to be:\n (apply f current-value-of-atom args). Note that f may be called\n multiple times, and thus should be free of side effects. Returns\n the value that was swapped in." [atom f & args] (.swap atom f args)) +//--- +(function __clojure_core_fn_1653(){ +return (clojure.JS.def(clojure.core,"swap_BANG_",clojure.JS.variadic(2,(function __clojure_core_fn_1653_swap_BANG_1655(atom_1,f_2){ +var args_3=clojure.JS.rest_args(this,arguments,2); +return ((atom_1).swap(f_2,args_3))}))))}).apply(null,[]); + +//====== +//(defn compare-and-set! "Atomically sets the value of atom to newval if and only if the\n current value of the atom is identical to oldval. Returns true if\n set happened, else false" [atom oldval newval] (.compareAndSet atom oldval newval)) +//--- +(function __clojure_core_fn_1659(){ +return (clojure.JS.def(clojure.core,"compare_and_set_BANG_",(function __clojure_core_fn_1659_compare_and_set_BANG_1661(atom_1,oldval_2,newval_3){ +return ((atom_1).compareAndSet(oldval_2,newval_3))})))}).apply(null,[]); + +//====== +//(defn reset! "Sets the value of atom to newval without regard for the\n current value. Returns newval." [atom newval] (.reset atom newval)) +//--- +(function __clojure_core_fn_1665(){ +return (clojure.JS.def(clojure.core,"reset_BANG_",(function __clojure_core_fn_1665_reset_BANG_1667(atom_1,newval_2){ +return ((atom_1).reset(newval_2))})))}).apply(null,[]); + +//====== +//(defn set-validator! "Sets the validator-fn for a var/ref/agent/atom. validator-fn must be nil or a\n side-effect-free fn of one argument, which will be passed the intended\n new state on any state change. If the new state is unacceptable, the\n validator-fn should return false or throw an exception. If the current state (root\n value if var) is not acceptable to the new validator, an exception\n will be thrown and the validator will not be changed." [iref validator-fn] (. iref (setValidator validator-fn))) //--- -(function __clojure_core_fn_1078(){ -return (clojure.JS.def(clojure.core,"set_validator",(function __clojure_core_fn_1078_set_validator_1080(iref_1,validator_fn_2){ +(function __clojure_core_fn_1671(){ +return (clojure.JS.def(clojure.core,"set_validator_BANG_",(function __clojure_core_fn_1671_set_validator_BANG_1673(iref_1,validator_fn_2){ return ((iref_1).setValidator(validator_fn_2))})))}).apply(null,[]); //====== -//(defn get-validator "Gets the validator-fn for a var/ref/agent." [iref] (. iref (getValidator))) +//(defn get-validator "Gets the validator-fn for a var/ref/agent/atom." [iref] (. iref (getValidator))) //--- -(function __clojure_core_fn_1084(){ -return (clojure.JS.def(clojure.core,"get_validator",(function __clojure_core_fn_1084_get_validator_1086(iref_1){ +(function __clojure_core_fn_1677(){ +return (clojure.JS.def(clojure.core,"get_validator",(function __clojure_core_fn_1677_get_validator_1679(iref_1){ return ((iref_1).getValidator())})))}).apply(null,[]); //====== +//(defn alter-meta! "Atomically sets the metadata for a namespace/var/ref/agent/atom to be: \n \n (apply f its-current-meta args) \n \n f must be free of side-effects" [iref f & args] (.alterMeta iref f args)) +//--- +(function __clojure_core_fn_1683(){ +return (clojure.JS.def(clojure.core,"alter_meta_BANG_",clojure.JS.variadic(2,(function __clojure_core_fn_1683_alter_meta_BANG_1685(iref_1,f_2){ +var args_3=clojure.JS.rest_args(this,arguments,2); +return ((iref_1).alterMeta(f_2,args_3))}))))}).apply(null,[]); + +//====== +//(defn reset-meta! "Atomically resets the metadata for a namespace/var/ref/agent/atom" [iref metadata-map] (.resetMeta iref metadata-map)) +//--- +(function __clojure_core_fn_1689(){ +return (clojure.JS.def(clojure.core,"reset_meta_BANG_",(function __clojure_core_fn_1689_reset_meta_BANG_1691(iref_1,metadata_map_2){ +return ((iref_1).resetMeta(metadata_map_2))})))}).apply(null,[]); + +//====== //(defn commute "Must be called in a transaction. Sets the in-transaction-value of\n ref to:\n\n (apply fun in-transaction-value-of-ref args)\n\n and returns the in-transaction-value of ref.\n\n At the commit point of the transaction, sets the value of ref to be:\n\n (apply fun most-recently-committed-value-of-ref args)\n\n Thus fun should be commutative, or, failing that, you must accept\n last-one-in-wins behavior. commute allows for more concurrency than\n ref-set." [ref fun & args] (. ref (commute fun args))) //--- -(function __clojure_core_fn_1090(){ -return (clojure.JS.def(clojure.core,"commute",clojure.JS.variadic(2,(function __clojure_core_fn_1090_commute_1092(ref_1,fun_2){ +(function __clojure_core_fn_1695(){ +return (clojure.JS.def(clojure.core,"commute",clojure.JS.variadic(2,(function __clojure_core_fn_1695_commute_1697(ref_1,fun_2){ var args_3=clojure.JS.rest_args(this,arguments,2); return ((ref_1).commute(fun_2,args_3))}))))}).apply(null,[]); //====== //(defn alter "Must be called in a transaction. Sets the in-transaction-value of\n ref to:\n\n (apply fun in-transaction-value-of-ref args)\n\n and returns the in-transaction-value of ref." [ref fun & args] (. ref (alter fun args))) //--- -(function __clojure_core_fn_1096(){ -return (clojure.JS.def(clojure.core,"alter",clojure.JS.variadic(2,(function __clojure_core_fn_1096_alter_1098(ref_1,fun_2){ +(function __clojure_core_fn_1701(){ +return (clojure.JS.def(clojure.core,"alter",clojure.JS.variadic(2,(function __clojure_core_fn_1701_alter_1703(ref_1,fun_2){ var args_3=clojure.JS.rest_args(this,arguments,2); return ((ref_1).alter(fun_2,args_3))}))))}).apply(null,[]); //====== //(defn ref-set "Must be called in a transaction. Sets the value of ref.\n Returns val." [ref val] (. ref (set val))) //--- -(function __clojure_core_fn_1102(){ -return (clojure.JS.def(clojure.core,"ref_set",(function __clojure_core_fn_1102_ref_set_1104(ref_1,val_2){ +(function __clojure_core_fn_1707(){ +return (clojure.JS.def(clojure.core,"ref_set",(function __clojure_core_fn_1707_ref_set_1709(ref_1,val_2){ return ((ref_1).set(val_2))})))}).apply(null,[]); //====== //(defn ensure "Must be called in a transaction. Protects the ref from modification\n by other transactions. Returns the in-transaction-value of\n ref. Allows for more concurrency than (ref-set ref @ref)" [ref] (. ref (touch)) (. ref (get))) //--- -(function __clojure_core_fn_1108(){ -return (clojure.JS.def(clojure.core,"ensure",(function __clojure_core_fn_1108_ensure_1110(ref_1){ +(function __clojure_core_fn_1713(){ +return (clojure.JS.def(clojure.core,"ensure",(function __clojure_core_fn_1713_ensure_1715(ref_1){ return ((ref_1).touch(), (ref_1).get())})))}).apply(null,[]); // Skipping: (defmacro sync "transaction-flags => TBD, pass nil for now\n\n Runs the exprs (in an implicit do) in a transaction that encompasses\n exprs and any nested calls. Starts a transaction if none is already\n running on this thread. Any uncaught exception will abort the\n transaction and flow out of sync. The exprs may be run more than\n once, but any effects on Refs will be atomic." [flags-ignored-for-now & body] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.LockingTransaction)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/runInTransaction)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/fn)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat))) body)))))) +// Skipping: (defmacro io! "If an io! block occurs in a transaction, throws an\n IllegalStateException, else runs body in an implicit do. If the\n first expression in body is a literal string, will use that as the\n exception message." [& body] (let [message (when (string? (first body)) (first body)) body (if message (rest body) body)] (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.lang.LockingTransaction/isRunning)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote throw)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote new)) (clojure.core/list (quote java.lang.IllegalStateException)) (clojure.core/list (or message "I/O in transaction")))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote do)) body))))) //====== //(defn comp "Takes a set of functions and returns a fn that is the composition\n of those fns. The returned fn takes a variable number of args,\n applies the rightmost of fns to the args, the next\n fn (right-to-left) to the result, etc." [& fs] (let [fs (reverse fs)] (fn [& args] (loop [ret (apply (first fs) args) fs (rest fs)] (if fs (recur ((first fs) ret) (rest fs)) ret))))) //--- -(function __clojure_core_fn_1123(){ -return (clojure.JS.def(clojure.core,"comp",clojure.JS.variadic(0,(function __clojure_core_fn_1123_comp_1125(){ +(function __clojure_core_fn_1739(){ +return (clojure.JS.def(clojure.core,"comp",clojure.JS.variadic(0,(function __clojure_core_fn_1739_comp_1741(){ var fs_2,fs_1=clojure.JS.rest_args(this,arguments,0); return (((fs_2=clojure.core.reverse.apply(null,[fs_1])), -clojure.JS.variadic(0,(function __clojure_core_fn_1123_comp_1125_fn_1127(){ -var fs_3,ret_2,args_1=clojure.JS.rest_args(this,arguments,0); +clojure.JS.variadic(0,(function __clojure_core_fn_1739_comp_1741_fn_1743(){ +var ret_2,fs_3,args_1=clojure.JS.rest_args(this,arguments,0); return (((function __loop(){var _rtn,_cnt;(ret_2=clojure.core.apply.apply(null,[clojure.core.first.apply(null,[fs_2]),args_1])), (fs_3=clojure.core.rest.apply(null,[fs_2]));do{_cnt=0; _rtn=((fs_3)?((_cnt=1,_rtn=[clojure.core.first.apply(null,[fs_3]).apply(null,[ret_2]),clojure.core.rest.apply(null,[fs_3])],ret_2=_rtn[0],fs_3=_rtn[1])):(ret_2))}while(_cnt);return _rtn;})()))}))))}))))}).apply(null,[]); @@ -976,98 +1062,98 @@ _rtn=((fs_3)?((_cnt=1,_rtn=[clojure.core.first.apply(null,[fs_3]).apply(null,[re //====== //(defn partial "Takes a function f and fewer than the normal arguments to f, and\n returns a fn that takes a variable number of additional args. When\n called, the returned function calls f with args + additional args." ([f arg1] (fn [& args] (apply f arg1 args))) ([f arg1 arg2] (fn [& args] (apply f arg1 arg2 args))) ([f arg1 arg2 arg3] (fn [& args] (apply f arg1 arg2 arg3 args))) ([f arg1 arg2 arg3 & more] (fn [& args] (apply f arg1 arg2 arg3 (concat more args))))) //--- -(function __clojure_core_fn_1132(){ -return (clojure.JS.def(clojure.core,"partial",clojure.JS.variadic(4,(function __clojure_core_fn_1132_partial_1134(f_1,arg1_2,arg2_3,arg3_4){switch(arguments.length){ -case 4:return (clojure.JS.variadic(0,(function __clojure_core_fn_1132_partial_1134_fn_1144(){ +(function __clojure_core_fn_1748(){ +return (clojure.JS.def(clojure.core,"partial",clojure.JS.variadic(4,(function __clojure_core_fn_1748_partial_1750(f_1,arg1_2,arg2_3,arg3_4){switch(arguments.length){ +case 2:return (clojure.JS.variadic(0,(function __clojure_core_fn_1748_partial_1750_fn_1752(){ var args_1=clojure.JS.rest_args(this,arguments,0); -return (clojure.core.apply.apply(null,[f_1,arg1_2,arg2_3,arg3_4,args_1]))}))) -case 3:return (clojure.JS.variadic(0,(function __clojure_core_fn_1132_partial_1134_fn_1140(){ +return (clojure.core.apply.apply(null,[f_1,arg1_2,args_1]))}))) +case 3:return (clojure.JS.variadic(0,(function __clojure_core_fn_1748_partial_1750_fn_1756(){ var args_1=clojure.JS.rest_args(this,arguments,0); return (clojure.core.apply.apply(null,[f_1,arg1_2,arg2_3,args_1]))}))) -case 2:return (clojure.JS.variadic(0,(function __clojure_core_fn_1132_partial_1134_fn_1136(){ +case 4:return (clojure.JS.variadic(0,(function __clojure_core_fn_1748_partial_1750_fn_1760(){ var args_1=clojure.JS.rest_args(this,arguments,0); -return (clojure.core.apply.apply(null,[f_1,arg1_2,args_1]))})))} +return (clojure.core.apply.apply(null,[f_1,arg1_2,arg2_3,arg3_4,args_1]))})))} var more_5=clojure.JS.rest_args(this,arguments,4); -return (clojure.JS.variadic(0,(function __clojure_core_fn_1132_partial_1134_fn_1148(){ +return (clojure.JS.variadic(0,(function __clojure_core_fn_1748_partial_1750_fn_1764(){ var args_1=clojure.JS.rest_args(this,arguments,0); return (clojure.core.apply.apply(null,[f_1,arg1_2,arg2_3,arg3_4,clojure.core.concat.apply(null,[more_5,args_1])]))})))}))))}).apply(null,[]); //====== //(defn every? "Returns true if (pred x) is logical true for every x in coll, else\n false." {:tag Boolean} [pred coll] (if (seq coll) (and (pred (first coll)) (recur pred (rest coll))) true)) //--- -(function __clojure_core_fn_1153(){ -return (clojure.JS.def(clojure.core,"every_QMARK_",(function __clojure_core_fn_1153_every_QMARK_1155(pred_1,coll_2){ -var _cnt,_rtn,and__410_3; -do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[coll_2]))?(((and__410_3=pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])])), -((and__410_3)?((_cnt=1,_rtn=[pred_1,clojure.core.rest.apply(null,[coll_2])],pred_1=_rtn[0],coll_2=_rtn[1])):(and__410_3)))):(true)) +(function __clojure_core_fn_1769(){ +return (clojure.JS.def(clojure.core,"every_QMARK_",(function __clojure_core_fn_1769_every_QMARK_1771(pred_1,coll_2){ +var _cnt,_rtn,and__960__auto___3; +do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[coll_2]))?(((and__960__auto___3=pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])])), +((and__960__auto___3)?((_cnt=1,_rtn=[pred_1,clojure.core.rest.apply(null,[coll_2])],pred_1=_rtn[0],coll_2=_rtn[1])):(and__960__auto___3)))):(true)) }while(_cnt);return _rtn;})))}).apply(null,[]); //====== //(def not-every? (comp not every?)) //--- -(function __clojure_core_fn_1159(){ +(function __clojure_core_fn_1776(){ return (clojure.JS.def(clojure.core,"not_every_QMARK_",clojure.core.comp.apply(null,[clojure.core.not,clojure.core.every_QMARK_])))}).apply(null,[]); //====== //(defn some "Returns the first logical true value of (pred x) for any x in coll,\n else nil." [pred coll] (when (seq coll) (or (pred (first coll)) (recur pred (rest coll))))) //--- -(function __clojure_core_fn_1162(){ -return (clojure.JS.def(clojure.core,"some",(function __clojure_core_fn_1162_some_1164(pred_1,coll_2){ -var _cnt,_rtn,or__424_3; -do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[coll_2]))?(((or__424_3=pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])])), -((or__424_3)?(or__424_3):((_cnt=1,_rtn=[pred_1,clojure.core.rest.apply(null,[coll_2])],pred_1=_rtn[0],coll_2=_rtn[1]))))):(null)) +(function __clojure_core_fn_1779(){ +return (clojure.JS.def(clojure.core,"some",(function __clojure_core_fn_1779_some_1781(pred_1,coll_2){ +var _cnt,_rtn,or__974__auto___3; +do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[coll_2]))?(((or__974__auto___3=pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])])), +((or__974__auto___3)?(or__974__auto___3):((_cnt=1,_rtn=[pred_1,clojure.core.rest.apply(null,[coll_2])],pred_1=_rtn[0],coll_2=_rtn[1]))))):(null)) }while(_cnt);return _rtn;})))}).apply(null,[]); //====== //(def not-any? (comp not some)) //--- -(function __clojure_core_fn_1168(){ +(function __clojure_core_fn_1786(){ return (clojure.JS.def(clojure.core,"not_any_QMARK_",clojure.core.comp.apply(null,[clojure.core.not,clojure.core.some])))}).apply(null,[]); //====== -//(defn map "Returns a lazy seq consisting of the result of applying f to the\n set of first items of each coll, followed by applying f to the set\n of second items in each coll, until any one of the colls is\n exhausted. Any remaining items in other colls are ignored. Function\n f should accept number-of-colls arguments." ([f coll] (when (seq coll) (lazy-cons (f (first coll)) (map f (rest coll))))) ([f c1 c2] (when (and (seq c1) (seq c2)) (lazy-cons (f (first c1) (first c2)) (map f (rest c1) (rest c2))))) ([f c1 c2 c3] (when (and (seq c1) (seq c2) (seq c3)) (lazy-cons (f (first c1) (first c2) (first c3)) (map f (rest c1) (rest c2) (rest c3))))) ([f c1 c2 c3 & colls] (let [step (fn step [cs] (when (every? seq cs) (lazy-cons (map first cs) (step (map rest cs)))))] (map (fn* [p1__1171] (apply f p1__1171)) (step (conj colls c3 c2 c1)))))) +//(defn map "Returns a lazy seq consisting of the result of applying f to the\n set of first items of each coll, followed by applying f to the set\n of second items in each coll, until any one of the colls is\n exhausted. Any remaining items in other colls are ignored. Function\n f should accept number-of-colls arguments." ([f coll] (when (seq coll) (lazy-cons (f (first coll)) (map f (rest coll))))) ([f c1 c2] (when (and (seq c1) (seq c2)) (lazy-cons (f (first c1) (first c2)) (map f (rest c1) (rest c2))))) ([f c1 c2 c3] (when (and (seq c1) (seq c2) (seq c3)) (lazy-cons (f (first c1) (first c2) (first c3)) (map f (rest c1) (rest c2) (rest c3))))) ([f c1 c2 c3 & colls] (let [step (fn step [cs] (when (every? seq cs) (lazy-cons (map first cs) (step (map rest cs)))))] (map (fn* [p1__1789] (apply f p1__1789)) (step (conj colls c3 c2 c1)))))) //--- -(function __clojure_core_fn_1172(){ -return (clojure.JS.def(clojure.core,"map",clojure.JS.variadic(4,(function __clojure_core_fn_1172_map_1174(f_1,c1_2,c2_3,c3_4){switch(arguments.length){ -case 4:var and__410_6,and__410_5; -return (((((and__410_5=clojure.core.seq.apply(null,[c1_2])), -((and__410_5)?(((and__410_6=clojure.core.seq.apply(null,[c2_3])), -((and__410_6)?(clojure.core.seq.apply(null,[c3_4])):(and__410_6)))):(and__410_5))))?((new clojure.lang.LazyCons((function __clojure_core_fn_1172_map_1174_fn_1189(G__1188_1){switch(arguments.length){ -case 0:return (f_1.apply(null,[clojure.core.first.apply(null,[c1_2]),clojure.core.first.apply(null,[c2_3]),clojure.core.first.apply(null,[c3_4])]))} -return (clojure.core.map.apply(null,[f_1,clojure.core.rest.apply(null,[c1_2]),clojure.core.rest.apply(null,[c2_3]),clojure.core.rest.apply(null,[c3_4])]))})))):(null))) +(function __clojure_core_fn_1790(){ +return (clojure.JS.def(clojure.core,"map",clojure.JS.variadic(4,(function __clojure_core_fn_1790_map_1792(f_1,c1_2,c2_3,c3_4){switch(arguments.length){ case 2:var coll_2=arguments[1]; -return (((clojure.core.seq.apply(null,[coll_2]))?((new clojure.lang.LazyCons((function __clojure_core_fn_1172_map_1174_fn_1177(G__1176_1){switch(arguments.length){ +return (((clojure.core.seq.apply(null,[coll_2]))?((new clojure.lang.LazyCons((function __clojure_core_fn_1790_map_1792_fn_1795(G__1794_1){switch(arguments.length){ case 0:return (f_1.apply(null,[clojure.core.first.apply(null,[coll_2])]))} return (clojure.core.map.apply(null,[f_1,clojure.core.rest.apply(null,[coll_2])]))})))):(null))) -case 3:var and__410_4; -return (((((and__410_4=clojure.core.seq.apply(null,[c1_2])), -((and__410_4)?(clojure.core.seq.apply(null,[c2_3])):(and__410_4))))?((new clojure.lang.LazyCons((function __clojure_core_fn_1172_map_1174_fn_1183(G__1182_1){switch(arguments.length){ +case 3:var and__960__auto___4; +return (((((and__960__auto___4=clojure.core.seq.apply(null,[c1_2])), +((and__960__auto___4)?(clojure.core.seq.apply(null,[c2_3])):(and__960__auto___4))))?((new clojure.lang.LazyCons((function __clojure_core_fn_1790_map_1792_fn_1801(G__1800_1){switch(arguments.length){ case 0:return (f_1.apply(null,[clojure.core.first.apply(null,[c1_2]),clojure.core.first.apply(null,[c2_3])]))} -return (clojure.core.map.apply(null,[f_1,clojure.core.rest.apply(null,[c1_2]),clojure.core.rest.apply(null,[c2_3])]))})))):(null)))} +return (clojure.core.map.apply(null,[f_1,clojure.core.rest.apply(null,[c1_2]),clojure.core.rest.apply(null,[c2_3])]))})))):(null))) +case 4:var and__960__auto___5,and__960__auto___6; +return (((((and__960__auto___5=clojure.core.seq.apply(null,[c1_2])), +((and__960__auto___5)?(((and__960__auto___6=clojure.core.seq.apply(null,[c2_3])), +((and__960__auto___6)?(clojure.core.seq.apply(null,[c3_4])):(and__960__auto___6)))):(and__960__auto___5))))?((new clojure.lang.LazyCons((function __clojure_core_fn_1790_map_1792_fn_1807(G__1806_1){switch(arguments.length){ +case 0:return (f_1.apply(null,[clojure.core.first.apply(null,[c1_2]),clojure.core.first.apply(null,[c2_3]),clojure.core.first.apply(null,[c3_4])]))} +return (clojure.core.map.apply(null,[f_1,clojure.core.rest.apply(null,[c1_2]),clojure.core.rest.apply(null,[c2_3]),clojure.core.rest.apply(null,[c3_4])]))})))):(null)))} var step_6,colls_5=clojure.JS.rest_args(this,arguments,4); -return (((step_6=(function __clojure_core_fn_1172_map_1174_step_1194(cs_1){ +return (((step_6=(function __clojure_core_fn_1790_map_1792_step_1812(cs_1){ var step_0=arguments.callee; -return (((clojure.core.every_QMARK_.apply(null,[clojure.core.seq,cs_1]))?((new clojure.lang.LazyCons((function __clojure_core_fn_1172_map_1174_step_1194_fn_1196(G__1195_1){switch(arguments.length){ +return (((clojure.core.every_QMARK_.apply(null,[clojure.core.seq,cs_1]))?((new clojure.lang.LazyCons((function __clojure_core_fn_1790_map_1792_step_1812_fn_1814(G__1813_1){switch(arguments.length){ case 0:return (clojure.core.map.apply(null,[clojure.core.first,cs_1]))} return (step_0.apply(null,[clojure.core.map.apply(null,[clojure.core.rest,cs_1])]))})))):(null)))})), -clojure.core.map.apply(null,[(function __clojure_core_fn_1172_map_1174_fn_1201(p1__1171_1){ -return (clojure.core.apply.apply(null,[f_1,p1__1171_1]))}),step_6.apply(null,[clojure.core.conj.apply(null,[colls_5,c3_4,c2_3,c1_2])])])))}))))}).apply(null,[]); +clojure.core.map.apply(null,[(function __clojure_core_fn_1790_map_1792_fn_1819(p1__1789_1){ +return (clojure.core.apply.apply(null,[f_1,p1__1789_1]))}),step_6.apply(null,[clojure.core.conj.apply(null,[colls_5,c3_4,c2_3,c1_2])])])))}))))}).apply(null,[]); //====== //(defn mapcat "Returns the result of applying concat to the result of applying map\n to f and colls. Thus function f should return a collection." [f & colls] (apply concat (apply map f colls))) //--- -(function __clojure_core_fn_1206(){ -return (clojure.JS.def(clojure.core,"mapcat",clojure.JS.variadic(1,(function __clojure_core_fn_1206_mapcat_1208(f_1){ +(function __clojure_core_fn_1827(){ +return (clojure.JS.def(clojure.core,"mapcat",clojure.JS.variadic(1,(function __clojure_core_fn_1827_mapcat_1829(f_1){ var colls_2=clojure.JS.rest_args(this,arguments,1); return (clojure.core.apply.apply(null,[clojure.core.concat,clojure.core.apply.apply(null,[clojure.core.map,f_1,colls_2])]))}))))}).apply(null,[]); //====== //(defn filter "Returns a lazy seq of the items in coll for which\n (pred item) returns true. pred must be free of side-effects." [pred coll] (when (seq coll) (if (pred (first coll)) (lazy-cons (first coll) (filter pred (rest coll))) (recur pred (rest coll))))) //--- -(function __clojure_core_fn_1212(){ -return (clojure.JS.def(clojure.core,"filter",(function __clojure_core_fn_1212_filter_1214(pred_1,coll_2){ +(function __clojure_core_fn_1833(){ +return (clojure.JS.def(clojure.core,"filter",(function __clojure_core_fn_1833_filter_1835(pred_1,coll_2){ var _cnt,_rtn; -do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[coll_2]))?(((pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])]))?((new clojure.lang.LazyCons((function __clojure_core_fn_1212_filter_1214_fn_1217(G__1216_1){switch(arguments.length){ +do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[coll_2]))?(((pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])]))?((new clojure.lang.LazyCons((function __clojure_core_fn_1833_filter_1835_fn_1838(G__1837_1){switch(arguments.length){ case 0:return (clojure.core.first.apply(null,[coll_2]))} return (clojure.core.filter.apply(null,[pred_1,clojure.core.rest.apply(null,[coll_2])]))})))):((_cnt=1,_rtn=[pred_1,clojure.core.rest.apply(null,[coll_2])],pred_1=_rtn[0],coll_2=_rtn[1])))):(null)) }while(_cnt);return _rtn;})))}).apply(null,[]); @@ -1075,10 +1161,10 @@ return (clojure.core.filter.apply(null,[pred_1,clojure.core.rest.apply(null,[col //====== //(defn remove "Returns a lazy seq of the items in coll for which\n (pred item) returns false. pred must be free of side-effects." [pred coll] (when (seq coll) (if (pred (first coll)) (recur pred (rest coll)) (lazy-cons (first coll) (remove pred (rest coll)))))) //--- -(function __clojure_core_fn_1223(){ -return (clojure.JS.def(clojure.core,"remove",(function __clojure_core_fn_1223_remove_1225(pred_1,coll_2){ +(function __clojure_core_fn_1844(){ +return (clojure.JS.def(clojure.core,"remove",(function __clojure_core_fn_1844_remove_1846(pred_1,coll_2){ var _cnt,_rtn; -do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[coll_2]))?(((pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])]))?((_cnt=1,_rtn=[pred_1,clojure.core.rest.apply(null,[coll_2])],pred_1=_rtn[0],coll_2=_rtn[1])):((new clojure.lang.LazyCons((function __clojure_core_fn_1223_remove_1225_fn_1228(G__1227_1){switch(arguments.length){ +do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[coll_2]))?(((pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])]))?((_cnt=1,_rtn=[pred_1,clojure.core.rest.apply(null,[coll_2])],pred_1=_rtn[0],coll_2=_rtn[1])):((new clojure.lang.LazyCons((function __clojure_core_fn_1844_remove_1846_fn_1849(G__1848_1){switch(arguments.length){ case 0:return (clojure.core.first.apply(null,[coll_2]))} return (clojure.core.remove.apply(null,[pred_1,clojure.core.rest.apply(null,[coll_2])]))})))))):(null)) }while(_cnt);return _rtn;})))}).apply(null,[]); @@ -1086,64 +1172,64 @@ return (clojure.core.remove.apply(null,[pred_1,clojure.core.rest.apply(null,[col //====== //(defn take "Returns a lazy seq of the first n items in coll, or all items if\n there are fewer than n." [n coll] (when (and (pos? n) (seq coll)) (lazy-cons (first coll) (when (> n 1) (take (dec n) (rest coll)))))) //--- -(function __clojure_core_fn_1234(){ -return (clojure.JS.def(clojure.core,"take",(function __clojure_core_fn_1234_take_1236(n_1,coll_2){ -var and__410_3; -return (((((and__410_3=clojure.lang.Numbers.isPos(n_1)), -((and__410_3)?(clojure.core.seq.apply(null,[coll_2])):(and__410_3))))?((new clojure.lang.LazyCons((function __clojure_core_fn_1234_take_1236_fn_1239(G__1238_1){switch(arguments.length){ +(function __clojure_core_fn_1855(){ +return (clojure.JS.def(clojure.core,"take",(function __clojure_core_fn_1855_take_1857(n_1,coll_2){ +var and__960__auto___3; +return (((((and__960__auto___3=clojure.lang.Numbers.isPos(n_1)), +((and__960__auto___3)?(clojure.core.seq.apply(null,[coll_2])):(and__960__auto___3))))?((new clojure.lang.LazyCons((function __clojure_core_fn_1855_take_1857_fn_1860(G__1859_1){switch(arguments.length){ case 0:return (clojure.core.first.apply(null,[coll_2]))} return (((clojure.lang.Numbers.gt(n_1,(1)))?(clojure.core.take.apply(null,[clojure.lang.Numbers.dec(n_1),clojure.core.rest.apply(null,[coll_2])])):(null)))})))):(null)))})))}).apply(null,[]); //====== //(defn take-while "Returns a lazy seq of successive items from coll while\n (pred item) returns true. pred must be free of side-effects." [pred coll] (when (and (seq coll) (pred (first coll))) (lazy-cons (first coll) (take-while pred (rest coll))))) //--- -(function __clojure_core_fn_1245(){ -return (clojure.JS.def(clojure.core,"take_while",(function __clojure_core_fn_1245_take_while_1247(pred_1,coll_2){ -var and__410_3; -return (((((and__410_3=clojure.core.seq.apply(null,[coll_2])), -((and__410_3)?(pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])])):(and__410_3))))?((new clojure.lang.LazyCons((function __clojure_core_fn_1245_take_while_1247_fn_1250(G__1249_1){switch(arguments.length){ +(function __clojure_core_fn_1867(){ +return (clojure.JS.def(clojure.core,"take_while",(function __clojure_core_fn_1867_take_while_1869(pred_1,coll_2){ +var and__960__auto___3; +return (((((and__960__auto___3=clojure.core.seq.apply(null,[coll_2])), +((and__960__auto___3)?(pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])])):(and__960__auto___3))))?((new clojure.lang.LazyCons((function __clojure_core_fn_1867_take_while_1869_fn_1872(G__1871_1){switch(arguments.length){ case 0:return (clojure.core.first.apply(null,[coll_2]))} return (clojure.core.take_while.apply(null,[pred_1,clojure.core.rest.apply(null,[coll_2])]))})))):(null)))})))}).apply(null,[]); //====== //(defn drop "Returns a lazy seq of all but the first n items in coll." [n coll] (if (and (pos? n) (seq coll)) (recur (dec n) (rest coll)) (seq coll))) //--- -(function __clojure_core_fn_1256(){ -return (clojure.JS.def(clojure.core,"drop",(function __clojure_core_fn_1256_drop_1258(n_1,coll_2){ -var _cnt,_rtn,and__410_3; -do{_cnt=0;_rtn=((((and__410_3=clojure.lang.Numbers.isPos(n_1)), -((and__410_3)?(clojure.core.seq.apply(null,[coll_2])):(and__410_3))))?((_cnt=1,_rtn=[clojure.lang.Numbers.dec(n_1),clojure.core.rest.apply(null,[coll_2])],n_1=_rtn[0],coll_2=_rtn[1])):(clojure.core.seq.apply(null,[coll_2]))) +(function __clojure_core_fn_1879(){ +return (clojure.JS.def(clojure.core,"drop",(function __clojure_core_fn_1879_drop_1881(n_1,coll_2){ +var _cnt,_rtn,and__960__auto___3; +do{_cnt=0;_rtn=((((and__960__auto___3=clojure.lang.Numbers.isPos(n_1)), +((and__960__auto___3)?(clojure.core.seq.apply(null,[coll_2])):(and__960__auto___3))))?((_cnt=1,_rtn=[clojure.lang.Numbers.dec(n_1),clojure.core.rest.apply(null,[coll_2])],n_1=_rtn[0],coll_2=_rtn[1])):(clojure.core.seq.apply(null,[coll_2]))) }while(_cnt);return _rtn;})))}).apply(null,[]); //====== //(defn drop-last "Return a lazy seq of all but the last n (default 1) items in coll" ([s] (drop-last 1 s)) ([n s] (map (fn [x _] x) (seq s) (drop n s)))) //--- -(function __clojure_core_fn_1262(){ -return (clojure.JS.def(clojure.core,"drop_last",(function __clojure_core_fn_1262_drop_last_1264(n_1,s_2){switch(arguments.length){ +(function __clojure_core_fn_1886(){ +return (clojure.JS.def(clojure.core,"drop_last",(function __clojure_core_fn_1886_drop_last_1888(n_1,s_2){switch(arguments.length){ case 1:var s_1=arguments[0]; return (clojure.core.drop_last.apply(null,[(1),s_1]))} -return (clojure.core.map.apply(null,[(function __clojure_core_fn_1262_drop_last_1264_fn_1267(x_1,__2){ +return (clojure.core.map.apply(null,[(function __clojure_core_fn_1886_drop_last_1888_fn_1891(x_1,__2){ return (x_1)}),clojure.core.seq.apply(null,[s_2]),clojure.core.drop.apply(null,[n_1,s_2])]))})))}).apply(null,[]); //====== //(defn drop-while "Returns a lazy seq of the items in coll starting from the first\n item for which (pred item) returns nil." [pred coll] (if (and (seq coll) (pred (first coll))) (recur pred (rest coll)) (seq coll))) //--- -(function __clojure_core_fn_1272(){ -return (clojure.JS.def(clojure.core,"drop_while",(function __clojure_core_fn_1272_drop_while_1274(pred_1,coll_2){ -var _cnt,_rtn,and__410_3; -do{_cnt=0;_rtn=((((and__410_3=clojure.core.seq.apply(null,[coll_2])), -((and__410_3)?(pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])])):(and__410_3))))?((_cnt=1,_rtn=[pred_1,clojure.core.rest.apply(null,[coll_2])],pred_1=_rtn[0],coll_2=_rtn[1])):(clojure.core.seq.apply(null,[coll_2]))) +(function __clojure_core_fn_1896(){ +return (clojure.JS.def(clojure.core,"drop_while",(function __clojure_core_fn_1896_drop_while_1898(pred_1,coll_2){ +var _cnt,_rtn,and__960__auto___3; +do{_cnt=0;_rtn=((((and__960__auto___3=clojure.core.seq.apply(null,[coll_2])), +((and__960__auto___3)?(pred_1.apply(null,[clojure.core.first.apply(null,[coll_2])])):(and__960__auto___3))))?((_cnt=1,_rtn=[pred_1,clojure.core.rest.apply(null,[coll_2])],pred_1=_rtn[0],coll_2=_rtn[1])):(clojure.core.seq.apply(null,[coll_2]))) }while(_cnt);return _rtn;})))}).apply(null,[]); //====== //(defn cycle "Returns a lazy (infinite!) seq of repetitions of the items in\n coll." [coll] (when (seq coll) (let [rep (fn thisfn [xs] (if xs (lazy-cons (first xs) (thisfn (rest xs))) (recur (seq coll))))] (rep (seq coll))))) //--- -(function __clojure_core_fn_1278(){ -return (clojure.JS.def(clojure.core,"cycle",(function __clojure_core_fn_1278_cycle_1280(coll_1){ +(function __clojure_core_fn_1903(){ +return (clojure.JS.def(clojure.core,"cycle",(function __clojure_core_fn_1903_cycle_1905(coll_1){ var rep_2; -return (((clojure.core.seq.apply(null,[coll_1]))?(((rep_2=(function __clojure_core_fn_1278_cycle_1280_thisfn_1282(xs_1){ +return (((clojure.core.seq.apply(null,[coll_1]))?(((rep_2=(function __clojure_core_fn_1903_cycle_1905_thisfn_1907(xs_1){ var _cnt,_rtn,thisfn_0=arguments.callee; -do{_cnt=0;_rtn=((xs_1)?((new clojure.lang.LazyCons((function __clojure_core_fn_1278_cycle_1280_thisfn_1282_fn_1284(G__1283_1){switch(arguments.length){ +do{_cnt=0;_rtn=((xs_1)?((new clojure.lang.LazyCons((function __clojure_core_fn_1903_cycle_1905_thisfn_1907_fn_1909(G__1908_1){switch(arguments.length){ case 0:return (clojure.core.first.apply(null,[xs_1]))} return (thisfn_0.apply(null,[clojure.core.rest.apply(null,[xs_1])]))})))):((_cnt=1,_rtn=[clojure.core.seq.apply(null,[coll_1])],xs_1=_rtn[0]))) }while(_cnt);return _rtn;})), @@ -1152,197 +1238,198 @@ rep_2.apply(null,[clojure.core.seq.apply(null,[coll_1])]))):(null)))})))}).apply //====== //(defn split-at "Returns a vector of [(take n coll) (drop n coll)]" [n coll] [(take n coll) (drop n coll)]) //--- -(function __clojure_core_fn_1291(){ -return (clojure.JS.def(clojure.core,"split_at",(function __clojure_core_fn_1291_split_at_1293(n_1,coll_2){ +(function __clojure_core_fn_1916(){ +return (clojure.JS.def(clojure.core,"split_at",(function __clojure_core_fn_1916_split_at_1918(n_1,coll_2){ return (clojure.JS.lit_vector([clojure.core.take.apply(null,[n_1,coll_2]),clojure.core.drop.apply(null,[n_1,coll_2])]))})))}).apply(null,[]); //====== //(defn split-with "Returns a vector of [(take-while pred coll) (drop-while pred coll)]" [pred coll] [(take-while pred coll) (drop-while pred coll)]) //--- -(function __clojure_core_fn_1297(){ -return (clojure.JS.def(clojure.core,"split_with",(function __clojure_core_fn_1297_split_with_1299(pred_1,coll_2){ +(function __clojure_core_fn_1922(){ +return (clojure.JS.def(clojure.core,"split_with",(function __clojure_core_fn_1922_split_with_1924(pred_1,coll_2){ return (clojure.JS.lit_vector([clojure.core.take_while.apply(null,[pred_1,coll_2]),clojure.core.drop_while.apply(null,[pred_1,coll_2])]))})))}).apply(null,[]); //====== //(defn repeat "Returns a lazy (infinite!) seq of xs." [x] (lazy-cons x (repeat x))) //--- -(function __clojure_core_fn_1303(){ -return (clojure.JS.def(clojure.core,"repeat",(function __clojure_core_fn_1303_repeat_1305(x_1){ -return ((new clojure.lang.LazyCons((function __clojure_core_fn_1303_repeat_1305_fn_1308(G__1307_1){switch(arguments.length){ +(function __clojure_core_fn_1928(){ +return (clojure.JS.def(clojure.core,"repeat",(function __clojure_core_fn_1928_repeat_1930(x_1){ +return ((new clojure.lang.LazyCons((function __clojure_core_fn_1928_repeat_1930_fn_1933(G__1932_1){switch(arguments.length){ case 0:return (x_1)} return (clojure.core.repeat.apply(null,[x_1]))}))))})))}).apply(null,[]); //====== //(defn replicate "Returns a lazy seq of n xs." [n x] (take n (repeat x))) //--- -(function __clojure_core_fn_1314(){ -return (clojure.JS.def(clojure.core,"replicate",(function __clojure_core_fn_1314_replicate_1316(n_1,x_2){ +(function __clojure_core_fn_1939(){ +return (clojure.JS.def(clojure.core,"replicate",(function __clojure_core_fn_1939_replicate_1941(n_1,x_2){ return (clojure.core.take.apply(null,[n_1,clojure.core.repeat.apply(null,[x_2])]))})))}).apply(null,[]); //====== //(defn iterate "Returns a lazy seq of x, (f x), (f (f x)) etc. f must be free of side-effects" [f x] (lazy-cons x (iterate f (f x)))) //--- -(function __clojure_core_fn_1320(){ -return (clojure.JS.def(clojure.core,"iterate",(function __clojure_core_fn_1320_iterate_1322(f_1,x_2){ -return ((new clojure.lang.LazyCons((function __clojure_core_fn_1320_iterate_1322_fn_1325(G__1324_1){switch(arguments.length){ +(function __clojure_core_fn_1945(){ +return (clojure.JS.def(clojure.core,"iterate",(function __clojure_core_fn_1945_iterate_1947(f_1,x_2){ +return ((new clojure.lang.LazyCons((function __clojure_core_fn_1945_iterate_1947_fn_1950(G__1949_1){switch(arguments.length){ case 0:return (x_2)} return (clojure.core.iterate.apply(null,[f_1,f_1.apply(null,[x_2])]))}))))})))}).apply(null,[]); //====== -//(defn range "Returns a lazy seq of nums from start (inclusive) to end\n (exclusive), by step, where start defaults to 0 and step to 1." ([end] (if (and (> end 0) (< end clojure.lang.RT/IntegerMaxValue)) (new clojure.lang.Range 0 end) (take end (iterate inc 0)))) ([start end] (if (and (< start end) (< end clojure.lang.RT/IntegerMaxValue)) (new clojure.lang.Range start end) (take (- end start) (iterate inc start)))) ([start end step] (take-while (partial (if (pos? step) > <) end) (iterate (partial + step) start)))) +//(defn range "Returns a lazy seq of nums from start (inclusive) to end\n (exclusive), by step, where start defaults to 0 and step to 1." ([end] (if (and (> end 0) (<= end clojure.lang.RT/IntegerMaxValue)) (new clojure.lang.Range 0 end) (take end (iterate inc 0)))) ([start end] (if (and (< start end) (>= start clojure.lang.RT/IntegerMinValue) (<= end clojure.lang.RT/IntegerMaxValue)) (new clojure.lang.Range start end) (take (- end start) (iterate inc start)))) ([start end step] (take-while (partial (if (pos? step) > <) end) (iterate (partial + step) start)))) //--- -(function __clojure_core_fn_1331(){ -return (clojure.JS.def(clojure.core,"range",(function __clojure_core_fn_1331_range_1333(start_1,end_2,step_3){switch(arguments.length){ -case 2:var and__410_3; -return (((((and__410_3=clojure.lang.Numbers.lt(start_1,end_2)), -((and__410_3)?(clojure.lang.Numbers.lt(end_2,clojure.JS.getOrRun(clojure.lang.RT,"IntegerMaxValue"))):(and__410_3))))?((new clojure.lang.Range(start_1,end_2))):(clojure.core.take.apply(null,[clojure.lang.Numbers.minus(end_2,start_1),clojure.core.iterate.apply(null,[clojure.core.inc,start_1])])))) -case 1:var and__410_2,end_1=arguments[0]; -return (((((and__410_2=clojure.lang.Numbers.gt(end_1,(0))), -((and__410_2)?(clojure.lang.Numbers.lt(end_1,clojure.JS.getOrRun(clojure.lang.RT,"IntegerMaxValue"))):(and__410_2))))?((new clojure.lang.Range((0),end_1))):(clojure.core.take.apply(null,[end_1,clojure.core.iterate.apply(null,[clojure.core.inc,(0)])]))))} +(function __clojure_core_fn_1956(){ +return (clojure.JS.def(clojure.core,"range",(function __clojure_core_fn_1956_range_1958(start_1,end_2,step_3){switch(arguments.length){ +case 1:var and__960__auto___2,end_1=arguments[0]; +return (((((and__960__auto___2=clojure.lang.Numbers.gt(end_1,(0))), +((and__960__auto___2)?(clojure.lang.Numbers.lte(end_1,clojure.JS.getOrRun(clojure.lang.RT,"IntegerMaxValue"))):(and__960__auto___2))))?((new clojure.lang.Range((0),end_1))):(clojure.core.take.apply(null,[end_1,clojure.core.iterate.apply(null,[clojure.core.inc,(0)])])))) +case 2:var and__960__auto___3,and__960__auto___4; +return (((((and__960__auto___3=clojure.lang.Numbers.lt(start_1,end_2)), +((and__960__auto___3)?(((and__960__auto___4=clojure.lang.Numbers.gte(start_1,clojure.JS.getOrRun(clojure.lang.RT,"IntegerMinValue"))), +((and__960__auto___4)?(clojure.lang.Numbers.lte(end_2,clojure.JS.getOrRun(clojure.lang.RT,"IntegerMaxValue"))):(and__960__auto___4)))):(and__960__auto___3))))?((new clojure.lang.Range(start_1,end_2))):(clojure.core.take.apply(null,[clojure.lang.Numbers.minus(end_2,start_1),clojure.core.iterate.apply(null,[clojure.core.inc,start_1])]))))} return (clojure.core.take_while.apply(null,[clojure.core.partial.apply(null,[((clojure.lang.Numbers.isPos(step_3))?(clojure.core._GT_):(clojure.core._LT_)),end_2]),clojure.core.iterate.apply(null,[clojure.core.partial.apply(null,[clojure.core._PLUS_,step_3]),start_1])]))})))}).apply(null,[]); //====== -//(defn merge "Returns a map that consists of the rest of the maps conj-ed onto\n the first. If a key occurs in more than one map, the mapping from\n the latter (left-to-right) will be the mapping in the result." [& maps] (when (some identity maps) (reduce (fn* [p1__1339 p2__1340] (conj (or p1__1339 {}) p2__1340)) maps))) +//(defn merge "Returns a map that consists of the rest of the maps conj-ed onto\n the first. If a key occurs in more than one map, the mapping from\n the latter (left-to-right) will be the mapping in the result." [& maps] (when (some identity maps) (reduce (fn* [p1__1967 p2__1968] (conj (or p1__1967 {}) p2__1968)) maps))) //--- -(function __clojure_core_fn_1341(){ -return (clojure.JS.def(clojure.core,"merge",clojure.JS.variadic(0,(function __clojure_core_fn_1341_merge_1343(){ +(function __clojure_core_fn_1969(){ +return (clojure.JS.def(clojure.core,"merge",clojure.JS.variadic(0,(function __clojure_core_fn_1969_merge_1971(){ var maps_1=clojure.JS.rest_args(this,arguments,0); -return (((clojure.core.some.apply(null,[clojure.core.identity,maps_1]))?(clojure.core.reduce.apply(null,[(function __clojure_core_fn_1341_merge_1343_fn_1345(p1__1339_1,p2__1340_2){ -var or__424_3; -return (clojure.core.conj.apply(null,[((or__424_3=p1__1339_1), -((or__424_3)?(or__424_3):(clojure.lang.PersistentHashMap.EMPTY))),p2__1340_2]))}),maps_1])):(null)))}))))}).apply(null,[]); +return (((clojure.core.some.apply(null,[clojure.core.identity,maps_1]))?(clojure.core.reduce.apply(null,[(function __clojure_core_fn_1969_merge_1971_fn_1973(p1__1967_1,p2__1968_2){ +var or__974__auto___3; +return (clojure.core.conj.apply(null,[((or__974__auto___3=p1__1967_1), +((or__974__auto___3)?(or__974__auto___3):(clojure.lang.PersistentArrayMap.EMPTY))),p2__1968_2]))}),maps_1])):(null)))}))))}).apply(null,[]); //====== //(defn merge-with "Returns a map that consists of the rest of the maps conj-ed onto\n the first. If a key occurs in more than one map, the mapping(s)\n from the latter (left-to-right) will be combined with the mapping in\n the result by calling (f val-in-result val-in-latter)." [f & maps] (when (some identity maps) (let [merge-entry (fn [m e] (let [k (key e) v (val e)] (if (contains? m k) (assoc m k (f (m k) v)) (assoc m k v)))) merge2 (fn [m1 m2] (reduce merge-entry (or m1 {}) (seq m2)))] (reduce merge2 maps)))) //--- -(function __clojure_core_fn_1350(){ -return (clojure.JS.def(clojure.core,"merge_with",clojure.JS.variadic(1,(function __clojure_core_fn_1350_merge_with_1352(f_1){ -var merge2_4,merge_entry_3,maps_2=clojure.JS.rest_args(this,arguments,1); -return (((clojure.core.some.apply(null,[clojure.core.identity,maps_2]))?(((merge_entry_3=(function __clojure_core_fn_1350_merge_with_1352_merge_entry_1354(m_1,e_2){ +(function __clojure_core_fn_1979(){ +return (clojure.JS.def(clojure.core,"merge_with",clojure.JS.variadic(1,(function __clojure_core_fn_1979_merge_with_1981(f_1){ +var merge_entry_3,merge2_4,maps_2=clojure.JS.rest_args(this,arguments,1); +return (((clojure.core.some.apply(null,[clojure.core.identity,maps_2]))?(((merge_entry_3=(function __clojure_core_fn_1979_merge_with_1981_merge_entry_1983(m_1,e_2){ var k_3,v_4; return (((k_3=clojure.core.key.apply(null,[e_2])), (v_4=clojure.core.val.apply(null,[e_2])), ((clojure.core.contains_QMARK_.apply(null,[m_1,k_3]))?(clojure.core.assoc.apply(null,[m_1,k_3,f_1.apply(null,[m_1.apply(null,[k_3]),v_4])])):(clojure.core.assoc.apply(null,[m_1,k_3,v_4])))))})), -(merge2_4=(function __clojure_core_fn_1350_merge_with_1352_merge2_1357(m1_1,m2_2){ -var or__424_3; -return (clojure.core.reduce.apply(null,[merge_entry_3,((or__424_3=m1_1), -((or__424_3)?(or__424_3):(clojure.lang.PersistentHashMap.EMPTY))),clojure.core.seq.apply(null,[m2_2])]))})), +(merge2_4=(function __clojure_core_fn_1979_merge_with_1981_merge2_1986(m1_1,m2_2){ +var or__974__auto___3; +return (clojure.core.reduce.apply(null,[merge_entry_3,((or__974__auto___3=m1_1), +((or__974__auto___3)?(or__974__auto___3):(clojure.lang.PersistentArrayMap.EMPTY))),clojure.core.seq.apply(null,[m2_2])]))})), clojure.core.reduce.apply(null,[merge2_4,maps_2]))):(null)))}))))}).apply(null,[]); //====== //(defn zipmap "Returns a map with the keys mapped to the corresponding vals." [keys vals] (loop [map {} ks (seq keys) vs (seq vals)] (if (and ks vs) (recur (assoc map (first ks) (first vs)) (rest ks) (rest vs)) map))) //--- -(function __clojure_core_fn_1362(){ -return (clojure.JS.def(clojure.core,"zipmap",(function __clojure_core_fn_1362_zipmap_1364(keys_1,vals_2){ -var and__410_6,ks_4,vs_5,map_3; -return (((function __loop(){var _rtn,_cnt;(map_3=clojure.lang.PersistentHashMap.EMPTY), +(function __clojure_core_fn_1992(){ +return (clojure.JS.def(clojure.core,"zipmap",(function __clojure_core_fn_1992_zipmap_1994(keys_1,vals_2){ +var map_3,ks_4,vs_5,and__960__auto___6; +return (((function __loop(){var _rtn,_cnt;(map_3=clojure.lang.PersistentArrayMap.EMPTY), (ks_4=clojure.core.seq.apply(null,[keys_1])), (vs_5=clojure.core.seq.apply(null,[vals_2]));do{_cnt=0; -_rtn=((((and__410_6=ks_4), -((and__410_6)?(vs_5):(and__410_6))))?((_cnt=1,_rtn=[clojure.core.assoc.apply(null,[map_3,clojure.core.first.apply(null,[ks_4]),clojure.core.first.apply(null,[vs_5])]),clojure.core.rest.apply(null,[ks_4]),clojure.core.rest.apply(null,[vs_5])],map_3=_rtn[0],ks_4=_rtn[1],vs_5=_rtn[2])):(map_3))}while(_cnt);return _rtn;})()))})))}).apply(null,[]); +_rtn=((((and__960__auto___6=ks_4), +((and__960__auto___6)?(vs_5):(and__960__auto___6))))?((_cnt=1,_rtn=[clojure.core.assoc.apply(null,[map_3,clojure.core.first.apply(null,[ks_4]),clojure.core.first.apply(null,[vs_5])]),clojure.core.rest.apply(null,[ks_4]),clojure.core.rest.apply(null,[vs_5])],map_3=_rtn[0],ks_4=_rtn[1],vs_5=_rtn[2])):(map_3))}while(_cnt);return _rtn;})()))})))}).apply(null,[]); //====== //(defn line-seq "Returns the lines of text from rdr as a lazy sequence of strings.\n rdr must implement java.io.BufferedReader." [rdr] (let [line (. rdr (readLine))] (when line (lazy-cons line (line-seq rdr))))) //--- -(function __clojure_core_fn_1368(){ -return (clojure.JS.def(clojure.core,"line_seq",(function __clojure_core_fn_1368_line_seq_1370(rdr_1){ +(function __clojure_core_fn_1999(){ +return (clojure.JS.def(clojure.core,"line_seq",(function __clojure_core_fn_1999_line_seq_2001(rdr_1){ var line_2; return (((line_2=(rdr_1).readLine()), -((line_2)?((new clojure.lang.LazyCons((function __clojure_core_fn_1368_line_seq_1370_fn_1373(G__1372_1){switch(arguments.length){ +((line_2)?((new clojure.lang.LazyCons((function __clojure_core_fn_1999_line_seq_2001_fn_2004(G__2003_1){switch(arguments.length){ case 0:return (line_2)} return (clojure.core.line_seq.apply(null,[rdr_1]))})))):(null))))})))}).apply(null,[]); //====== //(defn comparator "Returns an implementation of java.util.Comparator based upon pred." [pred] (fn [x y] (cond (pred x y) -1 (pred y x) 1 :else 0))) //--- -(function __clojure_core_fn_1379(){ -return (clojure.JS.def(clojure.core,"comparator",(function __clojure_core_fn_1379_comparator_1381(pred_1){ -return ((function __clojure_core_fn_1379_comparator_1381_fn_1383(x_1,y_2){ +(function __clojure_core_fn_2010(){ +return (clojure.JS.def(clojure.core,"comparator",(function __clojure_core_fn_2010_comparator_2012(pred_1){ +return ((function __clojure_core_fn_2010_comparator_2012_fn_2014(x_1,y_2){ return (((pred_1.apply(null,[x_1,y_2]))?((-1)):(((pred_1.apply(null,[y_2,x_1]))?((1)):(((clojure.core.keyword("","else"))?((0)):(null)))))))}))})))}).apply(null,[]); //====== //(defn sort "Returns a sorted sequence of the items in coll. If no comparator is\n supplied, uses compare. comparator must\n implement java.util.Comparator." ([coll] (sort compare coll)) ([comp coll] (when (and coll (not (zero? (count coll)))) (let [a (to-array coll)] (clojure.lang.RT/sortArray a comp) (seq a))))) //--- -(function __clojure_core_fn_1388(){ -return (clojure.JS.def(clojure.core,"sort",(function __clojure_core_fn_1388_sort_1390(comp_1,coll_2){switch(arguments.length){ +(function __clojure_core_fn_2019(){ +return (clojure.JS.def(clojure.core,"sort",(function __clojure_core_fn_2019_sort_2021(comp_1,coll_2){switch(arguments.length){ case 1:var coll_1=arguments[0]; return (clojure.core.sort.apply(null,[clojure.core.compare,coll_1]))} -var and__410_3,a_3; -return (((((and__410_3=coll_2), -((and__410_3)?(clojure.core.not.apply(null,[clojure.lang.Numbers.isZero(clojure.core.count.apply(null,[coll_2]))])):(and__410_3))))?(((a_3=clojure.core.to_array.apply(null,[coll_2])), +var and__960__auto___3,a_3; +return (((((and__960__auto___3=coll_2), +((and__960__auto___3)?(clojure.core.not.apply(null,[clojure.lang.Numbers.isZero(clojure.core.count.apply(null,[coll_2]))])):(and__960__auto___3))))?(((a_3=clojure.core.to_array.apply(null,[coll_2])), clojure.lang.RT.sortArray(a_3,comp_1), clojure.core.seq.apply(null,[a_3]))):(null)))})))}).apply(null,[]); //====== //(defn sort-by "Returns a sorted sequence of the items in coll, where the sort\n order is determined by comparing (keyfn item). If no comparator is\n supplied, uses compare. comparator must\n implement java.util.Comparator." ([keyfn coll] (sort-by keyfn compare coll)) ([keyfn comp coll] (sort (fn [x y] (. comp (compare (keyfn x) (keyfn y)))) coll))) //--- -(function __clojure_core_fn_1395(){ -return (clojure.JS.def(clojure.core,"sort_by",(function __clojure_core_fn_1395_sort_by_1397(keyfn_1,comp_2,coll_3){switch(arguments.length){ +(function __clojure_core_fn_2027(){ +return (clojure.JS.def(clojure.core,"sort_by",(function __clojure_core_fn_2027_sort_by_2029(keyfn_1,comp_2,coll_3){switch(arguments.length){ case 2:var coll_2=arguments[1]; return (clojure.core.sort_by.apply(null,[keyfn_1,clojure.core.compare,coll_2]))} -return (clojure.core.sort.apply(null,[(function __clojure_core_fn_1395_sort_by_1397_fn_1400(x_1,y_2){ +return (clojure.core.sort.apply(null,[(function __clojure_core_fn_2027_sort_by_2029_fn_2032(x_1,y_2){ return ((comp_2).compare(keyfn_1.apply(null,[x_1]),keyfn_1.apply(null,[y_2])))}),coll_3]))})))}).apply(null,[]); //====== //(defn partition "Returns a lazy sequence of lists of n items each, at offsets step\n apart. If step is not supplied, defaults to n, i.e. the partitions\n do not overlap." ([n coll] (partition n n coll)) ([n step coll] (when (seq coll) (let [p (take n coll)] (when (= n (count p)) (lazy-cons p (partition n step (drop step coll)))))))) //--- -(function __clojure_core_fn_1405(){ -return (clojure.JS.def(clojure.core,"partition",(function __clojure_core_fn_1405_partition_1407(n_1,step_2,coll_3){switch(arguments.length){ +(function __clojure_core_fn_2037(){ +return (clojure.JS.def(clojure.core,"partition",(function __clojure_core_fn_2037_partition_2039(n_1,step_2,coll_3){switch(arguments.length){ case 2:var coll_2=arguments[1]; return (clojure.core.partition.apply(null,[n_1,n_1,coll_2]))} var p_4; return (((clojure.core.seq.apply(null,[coll_3]))?(((p_4=clojure.core.take.apply(null,[n_1,coll_3])), -((clojure.lang.Util.equal(n_1,clojure.core.count.apply(null,[p_4])))?((new clojure.lang.LazyCons((function __clojure_core_fn_1405_partition_1407_fn_1411(G__1410_1){switch(arguments.length){ +((clojure.lang.Util.equal(n_1,clojure.core.count.apply(null,[p_4])))?((new clojure.lang.LazyCons((function __clojure_core_fn_2037_partition_2039_fn_2043(G__2042_1){switch(arguments.length){ case 0:return (p_4)} return (clojure.core.partition.apply(null,[n_1,step_2,clojure.core.drop.apply(null,[step_2,coll_3])]))})))):(null)))):(null)))})))}).apply(null,[]); // Skipping: (defn eval "Evaluates the form data structure (not text!) and returns the result." [form] (. clojure.lang.Compiler (eval form))) -// Skipping: (defmacro doseq "Repeatedly executes body (presumably for side-effects) with\n bindings and filtering as provided by \"for\". Does not retain\n the head of the sequence. Returns nil." [seq-exprs & body] (let [binds (reduce (fn [binds p] (if (instance? clojure.lang.Keyword (first p)) (conj (pop binds) (apply assoc (peek binds) p)) (conj binds {:init (second p), :name (first p)}))) [] (partition 2 seq-exprs)) emit (fn emit [bind & binds] (clojure.core/concat (clojure.core/list (quote clojure.core/loop)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote sq__1423)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/seq)) (clojure.core/list (:init bind))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (quote sq__1423)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (:name bind)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/first)) (clojure.core/list (quote sq__1423))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (or (:while bind) true)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (or (:when bind) true)) (clojure.core/list (if binds (apply emit binds) (clojure.core/concat (clojure.core/list (quote do)) body))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list (quote sq__1423))))))))))))))] (apply emit binds))) +// Skipping: (defmacro doseq "Repeatedly executes body (presumably for side-effects) with\n bindings and filtering as provided by \"for\". Does not retain\n the head of the sequence. Returns nil." [seq-exprs & body] (assert-args doseq (vector? seq-exprs) "a vector for its binding" (even? (count seq-exprs)) "an even number of forms in binding vector") (let [groups (reduce (fn [groups p] (if (keyword? (first p)) (conj (pop groups) (apply assoc (peek groups) p)) (conj groups {:bind (first p), :seq (second p)}))) [] (partition 2 seq-exprs)) emit (fn emit [group & more-groups] (clojure.core/concat (clojure.core/list (quote clojure.core/loop)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote sq__2055__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/seq)) (clojure.core/list (:seq group))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (quote sq__2055__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (:bind group)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/first)) (clojure.core/list (quote sq__2055__auto__))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (or (:while group) true)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (or (:when group) true)) (clojure.core/list (if more-groups (apply emit more-groups) (clojure.core/concat (clojure.core/list (quote do)) body))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list (quote sq__2055__auto__))))))))))))))] (apply emit groups))) //====== //(defn dorun "When lazy sequences are produced via functions that have side\n effects, any effects other than those needed to produce the first\n element in the seq do not occur until the seq is consumed. dorun can\n be used to force any effects. Walks through the successive rests of\n the seq, does not retain the head and returns nil." ([coll] (when (and (seq coll) (or (first coll) true)) (recur (rest coll)))) ([n coll] (when (and (seq coll) (pos? n) (or (first coll) true)) (recur (dec n) (rest coll))))) //--- -(function __clojure_core_fn_1443(){ -return (clojure.JS.def(clojure.core,"dorun",(function __clojure_core_fn_1443_dorun_1445(n_1,coll_2){switch(arguments.length){ -case 1:var _cnt,_rtn,and__410_2,or__424_3,coll_1=arguments[0]; -do{_cnt=0;_rtn=((((and__410_2=clojure.core.seq.apply(null,[coll_1])), -((and__410_2)?(((or__424_3=clojure.core.first.apply(null,[coll_1])), -((or__424_3)?(or__424_3):(true)))):(and__410_2))))?((_cnt=1,_rtn=[clojure.core.rest.apply(null,[coll_1])],coll_1=_rtn[0])):(null)) +(function __clojure_core_fn_2079(){ +return (clojure.JS.def(clojure.core,"dorun",(function __clojure_core_fn_2079_dorun_2081(n_1,coll_2){switch(arguments.length){ +case 1:var _cnt,_rtn,and__960__auto___2,or__974__auto___3,coll_1=arguments[0]; +do{_cnt=0;_rtn=((((and__960__auto___2=clojure.core.seq.apply(null,[coll_1])), +((and__960__auto___2)?(((or__974__auto___3=clojure.core.first.apply(null,[coll_1])), +((or__974__auto___3)?(or__974__auto___3):(true)))):(and__960__auto___2))))?((_cnt=1,_rtn=[clojure.core.rest.apply(null,[coll_1])],coll_1=_rtn[0])):(null)) }while(_cnt);return _rtn;} -var _cnt,_rtn,and__410_4,and__410_3,or__424_5; -do{_cnt=0;_rtn=((((and__410_3=clojure.core.seq.apply(null,[coll_2])), -((and__410_3)?(((and__410_4=clojure.lang.Numbers.isPos(n_1)), -((and__410_4)?(((or__424_5=clojure.core.first.apply(null,[coll_2])), -((or__424_5)?(or__424_5):(true)))):(and__410_4)))):(and__410_3))))?((_cnt=1,_rtn=[clojure.lang.Numbers.dec(n_1),clojure.core.rest.apply(null,[coll_2])],n_1=_rtn[0],coll_2=_rtn[1])):(null)) +var _cnt,_rtn,and__960__auto___3,and__960__auto___4,or__974__auto___5; +do{_cnt=0;_rtn=((((and__960__auto___3=clojure.core.seq.apply(null,[coll_2])), +((and__960__auto___3)?(((and__960__auto___4=clojure.lang.Numbers.isPos(n_1)), +((and__960__auto___4)?(((or__974__auto___5=clojure.core.first.apply(null,[coll_2])), +((or__974__auto___5)?(or__974__auto___5):(true)))):(and__960__auto___4)))):(and__960__auto___3))))?((_cnt=1,_rtn=[clojure.lang.Numbers.dec(n_1),clojure.core.rest.apply(null,[coll_2])],n_1=_rtn[0],coll_2=_rtn[1])):(null)) }while(_cnt);return _rtn;})))}).apply(null,[]); //====== //(defn doall "When lazy sequences are produced via functions that have side\n effects, any effects other than those needed to produce the first\n element in the seq do not occur until the seq is consumed. doall can\n be used to force any effects. Walks through the successive rests of\n the seq, retains the head and returns it, thus causing the entire\n seq to reside in memory at one time." ([coll] (dorun coll) coll) ([n coll] (dorun n coll) coll)) //--- -(function __clojure_core_fn_1450(){ -return (clojure.JS.def(clojure.core,"doall",(function __clojure_core_fn_1450_doall_1452(n_1,coll_2){switch(arguments.length){ +(function __clojure_core_fn_2091(){ +return (clojure.JS.def(clojure.core,"doall",(function __clojure_core_fn_2091_doall_2093(n_1,coll_2){switch(arguments.length){ case 1:var coll_1=arguments[0]; return (clojure.core.dorun.apply(null,[coll_1]), coll_1)} return (clojure.core.dorun.apply(null,[n_1,coll_2]), coll_2)})))}).apply(null,[]); -// Skipping: (defn await "Blocks the current thread (indefinitely!) until all actions\n dispatched thus far, from this thread or agent, to the agent(s) have\n occurred." [& agents] (when *agent* (throw (clojure.lang.RT/makeException "Can't await in agent action"))) (let [latch (new java.util.concurrent.CountDownLatch (count agents)) count-down (fn [agent] (. latch (countDown)) agent)] (doseq [agent agents] (send agent count-down)) (. latch (await)))) +// Skipping: (defn await "Blocks the current thread (indefinitely!) until all actions\n dispatched thus far, from this thread or agent, to the agent(s) have\n occurred." [& agents] (io! "await in transaction" (when *agent* (throw (clojure.lang.RT/makeException "Can't await in agent action"))) (let [latch (new java.util.concurrent.CountDownLatch (count agents)) count-down (fn [agent] (. latch (countDown)) agent)] (doseq [agent agents] (send agent count-down)) (. latch (await))))) //====== //(defn await1 [a] (when (pos? (.getQueueCount a)) (await a)) a) //--- -(function __clojure_core_fn_1466(){ -return (clojure.JS.def(clojure.core,"await1",(function __clojure_core_fn_1466_await1_1468(a_1){ +(function __clojure_core_fn_2108(){ +return (clojure.JS.def(clojure.core,"await1",(function __clojure_core_fn_2108_await1_2110(a_1){ return (((clojure.lang.Numbers.isPos((a_1).getQueueCount()))?(clojure.core.await.apply(null,[a_1])):(null)), a_1)})))}).apply(null,[]); -// Skipping: (defn await-for "Blocks the current thread until all actions dispatched thus\n far (from this thread or agent) to the agents have occurred, or the\n timeout (in milliseconds) has elapsed. Returns nil if returning due\n to timeout, non-nil otherwise." [timeout-ms & agents] (when *agent* (throw (clojure.lang.RT/makeException "Can't await in agent action"))) (let [latch (new java.util.concurrent.CountDownLatch (count agents)) count-down (fn [agent] (. latch (countDown)) agent)] (doseq [agent agents] (send agent count-down)) (. latch (await timeout-ms (. java.util.concurrent.TimeUnit MILLISECONDS))))) -// Skipping: (defmacro dotimes "bindings => name n\n\n Repeatedly executes body (presumably for side-effects) with name\n bound to integers from 0 through n-1." [bindings & body] (if (vector? bindings) (let [i (first bindings) n (second bindings)] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote n__1481)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/int)) (clojure.core/list n)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/loop)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list i) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/int)) (clojure.core/list 0)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/<)) (clojure.core/list i) (clojure.core/list (quote n__1481)))) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked-inc)) (clojure.core/list i))))))))))) (throw (IllegalArgumentException. "dotimes now requires a vector for its binding")))) -// Skipping: (defn import "import-list => (package-symbol class-name-symbols*)\n\n For each name in class-name-symbols, adds a mapping from name to the\n class named by package.name to the current namespace. Use :import in the ns \n macro in preference to calling this directly." [& import-lists] (when import-lists (let [ns *ns* pkg (ffirst import-lists) classes (rfirst import-lists)] (doseq [c classes] (. ns (importClass c (. Class (forName (str pkg "." c))))))) (apply import (rest import-lists)))) +// Skipping: (defn await-for "Blocks the current thread until all actions dispatched thus\n far (from this thread or agent) to the agents have occurred, or the\n timeout (in milliseconds) has elapsed. Returns nil if returning due\n to timeout, non-nil otherwise." [timeout-ms & agents] (io! "await-for in transaction" (when *agent* (throw (clojure.lang.RT/makeException "Can't await in agent action"))) (let [latch (new java.util.concurrent.CountDownLatch (count agents)) count-down (fn [agent] (. latch (countDown)) agent)] (doseq [agent agents] (send agent count-down)) (. latch (await timeout-ms (. java.util.concurrent.TimeUnit MILLISECONDS)))))) +// Skipping: (defmacro dotimes "bindings => name n\n\n Repeatedly executes body (presumably for side-effects) with name\n bound to integers from 0 through n-1." [bindings & body] (assert-args dotimes (vector? bindings) "a vector for its binding" (even? (count bindings)) "exactly 2 forms in binding vector") (let [i (first bindings) n (second bindings)] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote n__2124__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/int)) (clojure.core/list n)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/loop)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list i) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/int)) (clojure.core/list 0)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/<)) (clojure.core/list i) (clojure.core/list (quote n__2124__auto__)))) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked-inc)) (clojure.core/list i)))))))))))) +// Skipping: (defn import "import-list => (package-symbol class-name-symbols*)\n\n For each name in class-name-symbols, adds a mapping from name to the\n class named by package.name to the current namespace. Use :import in the ns \n macro in preference to calling this directly." [& import-symbols-or-lists] (let [ns *ns*] (doseq [spec import-symbols-or-lists] (if (symbol? spec) (let [n (name spec) dot (.lastIndexOf n (. clojure.lang.RT (intCast \.))) c (symbol (.substring n (inc dot)))] (. ns (importClass c (. clojure.lang.RT (classForName (name spec)))))) (let [pkg (first spec) classes (rest spec)] (doseq [c classes] (. ns (importClass c (. clojure.lang.RT (classForName (str pkg "." c))))))))))) //====== //(defn into-array "Returns an array with components set to the values in aseq. The array's\n component type is type if provided, or the type of the first value in\n aseq if present, or Object. All values in aseq must be compatible with\n the component type. Class objects for the primitive types can be obtained\n using, e.g., Integer/TYPE." ([aseq] (clojure.lang.RT/seqToTypedArray (seq aseq))) ([type aseq] (clojure.lang.RT/seqToTypedArray type (seq aseq)))) //--- -(function __clojure_core_fn_1497(){ -return (clojure.JS.def(clojure.core,"into_array",(function __clojure_core_fn_1497_into_array_1499(type_1,aseq_2){switch(arguments.length){ +(function __clojure_core_fn_2142(){ +return (clojure.JS.def(clojure.core,"into_array",(function __clojure_core_fn_2142_into_array_2144(type_1,aseq_2){switch(arguments.length){ case 1:var aseq_1=arguments[0]; return (clojure.lang.RT.seqToTypedArray(clojure.core.seq.apply(null,[aseq_1])))} return (clojure.lang.RT.seqToTypedArray(type_1,clojure.core.seq.apply(null,[aseq_2])))})))}).apply(null,[]); @@ -1350,8 +1437,8 @@ return (clojure.lang.RT.seqToTypedArray(type_1,clojure.core.seq.apply(null,[aseq //====== //(defn into "Returns a new coll consisting of to-coll with all of the items of\n from-coll conjoined." [to from] (let [ret to items (seq from)] (if items (recur (conj ret (first items)) (rest items)) ret))) //--- -(function __clojure_core_fn_1504(){ -return (clojure.JS.def(clojure.core,"into",(function __clojure_core_fn_1504_into_1506(to_1,from_2){ +(function __clojure_core_fn_2149(){ +return (clojure.JS.def(clojure.core,"into",(function __clojure_core_fn_2149_into_2151(to_1,from_2){ var _cnt,_rtn,ret_3,items_4; do{_cnt=0;_rtn=((ret_3=to_1), (items_4=clojure.core.seq.apply(null,[from_2])), @@ -1361,104 +1448,126 @@ do{_cnt=0;_rtn=((ret_3=to_1), //====== //(defn array [& items] (into-array items)) //--- -(function __clojure_core_fn_1510(){ -return (clojure.JS.def(clojure.core,"array",clojure.JS.variadic(0,(function __clojure_core_fn_1510_array_1512(){ +(function __clojure_core_fn_2155(){ +return (clojure.JS.def(clojure.core,"array",clojure.JS.variadic(0,(function __clojure_core_fn_2155_array_2157(){ var items_1=clojure.JS.rest_args(this,arguments,0); return (clojure.core.into_array.apply(null,[items_1]))}))))}).apply(null,[]); // Skipping: (defn class "Returns the Class of x" [x] (if (nil? x) x (. x (getClass)))) //====== -//(defn num "Coerce to Number" {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/num)) (clojure.core/list x))))), :tag Number} [x] (. clojure.lang.Numbers (num x))) +//(defn num "Coerce to Number" {:tag Number, :inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/num)) (clojure.core/list x)))))} [x] (. clojure.lang.Numbers (num x))) //--- -(function __clojure_core_fn_1522(){ -return (clojure.JS.def(clojure.core,"num",(function __clojure_core_fn_1522_num_1527(x_1){ +(function __clojure_core_fn_2167(){ +return (clojure.JS.def(clojure.core,"num",(function __clojure_core_fn_2167_num_2172(x_1){ return (clojure.lang.Numbers.num(x_1))})))}).apply(null,[]); //====== -//(defn int "Coerce to int" {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/intCast)) (clojure.core/list x))))), :tag Integer} [x] (. clojure.lang.RT (intCast x))) +//(defn int "Coerce to int" {:tag Integer, :inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/intCast)) (clojure.core/list x)))))} [x] (. clojure.lang.RT (intCast x))) //--- -(function __clojure_core_fn_1531(){ -return (clojure.JS.def(clojure.core,"int",(function __clojure_core_fn_1531_int_1536(x_1){ +(function __clojure_core_fn_2176(){ +return (clojure.JS.def(clojure.core,"int",(function __clojure_core_fn_2176_int_2181(x_1){ return (clojure.lang.RT.intCast(x_1))})))}).apply(null,[]); //====== -//(defn long "Coerce to long" {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/longCast)) (clojure.core/list x))))), :tag Long} [x] (. x (longValue))) +//(defn long "Coerce to long" {:tag Long, :inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/longCast)) (clojure.core/list x)))))} [x] (. x (longValue))) //--- -(function __clojure_core_fn_1540(){ -return (clojure.JS.def(clojure.core,"long",(function __clojure_core_fn_1540_long_1545(x_1){ +(function __clojure_core_fn_2185(){ +return (clojure.JS.def(clojure.core,"long",(function __clojure_core_fn_2185_long_2190(x_1){ return ((x_1).longValue())})))}).apply(null,[]); //====== -//(defn float "Coerce to float" {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/floatCast)) (clojure.core/list x))))), :tag Float} [x] (. x (floatValue))) +//(defn float "Coerce to float" {:tag Float, :inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/floatCast)) (clojure.core/list x)))))} [x] (. x (floatValue))) //--- -(function __clojure_core_fn_1549(){ -return (clojure.JS.def(clojure.core,"float",(function __clojure_core_fn_1549_float_1554(x_1){ +(function __clojure_core_fn_2194(){ +return (clojure.JS.def(clojure.core,"float",(function __clojure_core_fn_2194_float_2199(x_1){ return ((x_1).floatValue())})))}).apply(null,[]); //====== -//(defn double "Coerce to double" {:inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/doubleCast)) (clojure.core/list x))))), :tag Double} [x] (. x (doubleValue))) +//(defn double "Coerce to double" {:tag Double, :inline (fn [x] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/doubleCast)) (clojure.core/list x)))))} [x] (. x (doubleValue))) //--- -(function __clojure_core_fn_1558(){ -return (clojure.JS.def(clojure.core,"double",(function __clojure_core_fn_1558_double_1563(x_1){ +(function __clojure_core_fn_2203(){ +return (clojure.JS.def(clojure.core,"double",(function __clojure_core_fn_2203_double_2208(x_1){ return ((x_1).doubleValue())})))}).apply(null,[]); //====== //(defn short "Coerce to short" {:tag Short} [x] (. x (shortValue))) //--- -(function __clojure_core_fn_1567(){ -return (clojure.JS.def(clojure.core,"short_",(function __clojure_core_fn_1567_short_1569(x_1){ +(function __clojure_core_fn_2212(){ +return (clojure.JS.def(clojure.core,"short_",(function __clojure_core_fn_2212_short_2214(x_1){ return ((x_1).shortValue())})))}).apply(null,[]); //====== //(defn byte "Coerce to byte" {:tag Byte} [x] (. x (byteValue))) //--- -(function __clojure_core_fn_1573(){ -return (clojure.JS.def(clojure.core,"byte_",(function __clojure_core_fn_1573_byte_1575(x_1){ +(function __clojure_core_fn_2218(){ +return (clojure.JS.def(clojure.core,"byte_",(function __clojure_core_fn_2218_byte_2220(x_1){ return ((x_1).byteValue())})))}).apply(null,[]); //====== //(defn char "Coerce to char" {:tag Character} [x] (. clojure.lang.RT (charCast x))) //--- -(function __clojure_core_fn_1579(){ -return (clojure.JS.def(clojure.core,"char_",(function __clojure_core_fn_1579_char_1581(x_1){ +(function __clojure_core_fn_2224(){ +return (clojure.JS.def(clojure.core,"char_",(function __clojure_core_fn_2224_char_2226(x_1){ return (clojure.lang.RT.charCast(x_1))})))}).apply(null,[]); //====== //(defn boolean "Coerce to boolean" {:tag Boolean} [x] (if x true false)) //--- -(function __clojure_core_fn_1585(){ -return (clojure.JS.def(clojure.core,"boolean_",(function __clojure_core_fn_1585_boolean_1587(x_1){ +(function __clojure_core_fn_2230(){ +return (clojure.JS.def(clojure.core,"boolean_",(function __clojure_core_fn_2230_boolean_2232(x_1){ return (((x_1)?(true):(false)))})))}).apply(null,[]); -// Skipping: (defn bigint "Coerce to BigInteger" {:tag BigInteger} [x] (. BigInteger valueOf x)) -// Skipping: (defn bigdec "Coerce to BigDecimal" {:tag BigDecimal} [x] (. BigDecimal valueOf x)) +// Skipping: (defn number? "Returns true if x is a Number" [x] (instance? Number x)) +// Skipping: (defn integer? "Returns true if n is an integer" [n] (or (instance? Integer n) (instance? Long n) (instance? BigInteger n) (instance? Short n) (instance? Byte n))) + +//====== +//(defn ratio? "Returns true if n is a Ratio" [n] (instance? clojure.lang.Ratio n)) +//--- +(function __clojure_core_fn_2252(){ +return (clojure.JS.def(clojure.core,"ratio_QMARK_",(function __clojure_core_fn_2252_ratio_QMARK_2254(n_1){ +return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Ratio,n_1]))})))}).apply(null,[]); +// Skipping: (defn decimal? "Returns true if n is a BigDecimal" [n] (instance? BigDecimal n)) +// Skipping: (defn float? "Returns true if n is a floating point number" [n] (or (instance? Double n) (instance? Float n))) + +//====== +//(defn rational? [n] "Returns true if n is a rational number" (or (integer? n) (ratio? n) (decimal? n))) +//--- +(function __clojure_core_fn_2271(){ +return (clojure.JS.def(clojure.core,"rational_QMARK_",(function __clojure_core_fn_2271_rational_QMARK_2273(n_1){ +var or__974__auto___2,or__974__auto___3; +return ("Returns true if n is a rational number", +((or__974__auto___2=clojure.core.integer_QMARK_.apply(null,[n_1])), +((or__974__auto___2)?(or__974__auto___2):(((or__974__auto___3=clojure.core.ratio_QMARK_.apply(null,[n_1])), +((or__974__auto___3)?(or__974__auto___3):(clojure.core.decimal_QMARK_.apply(null,[n_1]))))))))})))}).apply(null,[]); +// Skipping: (defn bigint "Coerce to BigInteger" {:tag BigInteger} [x] (cond (instance? BigInteger x) x (decimal? x) (.toBigInteger x) (number? x) (BigInteger/valueOf (long x)) :else (BigInteger. x))) +// Skipping: (defn bigdec "Coerce to BigDecimal" {:tag BigDecimal} [x] (cond (decimal? x) x (float? x) (. BigDecimal valueOf (double x)) (instance? BigInteger x) (BigDecimal. x) (number? x) (BigDecimal/valueOf (long x)) :else (BigDecimal. x))) //====== //(def print-initialized false) //--- -(function __clojure_core_fn_1603(){ +(function __clojure_core_fn_2291(){ return (clojure.JS.def(clojure.core,"print_initialized",false))}).apply(null,[]); // Skipping: (defmulti print-method (fn [x writer] (class x))) //====== //(defmulti print-dup (fn [x writer] (class x))) //--- -(function __clojure_core_fn_1612(){ -return (clojure.JS.def(clojure.core,"print_dup",(new clojure.lang.MultiFn((function __clojure_core_fn_1612_fn_1614(x_1,writer_2){ +(function __clojure_core_fn_2300(){ +return (clojure.JS.def(clojure.core,"print_dup",(new clojure.lang.MultiFn((function __clojure_core_fn_2300_fn_2302(x_1,writer_2){ return (clojure.core.class_.apply(null,[x_1]))}),clojure.core.keyword("","default")))))}).apply(null,[]); //====== //(defn pr-on {:private true} [x w] (if *print-dup* (print-dup x w) (print-method x w)) nil) //--- -(function __clojure_core_fn_1618(){ -return (clojure.JS.def(clojure.core,"pr_on",(function __clojure_core_fn_1618_pr_on_1620(x_1,w_2){ +(function __clojure_core_fn_2306(){ +return (clojure.JS.def(clojure.core,"pr_on",(function __clojure_core_fn_2306_pr_on_2308(x_1,w_2){ return (((clojure.core._STAR_print_dup_STAR_)?(clojure.core.print_dup.apply(null,[x_1,w_2])):(clojure.core.print_method.apply(null,[x_1,w_2]))), null)})))}).apply(null,[]); //====== //(defn pr "Prints the object(s) to the output stream that is the current value\n of *out*. Prints the object(s), separated by spaces if there is\n more than one. By default, pr and prn print in a way that objects\n can be read by the reader" ([] nil) ([x] (pr-on x *out*)) ([x & more] (pr x) (. *out* (append \space)) (apply pr more))) //--- -(function __clojure_core_fn_1624(){ -return (clojure.JS.def(clojure.core,"pr",clojure.JS.variadic(1,(function __clojure_core_fn_1624_pr_1626(x_1){switch(arguments.length){ +(function __clojure_core_fn_2312(){ +return (clojure.JS.def(clojure.core,"pr",clojure.JS.variadic(1,(function __clojure_core_fn_2312_pr_2314(x_1){switch(arguments.length){ case 0:return (null) case 1:return (clojure.core.pr_on.apply(null,[x_1,clojure.core._STAR_out_STAR_]))} var more_2=clojure.JS.rest_args(this,arguments,1); @@ -1469,24 +1578,24 @@ clojure.core.apply.apply(null,[clojure.core.pr,more_2]))}))))}).apply(null,[]); //====== //(defn newline "Writes a newline to the output stream that is the current value of\n *out*" [] (. *out* (append \newline)) nil) //--- -(function __clojure_core_fn_1632(){ -return (clojure.JS.def(clojure.core,"newline",(function __clojure_core_fn_1632_newline_1634(){ +(function __clojure_core_fn_2320(){ +return (clojure.JS.def(clojure.core,"newline",(function __clojure_core_fn_2320_newline_2322(){ return ((clojure.core._STAR_out_STAR_).append("\n"), null)})))}).apply(null,[]); //====== //(defn flush "Flushes the output stream that is the current value of\n *out*" [] (. *out* (flush)) nil) //--- -(function __clojure_core_fn_1638(){ -return (clojure.JS.def(clojure.core,"flush",(function __clojure_core_fn_1638_flush_1640(){ +(function __clojure_core_fn_2326(){ +return (clojure.JS.def(clojure.core,"flush",(function __clojure_core_fn_2326_flush_2328(){ return ((clojure.core._STAR_out_STAR_).flush(), null)})))}).apply(null,[]); //====== //(defn prn "Same as pr followed by (newline). Observes *flush-on-newline*" [& more] (apply pr more) (newline) (when *flush-on-newline* (flush))) //--- -(function __clojure_core_fn_1644(){ -return (clojure.JS.def(clojure.core,"prn",clojure.JS.variadic(0,(function __clojure_core_fn_1644_prn_1646(){ +(function __clojure_core_fn_2332(){ +return (clojure.JS.def(clojure.core,"prn",clojure.JS.variadic(0,(function __clojure_core_fn_2332_prn_2334(){ var more_1=clojure.JS.rest_args(this,arguments,0); return (clojure.core.apply.apply(null,[clojure.core.pr,more_1]), clojure.core.newline.apply(null,[]), @@ -1495,8 +1604,8 @@ clojure.core.newline.apply(null,[]), //====== //(defn print "Prints the object(s) to the output stream that is the current value\n of *out*. print and println produce output for human consumption." [& more] (binding [*print-readably* nil] (apply pr more))) //--- -(function __clojure_core_fn_1650(){ -return (clojure.JS.def(clojure.core,"print",clojure.JS.variadic(0,(function __clojure_core_fn_1650_print_1652(){ +(function __clojure_core_fn_2338(){ +return (clojure.JS.def(clojure.core,"print",clojure.JS.variadic(0,(function __clojure_core_fn_2338_print_2340(){ var more_1=clojure.JS.rest_args(this,arguments,0); return (clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_print_readably_STAR_,null])), (function __try(){try{var _rtn=(clojure.core.apply.apply(null,[clojure.core.pr,more_1]))} @@ -1505,8 +1614,8 @@ finally{clojure.lang.Var.popThreadBindings()}return _rtn})())}))))}).apply(null, //====== //(defn println "Same as print followed by (newline)" [& more] (binding [*print-readably* nil] (apply prn more))) //--- -(function __clojure_core_fn_1656(){ -return (clojure.JS.def(clojure.core,"println",clojure.JS.variadic(0,(function __clojure_core_fn_1656_println_1658(){ +(function __clojure_core_fn_2344(){ +return (clojure.JS.def(clojure.core,"println",clojure.JS.variadic(0,(function __clojure_core_fn_2344_println_2346(){ var more_1=clojure.JS.rest_args(this,arguments,0); return (clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_print_readably_STAR_,null])), (function __try(){try{var _rtn=(clojure.core.apply.apply(null,[clojure.core.prn,more_1]))} @@ -1515,8 +1624,8 @@ finally{clojure.lang.Var.popThreadBindings()}return _rtn})())}))))}).apply(null, //====== //(defn read "Reads the next object from stream, which must be an instance of\n java.io.PushbackReader or some derivee. stream defaults to the\n current value of *in* ." ([] (read *in*)) ([stream] (read stream true nil)) ([stream eof-error? eof-value] (read stream eof-error? eof-value false)) ([stream eof-error? eof-value recursive?] (. clojure.lang.LispReader (read stream (boolean eof-error?) eof-value recursive?)))) //--- -(function __clojure_core_fn_1662(){ -return (clojure.JS.def(clojure.core,"read",(function __clojure_core_fn_1662_read_1664(stream_1,eof_error_QMARK__2,eof_value_3,recursive_QMARK__4){switch(arguments.length){ +(function __clojure_core_fn_2350(){ +return (clojure.JS.def(clojure.core,"read",(function __clojure_core_fn_2350_read_2352(stream_1,eof_error_QMARK__2,eof_value_3,recursive_QMARK__4){switch(arguments.length){ case 0:return (clojure.core.read.apply(null,[clojure.core._STAR_in_STAR_])) case 1:return (clojure.core.read.apply(null,[stream_1,true,null])) case 3:return (clojure.core.read.apply(null,[stream_1,eof_error_QMARK__2,eof_value_3,false]))} @@ -1525,52 +1634,60 @@ return (clojure.lang.LispReader.read(stream_1,clojure.core.boolean_.apply(null,[ //====== //(defn read-line "Reads the next line from stream that is the current value of *in* ." [] (. *in* (readLine))) //--- -(function __clojure_core_fn_1671(){ -return (clojure.JS.def(clojure.core,"read_line",(function __clojure_core_fn_1671_read_line_1673(){ +(function __clojure_core_fn_2359(){ +return (clojure.JS.def(clojure.core,"read_line",(function __clojure_core_fn_2359_read_line_2361(){ return ((clojure.core._STAR_in_STAR_).readLine())})))}).apply(null,[]); //====== //(defn read-string "Reads one object from the string s" [s] (clojure.lang.RT/readString s)) //--- -(function __clojure_core_fn_1677(){ -return (clojure.JS.def(clojure.core,"read_string",(function __clojure_core_fn_1677_read_string_1679(s_1){ +(function __clojure_core_fn_2365(){ +return (clojure.JS.def(clojure.core,"read_string",(function __clojure_core_fn_2365_read_string_2367(s_1){ return (clojure.lang.RT.readString(s_1))})))}).apply(null,[]); -// Skipping: (defmacro with-open "bindings => name init\n\n Evaluates body in a try expression with name bound to the value of\n init, and a finally clause that calls (.close name)." [bindings & body] (if (vector? bindings) (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list bindings) (clojure.core/list (clojure.core/concat (clojure.core/list (quote try)) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote finally)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/.close)) (clojure.core/list (first bindings))))))))) (throw (IllegalArgumentException. "with-open now requires a vector for its binding")))) + +//====== +//(defn subvec "Returns a persistent vector of the items in vector from\n start (inclusive) to end (exclusive). If end is not supplied,\n defaults to (count vector). This operation is O(1) and very fast, as\n the resulting vector shares structure with the original and no\n trimming is done." ([v start] (subvec v start (count v))) ([v start end] (. clojure.lang.RT (subvec v start end)))) +//--- +(function __clojure_core_fn_2371(){ +return (clojure.JS.def(clojure.core,"subvec",(function __clojure_core_fn_2371_subvec_2373(v_1,start_2,end_3){switch(arguments.length){ +case 2:return (clojure.core.subvec.apply(null,[v_1,start_2,clojure.core.count.apply(null,[v_1])]))} +return (clojure.lang.RT.subvec(v_1,start_2,end_3))})))}).apply(null,[]); +// Skipping: (defmacro with-open "bindings => [name init ...]\n\n Evaluates body in a try expression with names bound to the values\n of the inits, and a finally clause that calls (.close name) on each\n name in reverse order." [bindings & body] (assert-args with-open (vector? bindings) "a vector for its binding" (even? (count bindings)) "an even number of forms in binding vector") (cond (= (count bindings) 0) (clojure.core/concat (clojure.core/list (quote do)) body) (symbol? (bindings 0)) (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (subvec bindings 0 2)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote try)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/with-open)) (clojure.core/list (subvec bindings 2)) body)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote finally)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (bindings 0)) (clojure.core/list (quote clojure.core/close))))))))) :else (throw (IllegalArgumentException. "with-open only allows Symbols in bindings")))) // Skipping: (defmacro doto "Evaluates x then calls all of the methods and functions with the \n value of x supplied at the from of the given arguments. The forms\n are evaluated in order. Returns x.\n\n (doto (new java.util.HashMap) (.put \"a\" 1) (.put \"b\" 2))" [x & forms] (let [gx (gensym)] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list gx) (clojure.core/list x)))) (map (fn [f] (if (seq? f) (clojure.core/concat (clojure.core/list (first f)) (clojure.core/list gx) (rest f)) (clojure.core/concat (clojure.core/list f) (clojure.core/list gx)))) forms) (clojure.core/list gx)))) -// Skipping: (defmacro memfn "Expands into code that creates a fn that expects to be passed an\n object and any args and calls the named instance method on the\n object passing the args. Use when you want to treat a Java method as\n a first-class fn." [name & args] (clojure.core/concat (clojure.core/list (quote clojure.core/fn)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote target__1707)) args))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote target__1707)) (clojure.core/list (clojure.core/concat (clojure.core/list name) args)))))) -// Skipping: (defmacro time "Evaluates expr and prints the time it took. Returns the value of\n expr." [expr] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote start__1717)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote java.lang.System)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/nanoTime)))))) (clojure.core/list (quote ret__1718)) (clojure.core/list expr)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/prn)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/str)) (clojure.core/list "Elapsed time: ") (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core//)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/double)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/-)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote java.lang.System)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/nanoTime)))))) (clojure.core/list (quote start__1717)))))) (clojure.core/list 1000000.0))) (clojure.core/list " msecs"))))) (clojure.core/list (quote ret__1718)))) +// Skipping: (defmacro memfn "Expands into code that creates a fn that expects to be passed an\n object and any args and calls the named instance method on the\n object passing the args. Use when you want to treat a Java method as\n a first-class fn." [name & args] (clojure.core/concat (clojure.core/list (quote clojure.core/fn)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote target__2402__auto__)) args))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote target__2402__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list name) args)))))) +// Skipping: (defmacro time "Evaluates expr and prints the time it took. Returns the value of\n expr." [expr] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote start__2412__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote java.lang.System)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/nanoTime)))))) (clojure.core/list (quote ret__2413__auto__)) (clojure.core/list expr)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/prn)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/str)) (clojure.core/list "Elapsed time: ") (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core//)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/double)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/-)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote java.lang.System)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/nanoTime)))))) (clojure.core/list (quote start__2412__auto__)))))) (clojure.core/list 1000000.0))) (clojure.core/list " msecs"))))) (clojure.core/list (quote ret__2413__auto__)))) //====== //(import (quote (java.lang.reflect Array))) //--- -(function __clojure_core_fn_1728(){ +(function __clojure_core_fn_2423(){ return (clojure.core.import_.apply(null,[clojure.JS.lit_list([clojure.core.symbol("java.lang.reflect"),clojure.core.symbol("Array")])]))}).apply(null,[]); //====== //(import (quote (clojure.lang RT))) //--- -(function __clojure_core_fn_1731(){ +(function __clojure_core_fn_2426(){ return (clojure.core.import_.apply(null,[clojure.JS.lit_list([clojure.core.symbol("clojure.lang"),clojure.core.symbol("RT")])]))}).apply(null,[]); //====== //(defn alength "Returns the length of the Java array. Works on arrays of all\n types." {:inline (fn [a] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/alength)) (clojure.core/list a)))))} [array] (. clojure.lang.RT (alength array))) //--- -(function __clojure_core_fn_1734(){ -return (clojure.JS.def(clojure.core,"alength",(function __clojure_core_fn_1734_alength_1739(array_1){ +(function __clojure_core_fn_2429(){ +return (clojure.JS.def(clojure.core,"alength",(function __clojure_core_fn_2429_alength_2434(array_1){ return (clojure.lang.RT.alength(array_1))})))}).apply(null,[]); //====== //(defn aclone "Returns a clone of the Java array. Works on arrays of known\n types." {:inline (fn [a] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/aclone)) (clojure.core/list a)))))} [array] (. clojure.lang.RT (aclone array))) //--- -(function __clojure_core_fn_1743(){ -return (clojure.JS.def(clojure.core,"aclone",(function __clojure_core_fn_1743_aclone_1748(array_1){ +(function __clojure_core_fn_2438(){ +return (clojure.JS.def(clojure.core,"aclone",(function __clojure_core_fn_2438_aclone_2443(array_1){ return (clojure.lang.RT.aclone(array_1))})))}).apply(null,[]); //====== //(defn aget "Returns the value at the index/indices. Works on Java arrays of all\n types." {:inline (fn [a i] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/aget)) (clojure.core/list a) (clojure.core/list i))))), :inline-arities #{2}} ([array idx] (clojure.lang.Reflector/prepRet (RT/aget array idx))) ([array idx & idxs] (apply aget (aget array idx) idxs))) //--- -(function __clojure_core_fn_1752(){ -return (clojure.JS.def(clojure.core,"aget",clojure.JS.variadic(2,(function __clojure_core_fn_1752_aget_1757(array_1,idx_2){switch(arguments.length){ +(function __clojure_core_fn_2447(){ +return (clojure.JS.def(clojure.core,"aget",clojure.JS.variadic(2,(function __clojure_core_fn_2447_aget_2452(array_1,idx_2){switch(arguments.length){ case 2:return (clojure.lang.Reflector.prepRet(clojure.lang.RT.aget(array_1,idx_2)))} var idxs_3=clojure.JS.rest_args(this,arguments,2); return (clojure.core.apply.apply(null,[clojure.core.aget,clojure.lang.RT.aget(array_1,idx_2),idxs_3]))}))))}).apply(null,[]); @@ -1578,14 +1695,14 @@ return (clojure.core.apply.apply(null,[clojure.core.aget,clojure.lang.RT.aget(ar //====== //(defn aset "Sets the value at the index/indices. Works on Java arrays of\n reference types. Returns val." {:inline (fn [a i v] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.RT)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/aset)) (clojure.core/list a) (clojure.core/list i) (clojure.core/list v))))), :inline-arities #{3}} ([array idx val] (RT/aset array idx val) val) ([array idx idx2 & idxv] (apply aset (aget array idx) idx2 idxv))) //--- -(function __clojure_core_fn_1762(){ -return (clojure.JS.def(clojure.core,"aset",clojure.JS.variadic(3,(function __clojure_core_fn_1762_aset_1767(array_1,idx_2,idx2_3){switch(arguments.length){ +(function __clojure_core_fn_2457(){ +return (clojure.JS.def(clojure.core,"aset",clojure.JS.variadic(3,(function __clojure_core_fn_2457_aset_2462(array_1,idx_2,idx2_3){switch(arguments.length){ case 3:var val_3=arguments[2]; return (clojure.lang.RT.aset(array_1,idx_2,val_3), val_3)} var idxv_4=clojure.JS.rest_args(this,arguments,3); return (clojure.core.apply.apply(null,[clojure.core.aset,clojure.lang.RT.aget(array_1,idx_2),idx2_3,idxv_4]))}))))}).apply(null,[]); -// Skipping: (defmacro def-aset [name method coerce] (clojure.core/concat (clojure.core/list (quote clojure.core/defn)) (clojure.core/list name) (clojure.core/list (clojure.core/apply clojure.core/hash-map (clojure.core/concat (clojure.core/list :arglists) (clojure.core/list (clojure.core/concat (clojure.core/list (quote quote)) (clojure.core/list (clojure.core/concat (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote array)) (clojure.core/list (quote idx)) (clojure.core/list (quote val))))) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote array)) (clojure.core/list (quote idx)) (clojure.core/list (quote idx2)) (clojure.core/list (quote &)) (clojure.core/list (quote idxv)))))))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote array__1772)) (clojure.core/list (quote idx__1773)) (clojure.core/list (quote val__1774))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote java.lang.reflect.Array)) (clojure.core/list (clojure.core/concat (clojure.core/list method) (clojure.core/list (quote array__1772)) (clojure.core/list (quote idx__1773)) (clojure.core/list (clojure.core/concat (clojure.core/list coerce) (clojure.core/list (quote val__1774)))))))) (clojure.core/list (quote val__1774)))) (clojure.core/list (clojure.core/concat (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote array__1772)) (clojure.core/list (quote idx__1773)) (clojure.core/list (quote idx2__1775)) (clojure.core/list (quote &)) (clojure.core/list (quote idxv__1776))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/apply)) (clojure.core/list name) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/aget)) (clojure.core/list (quote array__1772)) (clojure.core/list (quote idx__1773)))) (clojure.core/list (quote idx2__1775)) (clojure.core/list (quote idxv__1776)))))))) +// Skipping: (defmacro def-aset [name method coerce] (clojure.core/concat (clojure.core/list (quote clojure.core/defn)) (clojure.core/list name) (clojure.core/list (clojure.core/apply clojure.core/hash-map (clojure.core/concat (clojure.core/list :arglists) (clojure.core/list (clojure.core/concat (clojure.core/list (quote quote)) (clojure.core/list (clojure.core/concat (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote array)) (clojure.core/list (quote idx)) (clojure.core/list (quote val))))) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote array)) (clojure.core/list (quote idx)) (clojure.core/list (quote idx2)) (clojure.core/list (quote &)) (clojure.core/list (quote idxv)))))))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote array__2467__auto__)) (clojure.core/list (quote idx__2468__auto__)) (clojure.core/list (quote val__2469__auto__))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote java.lang.reflect.Array)) (clojure.core/list (clojure.core/concat (clojure.core/list method) (clojure.core/list (quote array__2467__auto__)) (clojure.core/list (quote idx__2468__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list coerce) (clojure.core/list (quote val__2469__auto__)))))))) (clojure.core/list (quote val__2469__auto__)))) (clojure.core/list (clojure.core/concat (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote array__2467__auto__)) (clojure.core/list (quote idx__2468__auto__)) (clojure.core/list (quote idx2__2470__auto__)) (clojure.core/list (quote &)) (clojure.core/list (quote idxv__2471__auto__))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/apply)) (clojure.core/list name) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/aget)) (clojure.core/list (quote array__2467__auto__)) (clojure.core/list (quote idx__2468__auto__)))) (clojure.core/list (quote idx2__2470__auto__)) (clojure.core/list (quote idxv__2471__auto__)))))))) // Skipping: (def-aset aset-int setInt int) // Skipping: (def-aset aset-long setLong long) // Skipping: (def-aset aset-boolean setBoolean boolean) @@ -1602,8 +1719,8 @@ return (clojure.core.apply.apply(null,[clojure.core.aset,clojure.lang.RT.aget(ar //====== //(defn create-struct "Returns a structure basis object." [& keys] (. clojure.lang.PersistentStructMap (createSlotMap keys))) //--- -(function __clojure_core_fn_1867(){ -return (clojure.JS.def(clojure.core,"create_struct",clojure.JS.variadic(0,(function __clojure_core_fn_1867_create_struct_1869(){ +(function __clojure_core_fn_2563(){ +return (clojure.JS.def(clojure.core,"create_struct",clojure.JS.variadic(0,(function __clojure_core_fn_2563_create_struct_2565(){ var keys_1=clojure.JS.rest_args(this,arguments,0); return (clojure.lang.PersistentStructMap.createSlotMap(keys_1))}))))}).apply(null,[]); // Skipping: (defmacro defstruct "Same as (def name (create-struct keys...))" [name & keys] (clojure.core/concat (clojure.core/list (quote def)) (clojure.core/list name) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/create-struct)) keys)))) @@ -1611,54 +1728,46 @@ return (clojure.lang.PersistentStructMap.createSlotMap(keys_1))}))))}).apply(nul //====== //(defn struct-map "Returns a new structmap instance with the keys of the\n structure-basis. keyvals may contain all, some or none of the basis\n keys - where values are not supplied they will default to nil.\n keyvals can also contain keys not in the basis." [s & inits] (. clojure.lang.PersistentStructMap (create s inits))) //--- -(function __clojure_core_fn_1882(){ -return (clojure.JS.def(clojure.core,"struct_map",clojure.JS.variadic(1,(function __clojure_core_fn_1882_struct_map_1884(s_1){ +(function __clojure_core_fn_2578(){ +return (clojure.JS.def(clojure.core,"struct_map",clojure.JS.variadic(1,(function __clojure_core_fn_2578_struct_map_2580(s_1){ var inits_2=clojure.JS.rest_args(this,arguments,1); return (clojure.lang.PersistentStructMap.create(s_1,inits_2))}))))}).apply(null,[]); //====== //(defn struct "Returns a new structmap instance with the keys of the\n structure-basis. vals must be supplied for basis keys in order -\n where values are not supplied they will default to nil." [s & vals] (. clojure.lang.PersistentStructMap (construct s vals))) //--- -(function __clojure_core_fn_1888(){ -return (clojure.JS.def(clojure.core,"struct",clojure.JS.variadic(1,(function __clojure_core_fn_1888_struct_1890(s_1){ +(function __clojure_core_fn_2584(){ +return (clojure.JS.def(clojure.core,"struct",clojure.JS.variadic(1,(function __clojure_core_fn_2584_struct_2586(s_1){ var vals_2=clojure.JS.rest_args(this,arguments,1); return (clojure.lang.PersistentStructMap.construct(s_1,vals_2))}))))}).apply(null,[]); //====== //(defn accessor "Returns a fn that, given an instance of a structmap with the basis,\n returns the value at the key. The key must be in the basis. The\n returned function should be (slightly) more efficient than using\n get, but such use of accessors should be limited to known\n performance-critical areas." [s key] (. clojure.lang.PersistentStructMap (getAccessor s key))) //--- -(function __clojure_core_fn_1894(){ -return (clojure.JS.def(clojure.core,"accessor",(function __clojure_core_fn_1894_accessor_1896(s_1,key_2){ +(function __clojure_core_fn_2590(){ +return (clojure.JS.def(clojure.core,"accessor",(function __clojure_core_fn_2590_accessor_2592(s_1,key_2){ return (clojure.lang.PersistentStructMap.getAccessor(s_1,key_2))})))}).apply(null,[]); - -//====== -//(defn subvec "Returns a persistent vector of the items in vector from\n start (inclusive) to end (exclusive). If end is not supplied,\n defaults to (count vector). This operation is O(1) and very fast, as\n the resulting vector shares structure with the original and no\n trimming is done." ([v start] (subvec v start (count v))) ([v start end] (. clojure.lang.RT (subvec v start end)))) -//--- -(function __clojure_core_fn_1900(){ -return (clojure.JS.def(clojure.core,"subvec",(function __clojure_core_fn_1900_subvec_1902(v_1,start_2,end_3){switch(arguments.length){ -case 2:return (clojure.core.subvec.apply(null,[v_1,start_2,clojure.core.count.apply(null,[v_1])]))} -return (clojure.lang.RT.subvec(v_1,start_2,end_3))})))}).apply(null,[]); // Skipping: (defn load-reader "Sequentially read and evaluate the set of forms contained in the\n stream/file" [rdr] (. clojure.lang.Compiler (load rdr))) // Skipping: (defn load-string "Sequentially read and evaluate the set of forms contained in the\n string" [s] (let [rdr (-> (java.io.StringReader. s) (clojure.lang.LineNumberingPushbackReader.))] (load-reader rdr))) //====== //(defn resultset-seq "Creates and returns a lazy sequence of structmaps corresponding to\n the rows in the java.sql.ResultSet rs" [rs] (let [rsmeta (. rs (getMetaData)) idxs (range 1 (inc (. rsmeta (getColumnCount)))) keys (map (comp keyword (memfn toLowerCase)) (map (fn [i] (. rsmeta (getColumnName i))) idxs)) row-struct (apply create-struct keys) row-values (fn [] (map (fn [i] (. rs (getObject i))) idxs)) rows (fn thisfn [] (when (. rs (next)) (lazy-cons (apply struct row-struct (row-values)) (thisfn))))] (rows))) //--- -(function __clojure_core_fn_1919(){ -return (clojure.JS.def(clojure.core,"resultset_seq",(function __clojure_core_fn_1919_resultset_seq_1921(rs_1){ -var row_struct_5,keys_4,row_values_6,rows_7,rsmeta_2,idxs_3; +(function __clojure_core_fn_2608(){ +return (clojure.JS.def(clojure.core,"resultset_seq",(function __clojure_core_fn_2608_resultset_seq_2610(rs_1){ +var rsmeta_2,idxs_3,keys_4,row_struct_5,row_values_6,rows_7; return (((rsmeta_2=(rs_1).getMetaData()), (idxs_3=clojure.core.range.apply(null,[(1),clojure.lang.Numbers.inc((rsmeta_2).getColumnCount())])), -(keys_4=clojure.core.map.apply(null,[clojure.core.comp.apply(null,[clojure.core.keyword,(function __clojure_core_fn_1919_resultset_seq_1921_fn_1923(target__1707_1){ -return ((target__1707_1).toLowerCase())})]),clojure.core.map.apply(null,[(function __clojure_core_fn_1919_resultset_seq_1921_fn_1926(i_1){ +(keys_4=clojure.core.map.apply(null,[clojure.core.comp.apply(null,[clojure.core.keyword,(function __clojure_core_fn_2608_resultset_seq_2610_fn_2612(target__2402__auto___1){ +return ((target__2402__auto___1).toLowerCase())})]),clojure.core.map.apply(null,[(function __clojure_core_fn_2608_resultset_seq_2610_fn_2615(i_1){ return ((rsmeta_2).getColumnName(i_1))}),idxs_3])])), (row_struct_5=clojure.core.apply.apply(null,[clojure.core.create_struct,keys_4])), -(row_values_6=(function __clojure_core_fn_1919_resultset_seq_1921_row_values_1929(){ -return (clojure.core.map.apply(null,[(function __clojure_core_fn_1919_resultset_seq_1921_row_values_1929_fn_1931(i_1){ +(row_values_6=(function __clojure_core_fn_2608_resultset_seq_2610_row_values_2618(){ +return (clojure.core.map.apply(null,[(function __clojure_core_fn_2608_resultset_seq_2610_row_values_2618_fn_2620(i_1){ return ((rs_1).getObject(i_1))}),idxs_3]))})), -(rows_7=(function __clojure_core_fn_1919_resultset_seq_1921_thisfn_1935(){ +(rows_7=(function __clojure_core_fn_2608_resultset_seq_2610_thisfn_2624(){ var thisfn_0=arguments.callee; -return ((((rs_1).next())?((new clojure.lang.LazyCons((function __clojure_core_fn_1919_resultset_seq_1921_thisfn_1935_fn_1937(G__1936_1){switch(arguments.length){ +return ((((rs_1).next())?((new clojure.lang.LazyCons((function __clojure_core_fn_2608_resultset_seq_2610_thisfn_2624_fn_2626(G__2625_1){switch(arguments.length){ case 0:return (clojure.core.apply.apply(null,[clojure.core.struct,row_struct_5,row_values_6.apply(null,[])]))} return (thisfn_0.apply(null,[]))})))):(null)))})), rows_7.apply(null,[])))})))}).apply(null,[]); @@ -1666,184 +1775,184 @@ rows_7.apply(null,[])))})))}).apply(null,[]); //====== //(defn set "Returns a set of the distinct elements of coll." [coll] (apply hash-set coll)) //--- -(function __clojure_core_fn_1944(){ -return (clojure.JS.def(clojure.core,"set",(function __clojure_core_fn_1944_set_1946(coll_1){ +(function __clojure_core_fn_2633(){ +return (clojure.JS.def(clojure.core,"set",(function __clojure_core_fn_2633_set_2635(coll_1){ return (clojure.core.apply.apply(null,[clojure.core.hash_set,coll_1]))})))}).apply(null,[]); // Skipping: (defn class? "Returns true if x is an instance of Class" [x] (instance? Class x)) //====== //(defn filter-key [keyfn pred amap] (loop [ret {} es (seq amap)] (if es (if (pred (keyfn (first es))) (recur (assoc ret (key (first es)) (val (first es))) (rest es)) (recur ret (rest es))) ret))) //--- -(function __clojure_core_fn_1956(){ -return (clojure.JS.def(clojure.core,"filter_key",(function __clojure_core_fn_1956_filter_key_1958(keyfn_1,pred_2,amap_3){ +(function __clojure_core_fn_2645(){ +return (clojure.JS.def(clojure.core,"filter_key",(function __clojure_core_fn_2645_filter_key_2647(keyfn_1,pred_2,amap_3){ var ret_4,es_5; -return (((function __loop(){var _rtn,_cnt;(ret_4=clojure.lang.PersistentHashMap.EMPTY), +return (((function __loop(){var _rtn,_cnt;(ret_4=clojure.lang.PersistentArrayMap.EMPTY), (es_5=clojure.core.seq.apply(null,[amap_3]));do{_cnt=0; _rtn=((es_5)?(((pred_2.apply(null,[keyfn_1.apply(null,[clojure.core.first.apply(null,[es_5])])]))?((_cnt=1,_rtn=[clojure.core.assoc.apply(null,[ret_4,clojure.core.key.apply(null,[clojure.core.first.apply(null,[es_5])]),clojure.core.val.apply(null,[clojure.core.first.apply(null,[es_5])])]),clojure.core.rest.apply(null,[es_5])],ret_4=_rtn[0],es_5=_rtn[1])):((_cnt=1,_rtn=[ret_4,clojure.core.rest.apply(null,[es_5])],ret_4=_rtn[0],es_5=_rtn[1])))):(ret_4))}while(_cnt);return _rtn;})()))})))}).apply(null,[]); //====== //(defn find-ns "Returns the namespace named by the symbol or nil if it doesn't exist." [sym] (clojure.lang.Namespace/find sym)) //--- -(function __clojure_core_fn_1962(){ -return (clojure.JS.def(clojure.core,"find_ns",(function __clojure_core_fn_1962_find_ns_1964(sym_1){ +(function __clojure_core_fn_2651(){ +return (clojure.JS.def(clojure.core,"find_ns",(function __clojure_core_fn_2651_find_ns_2653(sym_1){ return (clojure.lang.Namespace.find(sym_1))})))}).apply(null,[]); //====== //(defn create-ns "Create a new namespace named by the symbol if one doesn't already\n exist, returns it or the already-existing namespace of the same\n name." [sym] (clojure.lang.Namespace/findOrCreate sym)) //--- -(function __clojure_core_fn_1968(){ -return (clojure.JS.def(clojure.core,"create_ns",(function __clojure_core_fn_1968_create_ns_1970(sym_1){ +(function __clojure_core_fn_2657(){ +return (clojure.JS.def(clojure.core,"create_ns",(function __clojure_core_fn_2657_create_ns_2659(sym_1){ return (clojure.lang.Namespace.findOrCreate(sym_1))})))}).apply(null,[]); //====== //(defn remove-ns "Removes the namespace named by the symbol. Use with caution.\n Cannot be used to remove the clojure namespace." [sym] (clojure.lang.Namespace/remove sym)) //--- -(function __clojure_core_fn_1974(){ -return (clojure.JS.def(clojure.core,"remove_ns",(function __clojure_core_fn_1974_remove_ns_1976(sym_1){ +(function __clojure_core_fn_2663(){ +return (clojure.JS.def(clojure.core,"remove_ns",(function __clojure_core_fn_2663_remove_ns_2665(sym_1){ return (clojure.lang.Namespace.remove(sym_1))})))}).apply(null,[]); //====== //(defn all-ns "Returns a sequence of all namespaces." [] (clojure.lang.Namespace/all)) //--- -(function __clojure_core_fn_1980(){ -return (clojure.JS.def(clojure.core,"all_ns",(function __clojure_core_fn_1980_all_ns_1982(){ +(function __clojure_core_fn_2669(){ +return (clojure.JS.def(clojure.core,"all_ns",(function __clojure_core_fn_2669_all_ns_2671(){ return (clojure.lang.Namespace.all())})))}).apply(null,[]); //====== -//(defn the-ns [x] (if (instance? clojure.lang.Namespace x) x (or (find-ns x) (throw (RT/makeException (str "No namespace: " x " found")))))) +//(defn the-ns "If passed a namespace, returns it. Else, when passed a symbol,\n returns the namespace named by it, throwing an exception if not\n found." [x] (if (instance? clojure.lang.Namespace x) x (or (find-ns x) (throw (RT/makeException (str "No namespace: " x " found")))))) //--- -(function __clojure_core_fn_1986(){ -return (clojure.JS.def(clojure.core,"the_ns",(function __clojure_core_fn_1986_the_ns_1988(x_1){ -var or__424_2; -return (((clojure.core.instance_QMARK_.apply(null,[clojure.lang.Namespace,x_1]))?(x_1):(((or__424_2=clojure.core.find_ns.apply(null,[x_1])), -((or__424_2)?(or__424_2):((function __throw(){throw clojure.lang.RT.makeException(clojure.core.str.apply(null,["No namespace: ",x_1," found"]))})()))))))})))}).apply(null,[]); +(function __clojure_core_fn_2675(){ +return (clojure.JS.def(clojure.core,"the_ns",(function __clojure_core_fn_2675_the_ns_2677(x_1){ +var or__974__auto___2; +return (((clojure.core.instance_QMARK_.apply(null,[clojure.lang.Namespace,x_1]))?(x_1):(((or__974__auto___2=clojure.core.find_ns.apply(null,[x_1])), +((or__974__auto___2)?(or__974__auto___2):((function __throw(){throw clojure.lang.RT.makeException(clojure.core.str.apply(null,["No namespace: ",x_1," found"]))})()))))))})))}).apply(null,[]); //====== //(defn ns-name "Returns the name of the namespace, a symbol." [ns] (.getName (the-ns ns))) //--- -(function __clojure_core_fn_1992(){ -return (clojure.JS.def(clojure.core,"ns_name",(function __clojure_core_fn_1992_ns_name_1994(ns_1){ +(function __clojure_core_fn_2682(){ +return (clojure.JS.def(clojure.core,"ns_name",(function __clojure_core_fn_2682_ns_name_2684(ns_1){ return ((clojure.core.the_ns.apply(null,[ns_1])).getName())})))}).apply(null,[]); //====== //(defn ns-map "Returns a map of all the mappings for the namespace." [ns] (.getMappings (the-ns ns))) //--- -(function __clojure_core_fn_1998(){ -return (clojure.JS.def(clojure.core,"ns_map",(function __clojure_core_fn_1998_ns_map_2000(ns_1){ +(function __clojure_core_fn_2688(){ +return (clojure.JS.def(clojure.core,"ns_map",(function __clojure_core_fn_2688_ns_map_2690(ns_1){ return ((clojure.core.the_ns.apply(null,[ns_1])).getMappings())})))}).apply(null,[]); //====== //(defn ns-unmap "Removes the mappings for the symbol from the namespace." [ns sym] (.unmap (the-ns ns) sym)) //--- -(function __clojure_core_fn_2004(){ -return (clojure.JS.def(clojure.core,"ns_unmap",(function __clojure_core_fn_2004_ns_unmap_2006(ns_1,sym_2){ +(function __clojure_core_fn_2694(){ +return (clojure.JS.def(clojure.core,"ns_unmap",(function __clojure_core_fn_2694_ns_unmap_2696(ns_1,sym_2){ return ((clojure.core.the_ns.apply(null,[ns_1])).unmap(sym_2))})))}).apply(null,[]); //====== //(defn ns-publics "Returns a map of the public intern mappings for the namespace." [ns] (let [ns (the-ns ns)] (filter-key val (fn [v] (and (instance? clojure.lang.Var v) (= ns (.ns v)) (.isPublic v))) (ns-map ns)))) //--- -(function __clojure_core_fn_2010(){ -return (clojure.JS.def(clojure.core,"ns_publics",(function __clojure_core_fn_2010_ns_publics_2012(ns_1){ +(function __clojure_core_fn_2700(){ +return (clojure.JS.def(clojure.core,"ns_publics",(function __clojure_core_fn_2700_ns_publics_2702(ns_1){ var ns_2; return (((ns_2=clojure.core.the_ns.apply(null,[ns_1])), -clojure.core.filter_key.apply(null,[clojure.core.val,(function __clojure_core_fn_2010_ns_publics_2012_fn_2014(v_1){ -var and__410_2,and__410_3; -return (((and__410_2=clojure.core.instance_QMARK_.apply(null,[clojure.lang.Var,v_1])), -((and__410_2)?(((and__410_3=clojure.lang.Util.equal(ns_2,clojure.JS.getOrRun(v_1,"ns"))), -((and__410_3)?((v_1).isPublic()):(and__410_3)))):(and__410_2))))}),clojure.core.ns_map.apply(null,[ns_2])])))})))}).apply(null,[]); +clojure.core.filter_key.apply(null,[clojure.core.val,(function __clojure_core_fn_2700_ns_publics_2702_fn_2704(v_1){ +var and__960__auto___2,and__960__auto___3; +return (((and__960__auto___2=clojure.core.instance_QMARK_.apply(null,[clojure.lang.Var,v_1])), +((and__960__auto___2)?(((and__960__auto___3=clojure.lang.Util.equal(ns_2,clojure.JS.getOrRun(v_1,"ns"))), +((and__960__auto___3)?((v_1).isPublic()):(and__960__auto___3)))):(and__960__auto___2))))}),clojure.core.ns_map.apply(null,[ns_2])])))})))}).apply(null,[]); //====== //(defn ns-imports "Returns a map of the import mappings for the namespace." [ns] (filter-key val class? (ns-map ns))) //--- -(function __clojure_core_fn_2019(){ -return (clojure.JS.def(clojure.core,"ns_imports",(function __clojure_core_fn_2019_ns_imports_2021(ns_1){ +(function __clojure_core_fn_2711(){ +return (clojure.JS.def(clojure.core,"ns_imports",(function __clojure_core_fn_2711_ns_imports_2713(ns_1){ return (clojure.core.filter_key.apply(null,[clojure.core.val,clojure.core.class_QMARK_,clojure.core.ns_map.apply(null,[ns_1])]))})))}).apply(null,[]); // Skipping: (defn refer "refers to all public vars of ns, subject to filters.\n filters can include at most one each of:\n\n :exclude list-of-symbols\n :only list-of-symbols\n :rename map-of-fromsymbol-tosymbol\n\n For each public interned var in the namespace named by the symbol,\n adds a mapping from the name of the var to the var to the current\n namespace. Throws an exception if name is already mapped to\n something else in the current namespace. Filters can be used to\n select a subset, via inclusion or exclusion, or to provide a mapping\n to a symbol different from the var's name, in order to prevent\n clashes. Use :use in the ns macro in preference to calling this directly." [ns-sym & filters] (let [ns (or (find-ns ns-sym) (throw (RT/makeException (str "No namespace: " ns-sym)))) fs (apply hash-map filters) nspublics (ns-publics ns) rename (or (:rename fs) {}) exclude (set (:exclude fs)) to-do (or (:only fs) (keys nspublics))] (doseq [sym to-do] (when-not (exclude sym) (let [v (nspublics sym)] (when-not v (throw (new java.lang.IllegalAccessError (str sym " is not public")))) (. *ns* (refer (or (rename sym) sym) v))))))) //====== //(defn ns-refers "Returns a map of the refer mappings for the namespace." [ns] (let [ns (the-ns ns)] (filter-key val (fn [v] (and (instance? clojure.lang.Var v) (not= ns (.ns v)))) (ns-map ns)))) //--- -(function __clojure_core_fn_2031(){ -return (clojure.JS.def(clojure.core,"ns_refers",(function __clojure_core_fn_2031_ns_refers_2033(ns_1){ +(function __clojure_core_fn_2728(){ +return (clojure.JS.def(clojure.core,"ns_refers",(function __clojure_core_fn_2728_ns_refers_2730(ns_1){ var ns_2; return (((ns_2=clojure.core.the_ns.apply(null,[ns_1])), -clojure.core.filter_key.apply(null,[clojure.core.val,(function __clojure_core_fn_2031_ns_refers_2033_fn_2035(v_1){ -var and__410_2; -return (((and__410_2=clojure.core.instance_QMARK_.apply(null,[clojure.lang.Var,v_1])), -((and__410_2)?(clojure.core.not_EQ_.apply(null,[ns_2,clojure.JS.getOrRun(v_1,"ns")])):(and__410_2))))}),clojure.core.ns_map.apply(null,[ns_2])])))})))}).apply(null,[]); +clojure.core.filter_key.apply(null,[clojure.core.val,(function __clojure_core_fn_2728_ns_refers_2730_fn_2732(v_1){ +var and__960__auto___2; +return (((and__960__auto___2=clojure.core.instance_QMARK_.apply(null,[clojure.lang.Var,v_1])), +((and__960__auto___2)?(clojure.core.not_EQ_.apply(null,[ns_2,clojure.JS.getOrRun(v_1,"ns")])):(and__960__auto___2))))}),clojure.core.ns_map.apply(null,[ns_2])])))})))}).apply(null,[]); //====== //(defn ns-interns "Returns a map of the intern mappings for the namespace." [ns] (let [ns (the-ns ns)] (filter-key val (fn [v] (and (instance? clojure.lang.Var v) (= ns (.ns v)))) (ns-map ns)))) //--- -(function __clojure_core_fn_2040(){ -return (clojure.JS.def(clojure.core,"ns_interns",(function __clojure_core_fn_2040_ns_interns_2042(ns_1){ +(function __clojure_core_fn_2738(){ +return (clojure.JS.def(clojure.core,"ns_interns",(function __clojure_core_fn_2738_ns_interns_2740(ns_1){ var ns_2; return (((ns_2=clojure.core.the_ns.apply(null,[ns_1])), -clojure.core.filter_key.apply(null,[clojure.core.val,(function __clojure_core_fn_2040_ns_interns_2042_fn_2044(v_1){ -var and__410_2; -return (((and__410_2=clojure.core.instance_QMARK_.apply(null,[clojure.lang.Var,v_1])), -((and__410_2)?(clojure.lang.Util.equal(ns_2,clojure.JS.getOrRun(v_1,"ns"))):(and__410_2))))}),clojure.core.ns_map.apply(null,[ns_2])])))})))}).apply(null,[]); +clojure.core.filter_key.apply(null,[clojure.core.val,(function __clojure_core_fn_2738_ns_interns_2740_fn_2742(v_1){ +var and__960__auto___2; +return (((and__960__auto___2=clojure.core.instance_QMARK_.apply(null,[clojure.lang.Var,v_1])), +((and__960__auto___2)?(clojure.lang.Util.equal(ns_2,clojure.JS.getOrRun(v_1,"ns"))):(and__960__auto___2))))}),clojure.core.ns_map.apply(null,[ns_2])])))})))}).apply(null,[]); //====== //(defn alias "Add an alias in the current namespace to another\n namespace. Arguments are two symbols: the alias to be used, and\n the symbolic name of the target namespace. Use :as in the ns macro in preference \n to calling this directly." [alias namespace-sym] (.addAlias *ns* alias (find-ns namespace-sym))) //--- -(function __clojure_core_fn_2049(){ -return (clojure.JS.def(clojure.core,"alias",(function __clojure_core_fn_2049_alias_2051(alias_1,namespace_sym_2){ +(function __clojure_core_fn_2748(){ +return (clojure.JS.def(clojure.core,"alias",(function __clojure_core_fn_2748_alias_2750(alias_1,namespace_sym_2){ return ((clojure.core._STAR_ns_STAR_).addAlias(alias_1,clojure.core.find_ns.apply(null,[namespace_sym_2])))})))}).apply(null,[]); //====== //(defn ns-aliases "Returns a map of the aliases for the namespace." [ns] (.getAliases (the-ns ns))) //--- -(function __clojure_core_fn_2055(){ -return (clojure.JS.def(clojure.core,"ns_aliases",(function __clojure_core_fn_2055_ns_aliases_2057(ns_1){ +(function __clojure_core_fn_2754(){ +return (clojure.JS.def(clojure.core,"ns_aliases",(function __clojure_core_fn_2754_ns_aliases_2756(ns_1){ return ((clojure.core.the_ns.apply(null,[ns_1])).getAliases())})))}).apply(null,[]); //====== //(defn ns-unalias "Removes the alias for the symbol from the namespace." [ns sym] (.removeAlias (the-ns ns) sym)) //--- -(function __clojure_core_fn_2061(){ -return (clojure.JS.def(clojure.core,"ns_unalias",(function __clojure_core_fn_2061_ns_unalias_2063(ns_1,sym_2){ +(function __clojure_core_fn_2760(){ +return (clojure.JS.def(clojure.core,"ns_unalias",(function __clojure_core_fn_2760_ns_unalias_2762(ns_1,sym_2){ return ((clojure.core.the_ns.apply(null,[ns_1])).removeAlias(sym_2))})))}).apply(null,[]); //====== //(defn take-nth "Returns a lazy seq of every nth item in coll." [n coll] (when (seq coll) (lazy-cons (first coll) (take-nth n (drop n coll))))) //--- -(function __clojure_core_fn_2067(){ -return (clojure.JS.def(clojure.core,"take_nth",(function __clojure_core_fn_2067_take_nth_2069(n_1,coll_2){ -return (((clojure.core.seq.apply(null,[coll_2]))?((new clojure.lang.LazyCons((function __clojure_core_fn_2067_take_nth_2069_fn_2072(G__2071_1){switch(arguments.length){ +(function __clojure_core_fn_2766(){ +return (clojure.JS.def(clojure.core,"take_nth",(function __clojure_core_fn_2766_take_nth_2768(n_1,coll_2){ +return (((clojure.core.seq.apply(null,[coll_2]))?((new clojure.lang.LazyCons((function __clojure_core_fn_2766_take_nth_2768_fn_2771(G__2770_1){switch(arguments.length){ case 0:return (clojure.core.first.apply(null,[coll_2]))} return (clojure.core.take_nth.apply(null,[n_1,clojure.core.drop.apply(null,[n_1,coll_2])]))})))):(null)))})))}).apply(null,[]); //====== //(defn interleave "Returns a lazy seq of the first item in each coll, then the second\n etc." [& colls] (apply concat (apply map list colls))) //--- -(function __clojure_core_fn_2078(){ -return (clojure.JS.def(clojure.core,"interleave",clojure.JS.variadic(0,(function __clojure_core_fn_2078_interleave_2080(){ +(function __clojure_core_fn_2777(){ +return (clojure.JS.def(clojure.core,"interleave",clojure.JS.variadic(0,(function __clojure_core_fn_2777_interleave_2779(){ var colls_1=clojure.JS.rest_args(this,arguments,0); return (clojure.core.apply.apply(null,[clojure.core.concat,clojure.core.apply.apply(null,[clojure.core.map,clojure.core.list,colls_1])]))}))))}).apply(null,[]); //====== //(defn var-get "Gets the value in the var object" [x] (. x (get))) //--- -(function __clojure_core_fn_2084(){ -return (clojure.JS.def(clojure.core,"var_get",(function __clojure_core_fn_2084_var_get_2086(x_1){ +(function __clojure_core_fn_2783(){ +return (clojure.JS.def(clojure.core,"var_get",(function __clojure_core_fn_2783_var_get_2785(x_1){ return ((x_1).get())})))}).apply(null,[]); //====== //(defn var-set "Sets the value in the var object to val. The var must be\n thread-locally bound." [x val] (. x (set val))) //--- -(function __clojure_core_fn_2090(){ -return (clojure.JS.def(clojure.core,"var_set",(function __clojure_core_fn_2090_var_set_2092(x_1,val_2){ +(function __clojure_core_fn_2789(){ +return (clojure.JS.def(clojure.core,"var_set",(function __clojure_core_fn_2789_var_set_2791(x_1,val_2){ return ((x_1).set(val_2))})))}).apply(null,[]); -// Skipping: (defmacro with-local-vars "varbinding=> symbol init-expr\n\n Executes the exprs in a context in which the symbols are bound to\n vars with per-thread bindings to the init-exprs. The symbols refer\n to the var objects themselves, and must be accessed with var-get and\n var-set" [name-vals-vec & body] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (interleave (take-nth 2 name-vals-vec) (repeat (quote (. clojure.lang.Var (create)))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Var)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/pushThreadBindings)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/hash-map)) name-vals-vec)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote try)) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote finally)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Var)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/popThreadBindings)))))))))))) +// Skipping: (defmacro with-local-vars "varbinding=> symbol init-expr\n\n Executes the exprs in a context in which the symbols are bound to\n vars with per-thread bindings to the init-exprs. The symbols refer\n to the var objects themselves, and must be accessed with var-get and\n var-set" [name-vals-vec & body] (assert-args with-local-vars (vector? name-vals-vec) "a vector for its binding" (even? (count name-vals-vec)) "an even number of forms in binding vector") (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (interleave (take-nth 2 name-vals-vec) (repeat (quote (. clojure.lang.Var (create)))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Var)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/pushThreadBindings)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/hash-map)) name-vals-vec)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote try)) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote finally)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Var)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/popThreadBindings)))))))))))) // Skipping: (defn ns-resolve "Returns the var or Class to which a symbol will be resolved in the\n namespace, else nil. Note that if the symbol is fully qualified,\n the var/Class to which it resolves need not be present in the\n namespace." [ns sym] (clojure.lang.Compiler/maybeResolveIn (the-ns ns) sym)) // Skipping: (defn resolve "same as (ns-resolve *ns* symbol)" [sym] (ns-resolve *ns* sym)) //====== //(defn array-map "Constructs an array-map." ([] (. clojure.lang.PersistentArrayMap EMPTY)) ([& keyvals] (new clojure.lang.PersistentArrayMap (to-array keyvals)))) //--- -(function __clojure_core_fn_2117(){ -return (clojure.JS.def(clojure.core,"array_map",clojure.JS.variadic(0,(function __clojure_core_fn_2117_array_map_2119(){switch(arguments.length){ +(function __clojure_core_fn_2816(){ +return (clojure.JS.def(clojure.core,"array_map",clojure.JS.variadic(0,(function __clojure_core_fn_2816_array_map_2818(){switch(arguments.length){ case 0:return (clojure.JS.getOrRun(clojure.lang.PersistentArrayMap,"EMPTY"))} var keyvals_1=clojure.JS.rest_args(this,arguments,0); return ((new clojure.lang.PersistentArrayMap(clojure.core.to_array.apply(null,[keyvals_1]))))}))))}).apply(null,[]); @@ -1851,25 +1960,25 @@ return ((new clojure.lang.PersistentArrayMap(clojure.core.to_array.apply(null,[k //====== //(defn nthrest "Returns the nth rest of coll, (seq coll) when n is 0." [coll n] (loop [n n xs (seq coll)] (if (and xs (pos? n)) (recur (dec n) (rest xs)) xs))) //--- -(function __clojure_core_fn_2124(){ -return (clojure.JS.def(clojure.core,"nthrest",(function __clojure_core_fn_2124_nthrest_2126(coll_1,n_2){ -var and__410_5,xs_4,n_3; +(function __clojure_core_fn_2823(){ +return (clojure.JS.def(clojure.core,"nthrest",(function __clojure_core_fn_2823_nthrest_2825(coll_1,n_2){ +var n_3,xs_4,and__960__auto___5; return (((function __loop(){var _rtn,_cnt;(n_3=n_2), (xs_4=clojure.core.seq.apply(null,[coll_1]));do{_cnt=0; -_rtn=((((and__410_5=xs_4), -((and__410_5)?(clojure.lang.Numbers.isPos(n_3)):(and__410_5))))?((_cnt=1,_rtn=[clojure.lang.Numbers.dec(n_3),clojure.core.rest.apply(null,[xs_4])],n_3=_rtn[0],xs_4=_rtn[1])):(xs_4))}while(_cnt);return _rtn;})()))})))}).apply(null,[]); +_rtn=((((and__960__auto___5=xs_4), +((and__960__auto___5)?(clojure.lang.Numbers.isPos(n_3)):(and__960__auto___5))))?((_cnt=1,_rtn=[clojure.lang.Numbers.dec(n_3),clojure.core.rest.apply(null,[xs_4])],n_3=_rtn[0],xs_4=_rtn[1])):(xs_4))}while(_cnt);return _rtn;})()))})))}).apply(null,[]); //====== -//(defn destructure [bindings] (let [bmap (apply array-map bindings) pb (fn pb [bvec b v] (let [pvec (fn [bvec b val] (let [gvec (gensym "vec__")] (loop [ret (-> bvec (conj gvec) (conj val)) n 0 bs b seen-rest? false] (if (seq bs) (let [firstb (first bs)] (cond (= firstb (quote &)) (recur (pb ret (second bs) (list (quote clojure.core/nthrest) gvec n)) n (rrest bs) true) (= firstb :as) (pb ret (second bs) gvec) :else (if seen-rest? (throw (RT/makeException "Unsupported binding form, only :as can follow & parameter")) (recur (pb ret firstb (list (quote clojure.core/nth) gvec n nil)) (inc n) (rest bs) seen-rest?)))) ret)))) pmap (fn [bvec b v] (let [gmap (or (:as b) (gensym "map__")) defaults (:or b)] (loop [ret (-> bvec (conj gmap) (conj v)) bes (reduce (fn [bes entry] (reduce (fn* [p1__2130 p2__2131] (assoc p1__2130 p2__2131 ((val entry) p2__2131))) (dissoc bes (key entry)) ((key entry) bes))) (dissoc b :as :or) {:strs str, :syms (fn* [p1__2133] (list (quote quote) p1__2133)), :keys (fn* [p1__2132] (keyword (str p1__2132)))})] (if (seq bes) (let [bb (key (first bes)) bk (val (first bes)) has-default (contains? defaults bb)] (recur (pb ret bb (if has-default (list (quote clojure.core/get) gmap bk (defaults bb)) (list (quote clojure.core/get) gmap bk))) (rest bes))) ret))))] (cond (symbol? b) (-> bvec (conj b) (conj v)) (vector? b) (pvec bvec b v) (map? b) (pmap bvec b v) :else (throw (RT/makeException (str "Unsupported binding form: " b)))))) process-entry (fn [bvec b] (pb bvec (key b) (val b)))] (if (every? symbol? (keys bmap)) bindings (reduce process-entry [] bmap)))) +//(defn destructure [bindings] (let [bmap (apply array-map bindings) pb (fn pb [bvec b v] (let [pvec (fn [bvec b val] (let [gvec (gensym "vec__")] (loop [ret (-> bvec (conj gvec) (conj val)) n 0 bs b seen-rest? false] (if (seq bs) (let [firstb (first bs)] (cond (= firstb (quote &)) (recur (pb ret (second bs) (list (quote clojure.core/nthrest) gvec n)) n (rrest bs) true) (= firstb :as) (pb ret (second bs) gvec) :else (if seen-rest? (throw (RT/makeException "Unsupported binding form, only :as can follow & parameter")) (recur (pb ret firstb (list (quote clojure.core/nth) gvec n nil)) (inc n) (rest bs) seen-rest?)))) ret)))) pmap (fn [bvec b v] (let [gmap (or (:as b) (gensym "map__")) defaults (:or b)] (loop [ret (-> bvec (conj gmap) (conj v)) bes (reduce (fn [bes entry] (reduce (fn* [p1__2830 p2__2831] (assoc p1__2830 p2__2831 ((val entry) p2__2831))) (dissoc bes (key entry)) ((key entry) bes))) (dissoc b :as :or) {:keys (fn* [p1__2832] (keyword (str p1__2832))), :strs str, :syms (fn* [p1__2833] (list (quote quote) p1__2833))})] (if (seq bes) (let [bb (key (first bes)) bk (val (first bes)) has-default (contains? defaults bb)] (recur (pb ret bb (if has-default (list (quote clojure.core/get) gmap bk (defaults bb)) (list (quote clojure.core/get) gmap bk))) (rest bes))) ret))))] (cond (symbol? b) (-> bvec (conj b) (conj v)) (vector? b) (pvec bvec b v) (map? b) (pmap bvec b v) :else (throw (RT/makeException (str "Unsupported binding form: " b)))))) process-entry (fn [bvec b] (pb bvec (key b) (val b)))] (if (every? symbol? (keys bmap)) bindings (reduce process-entry [] bmap)))) //--- -(function __clojure_core_fn_2134(){ -return (clojure.JS.def(clojure.core,"destructure",(function __clojure_core_fn_2134_destructure_2136(bindings_1){ -var pb_3,bmap_2,process_entry_4; +(function __clojure_core_fn_2834(){ +return (clojure.JS.def(clojure.core,"destructure",(function __clojure_core_fn_2834_destructure_2836(bindings_1){ +var bmap_2,pb_3,process_entry_4; return (((bmap_2=clojure.core.apply.apply(null,[clojure.core.array_map,bindings_1])), -(pb_3=(function __clojure_core_fn_2134_destructure_2136_pb_2138(bvec_1,b_2,v_3){ +(pb_3=(function __clojure_core_fn_2834_destructure_2836_pb_2838(bvec_1,b_2,v_3){ var pvec_4,pmap_5,pb_0=arguments.callee; -return (((pvec_4=(function __clojure_core_fn_2134_destructure_2136_pb_2138_pvec_2139(bvec_1,b_2,val_3){ -var ret_5,bs_7,n_6,seen_rest_QMARK__8,firstb_9,gvec_4; +return (((pvec_4=(function __clojure_core_fn_2834_destructure_2836_pb_2838_pvec_2839(bvec_1,b_2,val_3){ +var bs_7,n_6,ret_5,seen_rest_QMARK__8,gvec_4,firstb_9; return (((gvec_4=clojure.core.gensym.apply(null,["vec__"])), ((function __loop(){var _rtn,_cnt;(ret_5=clojure.core.conj.apply(null,[clojure.core.conj.apply(null,[bvec_1,gvec_4]),val_3])), (n_6=(0)), @@ -1877,94 +1986,94 @@ return (((gvec_4=clojure.core.gensym.apply(null,["vec__"])), (seen_rest_QMARK__8=false);do{_cnt=0; _rtn=((clojure.core.seq.apply(null,[bs_7]))?(((firstb_9=clojure.core.first.apply(null,[bs_7])), ((clojure.lang.Util.equal(firstb_9,clojure.core.symbol("&")))?((_cnt=1,_rtn=[pb_0.apply(null,[ret_5,clojure.core.second.apply(null,[bs_7]),clojure.core.list.apply(null,[clojure.core.symbol("clojure.core/nthrest"),gvec_4,n_6])]),n_6,clojure.core.rrest.apply(null,[bs_7]),true],ret_5=_rtn[0],n_6=_rtn[1],bs_7=_rtn[2],seen_rest_QMARK__8=_rtn[3])):(((clojure.lang.Util.equal(firstb_9,clojure.core.keyword("","as")))?(pb_0.apply(null,[ret_5,clojure.core.second.apply(null,[bs_7]),gvec_4])):(((clojure.core.keyword("","else"))?(((seen_rest_QMARK__8)?((function __throw(){throw clojure.lang.RT.makeException("Unsupported binding form, only :as can follow & parameter")})()):((_cnt=1,_rtn=[pb_0.apply(null,[ret_5,firstb_9,clojure.core.list.apply(null,[clojure.core.symbol("clojure.core/nth"),gvec_4,n_6,null])]),clojure.lang.Numbers.inc(n_6),clojure.core.rest.apply(null,[bs_7]),seen_rest_QMARK__8],ret_5=_rtn[0],n_6=_rtn[1],bs_7=_rtn[2],seen_rest_QMARK__8=_rtn[3])))):(null)))))))):(ret_5))}while(_cnt);return _rtn;})())))})), -(pmap_5=(function __clojure_core_fn_2134_destructure_2136_pb_2138_pmap_2142(bvec_1,b_2,v_3){ -var defaults_5,bb_8,bes_7,bk_9,or__424_4,gmap_4,has_default_10,ret_6; -return (((gmap_4=((or__424_4=clojure.core.keyword("","as").apply(null,[b_2])), -((or__424_4)?(or__424_4):(clojure.core.gensym.apply(null,["map__"]))))), +(pmap_5=(function __clojure_core_fn_2834_destructure_2836_pb_2838_pmap_2842(bvec_1,b_2,v_3){ +var bk_9,ret_6,gmap_4,bes_7,defaults_5,bb_8,or__974__auto___4,has_default_10; +return (((gmap_4=((or__974__auto___4=clojure.core.keyword("","as").apply(null,[b_2])), +((or__974__auto___4)?(or__974__auto___4):(clojure.core.gensym.apply(null,["map__"]))))), (defaults_5=clojure.core.keyword("","or").apply(null,[b_2])), ((function __loop(){var _rtn,_cnt;(ret_6=clojure.core.conj.apply(null,[clojure.core.conj.apply(null,[bvec_1,gmap_4]),v_3])), -(bes_7=clojure.core.reduce.apply(null,[(function __clojure_core_fn_2134_destructure_2136_pb_2138_pmap_2142_fn_2144(bes_1,entry_2){ -return (clojure.core.reduce.apply(null,[(function __clojure_core_fn_2134_destructure_2136_pb_2138_pmap_2142_fn_2144_fn_2146(p1__2130_1,p2__2131_2){ -return (clojure.core.assoc.apply(null,[p1__2130_1,p2__2131_2,clojure.core.val.apply(null,[entry_2]).apply(null,[p2__2131_2])]))}),clojure.core.dissoc.apply(null,[bes_1,clojure.core.key.apply(null,[entry_2])]),clojure.core.key.apply(null,[entry_2]).apply(null,[bes_1])]))}),clojure.core.dissoc.apply(null,[b_2,clojure.core.keyword("","as"),clojure.core.keyword("","or")]),clojure.core.hash_map(clojure.core.keyword("","strs"),clojure.core.str,clojure.core.keyword("","syms"),(function __clojure_core_fn_2134_destructure_2136_pb_2138_pmap_2142_fn_2150(p1__2133_1){ -return (clojure.core.list.apply(null,[clojure.core.symbol("quote"),p1__2133_1]))}),clojure.core.keyword("","keys"),(function __clojure_core_fn_2134_destructure_2136_pb_2138_pmap_2142_fn_2153(p1__2132_1){ -return (clojure.core.keyword.apply(null,[clojure.core.str.apply(null,[p1__2132_1])]))}))]));do{_cnt=0; +(bes_7=clojure.core.reduce.apply(null,[(function __clojure_core_fn_2834_destructure_2836_pb_2838_pmap_2842_fn_2844(bes_1,entry_2){ +return (clojure.core.reduce.apply(null,[(function __clojure_core_fn_2834_destructure_2836_pb_2838_pmap_2842_fn_2844_fn_2846(p1__2830_1,p2__2831_2){ +return (clojure.core.assoc.apply(null,[p1__2830_1,p2__2831_2,clojure.core.val.apply(null,[entry_2]).apply(null,[p2__2831_2])]))}),clojure.core.dissoc.apply(null,[bes_1,clojure.core.key.apply(null,[entry_2])]),clojure.core.key.apply(null,[entry_2]).apply(null,[bes_1])]))}),clojure.core.dissoc.apply(null,[b_2,clojure.core.keyword("","as"),clojure.core.keyword("","or")]),clojure.core.hash_map(clojure.core.keyword("","keys"),(function __clojure_core_fn_2834_destructure_2836_pb_2838_pmap_2842_fn_2850(p1__2832_1){ +return (clojure.core.keyword.apply(null,[clojure.core.str.apply(null,[p1__2832_1])]))}),clojure.core.keyword("","strs"),clojure.core.str,clojure.core.keyword("","syms"),(function __clojure_core_fn_2834_destructure_2836_pb_2838_pmap_2842_fn_2853(p1__2833_1){ +return (clojure.core.list.apply(null,[clojure.core.symbol("quote"),p1__2833_1]))}))]));do{_cnt=0; _rtn=((clojure.core.seq.apply(null,[bes_7]))?(((bb_8=clojure.core.key.apply(null,[clojure.core.first.apply(null,[bes_7])])), (bk_9=clojure.core.val.apply(null,[clojure.core.first.apply(null,[bes_7])])), (has_default_10=clojure.core.contains_QMARK_.apply(null,[defaults_5,bb_8])), (_cnt=1,_rtn=[pb_0.apply(null,[ret_6,bb_8,((has_default_10)?(clojure.core.list.apply(null,[clojure.core.symbol("clojure.core/get"),gmap_4,bk_9,defaults_5.apply(null,[bb_8])])):(clojure.core.list.apply(null,[clojure.core.symbol("clojure.core/get"),gmap_4,bk_9])))]),clojure.core.rest.apply(null,[bes_7])],ret_6=_rtn[0],bes_7=_rtn[1]))):(ret_6))}while(_cnt);return _rtn;})())))})), ((clojure.core.symbol_QMARK_.apply(null,[b_2]))?(clojure.core.conj.apply(null,[clojure.core.conj.apply(null,[bvec_1,b_2]),v_3])):(((clojure.core.vector_QMARK_.apply(null,[b_2]))?(pvec_4.apply(null,[bvec_1,b_2,v_3])):(((clojure.core.map_QMARK_.apply(null,[b_2]))?(pmap_5.apply(null,[bvec_1,b_2,v_3])):(((clojure.core.keyword("","else"))?((function __throw(){throw clojure.lang.RT.makeException(clojure.core.str.apply(null,["Unsupported binding form: ",b_2]))})()):(null))))))))))})), -(process_entry_4=(function __clojure_core_fn_2134_destructure_2136_process_entry_2158(bvec_1,b_2){ +(process_entry_4=(function __clojure_core_fn_2834_destructure_2836_process_entry_2859(bvec_1,b_2){ return (pb_3.apply(null,[bvec_1,clojure.core.key.apply(null,[b_2]),clojure.core.val.apply(null,[b_2])]))})), ((clojure.core.every_QMARK_.apply(null,[clojure.core.symbol_QMARK_,clojure.core.keys.apply(null,[bmap_2])]))?(bindings_1):(clojure.core.reduce.apply(null,[process_entry_4,clojure.lang.PersistentVector.EMPTY,bmap_2])))))})))}).apply(null,[]); -// Skipping: (defmacro let "Evaluates the exprs in a lexical context in which the symbols in\n the binding-forms are bound to their respective init-exprs or parts\n therein." [bindings & body] (when (odd? (count bindings)) (throw (Exception. "Odd number of elements in let bindings"))) (clojure.core/concat (clojure.core/list (quote let*)) (clojure.core/list (destructure bindings)) body)) +// Skipping: (defmacro let "Evaluates the exprs in a lexical context in which the symbols in\n the binding-forms are bound to their respective init-exprs or parts\n therein." [bindings & body] (assert-args let (vector? bindings) "a vector for its binding" (even? (count bindings)) "an even number of forms in binding vector") (clojure.core/concat (clojure.core/list (quote let*)) (clojure.core/list (destructure bindings)) body)) // Skipping: (defmacro fn "(fn name? [params* ] exprs*)\n (fn name? ([params* ] exprs*)+)\n\n params => positional-params* , or positional-params* & rest-param\n positional-param => binding-form\n rest-param => binding-form\n name => symbol\n\n Defines a function" [& sigs] (let [name (if (symbol? (first sigs)) (first sigs) nil) sigs (if name (rest sigs) sigs) sigs (if (vector? (first sigs)) (list sigs) sigs) psig (fn [sig] (let [[params & body] sig] (if (every? symbol? params) sig (loop [params params new-params [] lets []] (if params (if (symbol? (first params)) (recur (rest params) (conj new-params (first params)) lets) (let [gparam (gensym "p__")] (recur (rest params) (conj new-params gparam) (-> lets (conj (first params)) (conj gparam))))) (clojure.core/concat (clojure.core/list new-params) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list lets) body)))))))) new-sigs (map psig sigs)] (with-meta (if name (list* (quote fn*) name new-sigs) (cons (quote fn*) new-sigs)) *macro-meta*))) -// Skipping: (defmacro loop "Evaluates the exprs in a lexical context in which the symbols in\n the binding-forms are bound to their respective init-exprs or parts\n therein. Acts as a recur target." [bindings & body] (let [db (destructure bindings)] (if (= db bindings) (clojure.core/concat (clojure.core/list (quote loop*)) (clojure.core/list bindings) body) (let [vs (take-nth 2 (drop 1 bindings)) bs (take-nth 2 bindings) gs (map (fn [b] (if (symbol? b) b (gensym))) bs) bfs (reduce (fn [ret [b v g]] (if (symbol? b) (conj ret g v) (conj ret g v b g))) [] (map vector bs vs gs))] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list bfs) (clojure.core/list (clojure.core/concat (clojure.core/list (quote loop*)) (clojure.core/list (vec (interleave gs gs))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (vec (interleave bs gs))) body))))))))) -// Skipping: (defmacro when-first "bindings => x xs\n\n Same as (when (seq xs) (let [x (first xs)] body))" [bindings & body] (if (vector? bindings) (let [[x xs] bindings] (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/seq)) (clojure.core/list xs))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list x) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/first)) (clojure.core/list xs)))))) body)))) (throw (IllegalArgumentException. "when-first now requires a vector for its binding")))) -// Skipping: (defmacro lazy-cat "Expands to code which yields a lazy sequence of the concatenation\n of the supplied colls. Each coll expr is not evaluated until it is\n needed." ([coll] (clojure.core/concat (clojure.core/list (quote clojure.core/seq)) (clojure.core/list coll))) ([coll & colls] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote iter__2225)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/fn)) (clojure.core/list (quote iter__2225)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote coll__2226))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/seq)) (clojure.core/list (quote coll__2226)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/lazy-cons)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/first)) (clojure.core/list (quote coll__2226)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote iter__2225)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list (quote coll__2226)))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/lazy-cat)) colls))))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote iter__2225)) (clojure.core/list coll)))))) -// Skipping: (defmacro for "List comprehension. Takes a vector of one or more\n binding-form/collection-expr pairs, each followed by an optional filtering\n :when/:while expression (:when test or :while test), and yields a\n lazy sequence of evaluations of expr. Collections are iterated in a\n nested fashion, rightmost fastest, and nested coll-exprs can refer to\n bindings created in prior binding-forms.\n\n (take 100 (for [x (range 100000000) y (range 1000000) :while (< y x)] [x y]))" ([seq-exprs expr] (let [pargs (fn [xs] (loop [ret [] [b e & [w f & wr :as r] :as xs] (seq xs)] (if xs (cond (= w :when) (recur (conj ret {:w :when, :b b, :f f, :e e}) wr) (= w :while) (recur (conj ret {:w :while, :b b, :f f, :e e}) wr) :else (recur (conj ret {:w :while, :b b, :f true, :e e}) r)) (seq ret)))) emit (fn emit [[{w :w, b :b, f :f} & [{ys :e} :as rses]]] (let [giter (gensym "iter__") gxs (gensym "s__")] (clojure.core/concat (clojure.core/list (quote clojure.core/fn)) (clojure.core/list giter) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list gxs)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when-first)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list b) (clojure.core/list gxs)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list f) (clojure.core/list (if rses (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote iterys__2238)) (clojure.core/list (emit rses)) (clojure.core/list (quote fs__2239)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote iterys__2238)) (clojure.core/list ys)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (quote fs__2239)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/lazy-cat)) (clojure.core/list (quote fs__2239)) (clojure.core/list (clojure.core/concat (clojure.core/list giter) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list gxs))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list gxs)))))))) (clojure.core/concat (clojure.core/list (quote clojure.core/lazy-cons)) (clojure.core/list expr) (clojure.core/list (clojure.core/concat (clojure.core/list giter) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list gxs)))))))) (clojure.core/list (if (= w :when) (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list gxs)))) nil)))))))))] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote iter__2240)) (clojure.core/list (emit (pargs seq-exprs)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote iter__2240)) (clojure.core/list (second seq-exprs)))))))) +// Skipping: (defmacro loop "Evaluates the exprs in a lexical context in which the symbols in\n the binding-forms are bound to their respective init-exprs or parts\n therein. Acts as a recur target." [bindings & body] (assert-args loop (vector? bindings) "a vector for its binding" (even? (count bindings)) "an even number of forms in binding vector") (let [db (destructure bindings)] (if (= db bindings) (clojure.core/concat (clojure.core/list (quote loop*)) (clojure.core/list bindings) body) (let [vs (take-nth 2 (drop 1 bindings)) bs (take-nth 2 bindings) gs (map (fn [b] (if (symbol? b) b (gensym))) bs) bfs (reduce (fn [ret [b v g]] (if (symbol? b) (conj ret g v) (conj ret g v b g))) [] (map vector bs vs gs))] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list bfs) (clojure.core/list (clojure.core/concat (clojure.core/list (quote loop*)) (clojure.core/list (vec (interleave gs gs))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (vec (interleave bs gs))) body))))))))) +// Skipping: (defmacro when-first "bindings => x xs\n\n Same as (when (seq xs) (let [x (first xs)] body))" [bindings & body] (assert-args when-first (vector? bindings) "a vector for its binding" (even? (count bindings)) "exactly 2 forms in binding vector") (let [[x xs] bindings] (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/seq)) (clojure.core/list xs))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list x) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/first)) (clojure.core/list xs)))))) body))))) +// Skipping: (defmacro lazy-cat "Expands to code which yields a lazy sequence of the concatenation\n of the supplied colls. Each coll expr is not evaluated until it is\n needed." ([coll] (clojure.core/concat (clojure.core/list (quote clojure.core/seq)) (clojure.core/list coll))) ([coll & colls] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote iter__2926__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/fn)) (clojure.core/list (quote iter__2926__auto__)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote coll__2927__auto__))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/seq)) (clojure.core/list (quote coll__2927__auto__)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/lazy-cons)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/first)) (clojure.core/list (quote coll__2927__auto__)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote iter__2926__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list (quote coll__2927__auto__)))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/lazy-cat)) colls))))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote iter__2926__auto__)) (clojure.core/list coll)))))) +// Skipping: (defmacro for "List comprehension. Takes a vector of one or more\n binding-form/collection-expr pairs, each followed by an optional filtering\n :when/:while expression (:when test or :while test), and yields a\n lazy sequence of evaluations of expr. Collections are iterated in a\n nested fashion, rightmost fastest, and nested coll-exprs can refer to\n bindings created in prior binding-forms.\n\n (take 100 (for [x (range 100000000) y (range 1000000) :while (< y x)] [x y]))" ([seq-exprs expr] (assert-args for (vector? seq-exprs) "a vector for its binding" (even? (count seq-exprs)) "an even number of forms in binding vector") (let [to-groups (fn [seq-exprs] (reduce (fn [groups [k v]] (if (keyword? k) (conj (pop groups) (assoc (peek groups) k v)) (conj groups {:bind k, :seq v}))) [] (partition 2 seq-exprs))) emit (fn emit [[group & [{next-seq :seq} :as more-groups]]] (let [giter (gensym "iter__") gxs (gensym "s__")] (clojure.core/concat (clojure.core/list (quote clojure.core/fn)) (clojure.core/list giter) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list gxs)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when-first)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (:bind group)) (clojure.core/list gxs)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (or (:while group) true)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (or (:when group) true)) (clojure.core/list (if more-groups (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote iterys__2939__auto__)) (clojure.core/list (emit more-groups)) (clojure.core/list (quote fs__2940__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote iterys__2939__auto__)) (clojure.core/list next-seq)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (quote fs__2940__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/lazy-cat)) (clojure.core/list (quote fs__2940__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list giter) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list gxs))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list gxs)))))))) (clojure.core/concat (clojure.core/list (quote clojure.core/lazy-cons)) (clojure.core/list expr) (clojure.core/list (clojure.core/concat (clojure.core/list giter) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list gxs)))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/rest)) (clojure.core/list gxs))))))))))))))] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote iter__2941__auto__)) (clojure.core/list (emit (to-groups seq-exprs)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote iter__2941__auto__)) (clojure.core/list (second seq-exprs)))))))) // Skipping: (defmacro comment "Ignores body, yields nil" [& body]) -// Skipping: (defmacro with-out-str "Evaluates exprs in a context in which *out* is bound to a fresh\n StringWriter. Returns the string created by any nested printing\n calls." [& body] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote s__2293)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.lang.RT/makeStringWriter))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/binding)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote clojure.core/*out*)) (clojure.core/list (quote s__2293))))) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/str)) (clojure.core/list (quote s__2293)))))))) -// Skipping: (defmacro with-in-str "Evaluates body in a context in which *in* is bound to a fresh\n StringReader initialized with the string s." [s & body] (clojure.core/concat (clojure.core/list (quote clojure.core/with-open)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote s__2303)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/->)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote java.io.StringReader.)) (clojure.core/list s))) (clojure.core/list (quote clojure.lang.LineNumberingPushbackReader.))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/binding)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote clojure.core/*in*)) (clojure.core/list (quote s__2303))))) body)))) +// Skipping: (defmacro with-out-str "Evaluates exprs in a context in which *out* is bound to a fresh\n StringWriter. Returns the string created by any nested printing\n calls." [& body] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote s__2992__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.lang.RT/makeStringWriter))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/binding)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote clojure.core/*out*)) (clojure.core/list (quote s__2992__auto__))))) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/str)) (clojure.core/list (quote s__2992__auto__)))))))) +// Skipping: (defmacro with-in-str "Evaluates body in a context in which *in* is bound to a fresh\n StringReader initialized with the string s." [s & body] (clojure.core/concat (clojure.core/list (quote clojure.core/with-open)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote s__3002__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/->)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote java.io.StringReader.)) (clojure.core/list s))) (clojure.core/list (quote clojure.lang.LineNumberingPushbackReader.))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/binding)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote clojure.core/*in*)) (clojure.core/list (quote s__3002__auto__))))) body)))) //====== //(defn pr-str "pr to a string, returning it" {:tag String} [& xs] (with-out-str (apply pr xs))) //--- -(function __clojure_core_fn_2313(){ -return (clojure.JS.def(clojure.core,"pr_str",clojure.JS.variadic(0,(function __clojure_core_fn_2313_pr_str_2315(){ -var s__2293_2,xs_1=clojure.JS.rest_args(this,arguments,0); -return (((s__2293_2=clojure.lang.RT.makeStringWriter()), -clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_out_STAR_,s__2293_2])), +(function __clojure_core_fn_3012(){ +return (clojure.JS.def(clojure.core,"pr_str",clojure.JS.variadic(0,(function __clojure_core_fn_3012_pr_str_3014(){ +var s__2992__auto___2,xs_1=clojure.JS.rest_args(this,arguments,0); +return (((s__2992__auto___2=clojure.lang.RT.makeStringWriter()), +clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_out_STAR_,s__2992__auto___2])), (function __try(){try{var _rtn=(clojure.core.apply.apply(null,[clojure.core.pr,xs_1]), -clojure.core.str.apply(null,[s__2293_2]))} +clojure.core.str.apply(null,[s__2992__auto___2]))} finally{clojure.lang.Var.popThreadBindings()}return _rtn})()))}))))}).apply(null,[]); //====== //(defn prn-str "prn to a string, returning it" {:tag String} [& xs] (with-out-str (apply prn xs))) //--- -(function __clojure_core_fn_2319(){ -return (clojure.JS.def(clojure.core,"prn_str",clojure.JS.variadic(0,(function __clojure_core_fn_2319_prn_str_2321(){ -var s__2293_2,xs_1=clojure.JS.rest_args(this,arguments,0); -return (((s__2293_2=clojure.lang.RT.makeStringWriter()), -clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_out_STAR_,s__2293_2])), +(function __clojure_core_fn_3019(){ +return (clojure.JS.def(clojure.core,"prn_str",clojure.JS.variadic(0,(function __clojure_core_fn_3019_prn_str_3021(){ +var s__2992__auto___2,xs_1=clojure.JS.rest_args(this,arguments,0); +return (((s__2992__auto___2=clojure.lang.RT.makeStringWriter()), +clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_out_STAR_,s__2992__auto___2])), (function __try(){try{var _rtn=(clojure.core.apply.apply(null,[clojure.core.prn,xs_1]), -clojure.core.str.apply(null,[s__2293_2]))} +clojure.core.str.apply(null,[s__2992__auto___2]))} finally{clojure.lang.Var.popThreadBindings()}return _rtn})()))}))))}).apply(null,[]); //====== //(defn print-str "print to a string, returning it" {:tag String} [& xs] (with-out-str (apply print xs))) //--- -(function __clojure_core_fn_2325(){ -return (clojure.JS.def(clojure.core,"print_str",clojure.JS.variadic(0,(function __clojure_core_fn_2325_print_str_2327(){ -var s__2293_2,xs_1=clojure.JS.rest_args(this,arguments,0); -return (((s__2293_2=clojure.lang.RT.makeStringWriter()), -clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_out_STAR_,s__2293_2])), +(function __clojure_core_fn_3026(){ +return (clojure.JS.def(clojure.core,"print_str",clojure.JS.variadic(0,(function __clojure_core_fn_3026_print_str_3028(){ +var s__2992__auto___2,xs_1=clojure.JS.rest_args(this,arguments,0); +return (((s__2992__auto___2=clojure.lang.RT.makeStringWriter()), +clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_out_STAR_,s__2992__auto___2])), (function __try(){try{var _rtn=(clojure.core.apply.apply(null,[clojure.core.print,xs_1]), -clojure.core.str.apply(null,[s__2293_2]))} +clojure.core.str.apply(null,[s__2992__auto___2]))} finally{clojure.lang.Var.popThreadBindings()}return _rtn})()))}))))}).apply(null,[]); //====== //(defn println-str "println to a string, returning it" {:tag String} [& xs] (with-out-str (apply println xs))) //--- -(function __clojure_core_fn_2331(){ -return (clojure.JS.def(clojure.core,"println_str",clojure.JS.variadic(0,(function __clojure_core_fn_2331_println_str_2333(){ -var s__2293_2,xs_1=clojure.JS.rest_args(this,arguments,0); -return (((s__2293_2=clojure.lang.RT.makeStringWriter()), -clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_out_STAR_,s__2293_2])), +(function __clojure_core_fn_3033(){ +return (clojure.JS.def(clojure.core,"println_str",clojure.JS.variadic(0,(function __clojure_core_fn_3033_println_str_3035(){ +var s__2992__auto___2,xs_1=clojure.JS.rest_args(this,arguments,0); +return (((s__2992__auto___2=clojure.lang.RT.makeStringWriter()), +clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_out_STAR_,s__2992__auto___2])), (function __try(){try{var _rtn=(clojure.core.apply.apply(null,[clojure.core.println,xs_1]), -clojure.core.str.apply(null,[s__2293_2]))} +clojure.core.str.apply(null,[s__2992__auto___2]))} finally{clojure.lang.Var.popThreadBindings()}return _rtn})()))}))))}).apply(null,[]); // Skipping: (defmacro assert "Evaluates expr and throws an exception if it does not evaluate to\n logical true." [x] (clojure.core/concat (clojure.core/list (quote clojure.core/when-not)) (clojure.core/list x) (clojure.core/list (clojure.core/concat (clojure.core/list (quote throw)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.lang.RT/makeException)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/str)) (clojure.core/list "Assert failed: ") (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/pr-str)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote quote)) (clojure.core/list x))))))))))))) //====== //(defn test "test [v] finds fn at key :test in var metadata and calls it,\n presuming failure will throw exception" [v] (let [f (:test (clojure.core/meta v))] (if f (do (f) :ok) :no-test))) //--- -(function __clojure_core_fn_2346(){ -return (clojure.JS.def(clojure.core,"test",(function __clojure_core_fn_2346_test_2348(v_1){ +(function __clojure_core_fn_3049(){ +return (clojure.JS.def(clojure.core,"test",(function __clojure_core_fn_3049_test_3051(v_1){ var f_2; return (((f_2=clojure.core.keyword("","test").apply(null,[clojure.core.meta.apply(null,[v_1])])), ((f_2)?(f_2.apply(null,[]), clojure.core.keyword("","ok")):(clojure.core.keyword("","no-test")))))})))}).apply(null,[]); -// Skipping: (defn re-pattern "Returns an instance of java.util.regex.Pattern, for use, e.g. in\n re-matcher." {:tag java.util.regex.Pattern} [s] (. java.util.regex.Pattern (compile s))) +// Skipping: (defn re-pattern "Returns an instance of java.util.regex.Pattern, for use, e.g. in\n re-matcher." {:tag java.util.regex.Pattern} [s] (if (instance? java.util.regex.Pattern s) s (. java.util.regex.Pattern (compile s)))) // Skipping: (defn re-matcher "Returns an instance of java.util.regex.Matcher, for use, e.g. in\n re-find." {:tag java.util.regex.Matcher} [re s] (. re (matcher s))) // Skipping: (defn re-groups "Returns the groups from the most recent match/find. If there are no\n nested groups, returns a string of the entire match. If there are\n nested groups, returns a vector of the groups, the first element\n being the entire match." [m] (let [gc (. m (groupCount))] (if (zero? gc) (. m (group)) (loop [ret [] c 0] (if (<= c gc) (recur (conj ret (. m (group c))) (inc c)) ret))))) // Skipping: (defn re-seq "Returns a lazy sequence of successive matches of pattern in string,\n using java.util.regex.Matcher.find(), each such match processed with\n re-groups." [re s] (let [m (re-matcher re s)] ((fn step [] (when (. m (find)) (lazy-cons (re-groups m) (step))))))) @@ -1974,24 +2083,24 @@ clojure.core.keyword("","ok")):(clojure.core.keyword("","no-test")))))})))}).app //====== //(defn rand "Returns a random floating point number between 0 (inclusive) and\n 1 (exclusive)." ([] (RT/random)) ([n] (* n (rand)))) //--- -(function __clojure_core_fn_2396(){ -return (clojure.JS.def(clojure.core,"rand",(function __clojure_core_fn_2396_rand_2398(n_1){switch(arguments.length){ +(function __clojure_core_fn_3099(){ +return (clojure.JS.def(clojure.core,"rand",(function __clojure_core_fn_3099_rand_3101(n_1){switch(arguments.length){ case 0:return (clojure.lang.RT.random())} return (clojure.lang.Numbers.multiply(n_1,clojure.core.rand.apply(null,[])))})))}).apply(null,[]); //====== //(defn rand-int "Returns a random integer between 0 (inclusive) and n (exclusive)." [n] (int (rand n))) //--- -(function __clojure_core_fn_2403(){ -return (clojure.JS.def(clojure.core,"rand_int",(function __clojure_core_fn_2403_rand_int_2405(n_1){ +(function __clojure_core_fn_3106(){ +return (clojure.JS.def(clojure.core,"rand_int",(function __clojure_core_fn_3106_rand_int_3108(n_1){ return (clojure.lang.RT.intCast(clojure.core.rand.apply(null,[n_1])))})))}).apply(null,[]); // Skipping: (defmacro defn- "same as defn, yielding non-public def" [name & decls] (list* (quote clojure.core/defn) (with-meta name (assoc (meta name) :private true)) decls)) //====== //(defn print-doc [v] (println "-------------------------") (println (str (ns-name (:ns (clojure.core/meta v))) "/" (:name (clojure.core/meta v)))) (prn (:arglists (clojure.core/meta v))) (when (:macro (clojure.core/meta v)) (println "Macro")) (println " " (:doc (clojure.core/meta v)))) //--- -(function __clojure_core_fn_2418(){ -return (clojure.JS.def(clojure.core,"print_doc",(function __clojure_core_fn_2418_print_doc_2420(v_1){ +(function __clojure_core_fn_3121(){ +return (clojure.JS.def(clojure.core,"print_doc",(function __clojure_core_fn_3121_print_doc_3123(v_1){ return (clojure.core.println.apply(null,["-------------------------"]), clojure.core.println.apply(null,[clojure.core.str.apply(null,[clojure.core.ns_name.apply(null,[clojure.core.keyword("","ns").apply(null,[clojure.core.meta.apply(null,[v_1])])]),"/",clojure.core.keyword("","name").apply(null,[clojure.core.meta.apply(null,[v_1])])])]), clojure.core.prn.apply(null,[clojure.core.keyword("","arglists").apply(null,[clojure.core.meta.apply(null,[v_1])])]), @@ -1999,53 +2108,53 @@ clojure.core.prn.apply(null,[clojure.core.keyword("","arglists").apply(null,[clo clojure.core.println.apply(null,[" ",clojure.core.keyword("","doc").apply(null,[clojure.core.meta.apply(null,[v_1])])]))})))}).apply(null,[]); //====== -//(defn find-doc "Prints documentation for any var whose documentation or name\n contains a match for re-string" [re-string] (let [re (re-pattern re-string)] (dorun (for [ns (all-ns) v (sort-by (comp :name meta) (vals (ns-interns ns))) :when (and (:doc (clojure.core/meta v)) (or (re-find (re-matcher re (:doc (clojure.core/meta v)))) (re-find (re-matcher re (str (:name (clojure.core/meta v)))))))] (print-doc v))))) -//--- -(function __clojure_core_fn_2424(){ -return (clojure.JS.def(clojure.core,"find_doc",(function __clojure_core_fn_2424_find_doc_2426(re_string_1){ -var iter__2240_3,re_2; -return (((re_2=clojure.core.re_pattern.apply(null,[re_string_1])), -clojure.core.dorun.apply(null,[((iter__2240_3=(function __clojure_core_fn_2424_find_doc_2426_iter_2428_2432(s__2429_1){ -var _cnt,_rtn,fs__2239_4,iter__2225_5,ns_2,iterys__2238_3,iter__2428_0=arguments.callee; -do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[s__2429_1]))?(((ns_2=clojure.core.first.apply(null,[s__2429_1])), -((true)?(((iterys__2238_3=(function __clojure_core_fn_2424_find_doc_2426_iter_2428_2432_iter_2430_2433(s__2431_1){ -var _cnt,_rtn,or__424_4,v_2,and__410_3,iter__2430_0=arguments.callee; -do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[s__2431_1]))?(((v_2=clojure.core.first.apply(null,[s__2431_1])), -((((and__410_3=clojure.core.keyword("","doc").apply(null,[clojure.core.meta.apply(null,[v_2])])), -((and__410_3)?(((or__424_4=clojure.core.re_find.apply(null,[clojure.core.re_matcher.apply(null,[re_2,clojure.core.keyword("","doc").apply(null,[clojure.core.meta.apply(null,[v_2])])])])), -((or__424_4)?(or__424_4):(clojure.core.re_find.apply(null,[clojure.core.re_matcher.apply(null,[re_2,clojure.core.str.apply(null,[clojure.core.keyword("","name").apply(null,[clojure.core.meta.apply(null,[v_2])])])])]))))):(and__410_3))))?((new clojure.lang.LazyCons((function __clojure_core_fn_2424_find_doc_2426_iter_2428_2432_iter_2430_2433_fn_2435(G__2434_1){switch(arguments.length){ +//(defn find-doc "Prints documentation for any var whose documentation or name\n contains a match for re-string-or-pattern" [re-string-or-pattern] (let [re (re-pattern re-string-or-pattern)] (dorun (for [ns (all-ns) v (sort-by (comp :name meta) (vals (ns-interns ns))) :when (and (:doc (clojure.core/meta v)) (or (re-find (re-matcher re (:doc (clojure.core/meta v)))) (re-find (re-matcher re (str (:name (clojure.core/meta v)))))))] (print-doc v))))) +//--- +(function __clojure_core_fn_3127(){ +return (clojure.JS.def(clojure.core,"find_doc",(function __clojure_core_fn_3127_find_doc_3129(re_string_or_pattern_1){ +var re_2,iter__2941__auto___3; +return (((re_2=clojure.core.re_pattern.apply(null,[re_string_or_pattern_1])), +clojure.core.dorun.apply(null,[((iter__2941__auto___3=(function __clojure_core_fn_3127_find_doc_3129_iter_3131_3135(s__3132_1){ +var _cnt,_rtn,ns_2,iterys__2939__auto___3,fs__2940__auto___4,iter__2926__auto___5,iter__3131_0=arguments.callee; +do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[s__3132_1]))?(((ns_2=clojure.core.first.apply(null,[s__3132_1])), +((true)?(((true)?(((iterys__2939__auto___3=(function __clojure_core_fn_3127_find_doc_3129_iter_3131_3135_iter_3133_3136(s__3134_1){ +var _cnt,_rtn,v_2,and__960__auto___3,or__974__auto___4,iter__3133_0=arguments.callee; +do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[s__3134_1]))?(((v_2=clojure.core.first.apply(null,[s__3134_1])), +((true)?(((((and__960__auto___3=clojure.core.keyword("","doc").apply(null,[clojure.core.meta.apply(null,[v_2])])), +((and__960__auto___3)?(((or__974__auto___4=clojure.core.re_find.apply(null,[clojure.core.re_matcher.apply(null,[re_2,clojure.core.keyword("","doc").apply(null,[clojure.core.meta.apply(null,[v_2])])])])), +((or__974__auto___4)?(or__974__auto___4):(clojure.core.re_find.apply(null,[clojure.core.re_matcher.apply(null,[re_2,clojure.core.str.apply(null,[clojure.core.keyword("","name").apply(null,[clojure.core.meta.apply(null,[v_2])])])])]))))):(and__960__auto___3))))?((new clojure.lang.LazyCons((function __clojure_core_fn_3127_find_doc_3129_iter_3131_3135_iter_3133_3136_fn_3138(G__3137_1){switch(arguments.length){ case 0:return (clojure.core.print_doc.apply(null,[v_2]))} -return (iter__2430_0.apply(null,[clojure.core.rest.apply(null,[s__2431_1])]))})))):((_cnt=1,_rtn=[clojure.core.rest.apply(null,[s__2431_1])],s__2431_1=_rtn[0]))))):(null)) +return (iter__3133_0.apply(null,[clojure.core.rest.apply(null,[s__3134_1])]))})))):((_cnt=1,_rtn=[clojure.core.rest.apply(null,[s__3134_1])],s__3134_1=_rtn[0])))):(null)))):(null)) }while(_cnt);return _rtn;})), -(fs__2239_4=iterys__2238_3.apply(null,[clojure.core.sort_by.apply(null,[clojure.core.comp.apply(null,[clojure.core.keyword("","name"),clojure.core.meta]),clojure.core.vals.apply(null,[clojure.core.ns_interns.apply(null,[ns_2])])])])), -((fs__2239_4)?(((iter__2225_5=(function __clojure_core_fn_2424_find_doc_2426_iter_2428_2432_iter_2225_2440(coll__2226_1){ -var iter__2225_0=arguments.callee; -return (((clojure.core.seq.apply(null,[coll__2226_1]))?((new clojure.lang.LazyCons((function __clojure_core_fn_2424_find_doc_2426_iter_2428_2432_iter_2225_2440_fn_2442(G__2441_1){switch(arguments.length){ -case 0:return (clojure.core.first.apply(null,[coll__2226_1]))} -return (iter__2225_0.apply(null,[clojure.core.rest.apply(null,[coll__2226_1])]))})))):(clojure.core.seq.apply(null,[iter__2428_0.apply(null,[clojure.core.rest.apply(null,[s__2429_1])])]))))})), -iter__2225_5.apply(null,[fs__2239_4]))):((_cnt=1,_rtn=[clojure.core.rest.apply(null,[s__2429_1])],s__2429_1=_rtn[0]))))):(null)))):(null)) +(fs__2940__auto___4=iterys__2939__auto___3.apply(null,[clojure.core.sort_by.apply(null,[clojure.core.comp.apply(null,[clojure.core.keyword("","name"),clojure.core.meta]),clojure.core.vals.apply(null,[clojure.core.ns_interns.apply(null,[ns_2])])])])), +((fs__2940__auto___4)?(((iter__2926__auto___5=(function __clojure_core_fn_3127_find_doc_3129_iter_3131_3135_iter_2926_auto_3145(coll__2927__auto___1){ +var iter__2926__auto___0=arguments.callee; +return (((clojure.core.seq.apply(null,[coll__2927__auto___1]))?((new clojure.lang.LazyCons((function __clojure_core_fn_3127_find_doc_3129_iter_3131_3135_iter_2926_auto_3145_fn_3147(G__3146_1){switch(arguments.length){ +case 0:return (clojure.core.first.apply(null,[coll__2927__auto___1]))} +return (iter__2926__auto___0.apply(null,[clojure.core.rest.apply(null,[coll__2927__auto___1])]))})))):(clojure.core.seq.apply(null,[iter__3131_0.apply(null,[clojure.core.rest.apply(null,[s__3132_1])])]))))})), +iter__2926__auto___5.apply(null,[fs__2940__auto___4]))):((_cnt=1,_rtn=[clojure.core.rest.apply(null,[s__3132_1])],s__3132_1=_rtn[0]))))):((_cnt=1,_rtn=[clojure.core.rest.apply(null,[s__3132_1])],s__3132_1=_rtn[0])))):(null)))):(null)) }while(_cnt);return _rtn;})), -iter__2240_3.apply(null,[clojure.core.all_ns.apply(null,[])]))])))})))}).apply(null,[]); +iter__2941__auto___3.apply(null,[clojure.core.all_ns.apply(null,[])]))])))})))}).apply(null,[]); //====== -//(defn special-form-anchor "Returns the anchor tag on http://clojure.org/special_forms for the\n special form x, or nil" [x] (#{(quote recur) (quote .) (quote var) (quote let) (quote quote) (quote set!) (quote monitor-enter) (quote loop) (quote new) (quote fn) (quote if) (quote try) (quote def) (quote monitor-exit) (quote throw) (quote do)} x)) +//(defn special-form-anchor "Returns the anchor tag on http://clojure.org/special_forms for the\n special form x, or nil" [x] (#{(quote fn) (quote quote) (quote let) (quote var) (quote loop) (quote set!) (quote monitor-enter) (quote recur) (quote .) (quote do) (quote throw) (quote monitor-exit) (quote try) (quote if) (quote def) (quote new)} x)) //--- -(function __clojure_core_fn_2450(){ -return (clojure.JS.def(clojure.core,"special_form_anchor",(function __clojure_core_fn_2450_special_form_anchor_2452(x_1){ -return (clojure.core.hash_set(clojure.core.symbol("recur"),clojure.core.symbol("."),clojure.core.symbol("var"),clojure.core.symbol("let"),clojure.core.symbol("quote"),clojure.core.symbol("set!"),clojure.core.symbol("monitor-enter"),clojure.core.symbol("loop"),clojure.core.symbol("new"),clojure.core.symbol("fn"),clojure.core.symbol("if"),clojure.core.symbol("try"),clojure.core.symbol("def"),clojure.core.symbol("monitor-exit"),clojure.core.symbol("throw"),clojure.core.symbol("do")).apply(null,[x_1]))})))}).apply(null,[]); +(function __clojure_core_fn_3159(){ +return (clojure.JS.def(clojure.core,"special_form_anchor",(function __clojure_core_fn_3159_special_form_anchor_3161(x_1){ +return (clojure.core.hash_set(clojure.core.symbol("fn"),clojure.core.symbol("quote"),clojure.core.symbol("let"),clojure.core.symbol("var"),clojure.core.symbol("loop"),clojure.core.symbol("set!"),clojure.core.symbol("monitor-enter"),clojure.core.symbol("recur"),clojure.core.symbol("."),clojure.core.symbol("do"),clojure.core.symbol("throw"),clojure.core.symbol("monitor-exit"),clojure.core.symbol("try"),clojure.core.symbol("if"),clojure.core.symbol("def"),clojure.core.symbol("new")).apply(null,[x_1]))})))}).apply(null,[]); //====== //(defn syntax-symbol-anchor "Returns the anchor tag on http://clojure.org/special_forms for the\n special form that uses syntax symbol x, or nil" [x] ({(quote &) (quote fn), (quote catch) (quote try), (quote finally) (quote try)} x)) //--- -(function __clojure_core_fn_2456(){ -return (clojure.JS.def(clojure.core,"syntax_symbol_anchor",(function __clojure_core_fn_2456_syntax_symbol_anchor_2458(x_1){ +(function __clojure_core_fn_3165(){ +return (clojure.JS.def(clojure.core,"syntax_symbol_anchor",(function __clojure_core_fn_3165_syntax_symbol_anchor_3167(x_1){ return (clojure.core.hash_map(clojure.core.symbol("&"),clojure.core.symbol("fn"),clojure.core.symbol("catch"),clojure.core.symbol("try"),clojure.core.symbol("finally"),clojure.core.symbol("try")).apply(null,[x_1]))})))}).apply(null,[]); //====== //(defn print-special-doc [name type anchor] (println "-------------------------") (println name) (println type) (println (str " Please see http://clojure.org/special_forms#" anchor))) //--- -(function __clojure_core_fn_2462(){ -return (clojure.JS.def(clojure.core,"print_special_doc",(function __clojure_core_fn_2462_print_special_doc_2464(name_1,type_2,anchor_3){ +(function __clojure_core_fn_3171(){ +return (clojure.JS.def(clojure.core,"print_special_doc",(function __clojure_core_fn_3171_print_special_doc_3173(name_1,type_2,anchor_3){ return (clojure.core.println.apply(null,["-------------------------"]), clojure.core.println.apply(null,[name_1]), clojure.core.println.apply(null,[type_2]), @@ -2055,202 +2164,202 @@ clojure.core.println.apply(null,[clojure.core.str.apply(null,[" Please see http //====== //(defn tree-seq "returns a lazy sequence of the nodes in a tree, via a depth-first walk.\n branch? must be a fn of one arg that returns true if passed a node\n that can have children (but may not). children must be a fn of one\n arg that returns a sequence of the children. Will only be called on\n nodes for which branch? returns true. Root is the root node of the\n tree, must be a branch." [branch? children root] (let [walk (fn walk [nodes] (when-first [node nodes] (lazy-cons node (if (branch? node) (lazy-cat (walk (children node)) (walk (rest nodes))) (walk (rest nodes))))))] (lazy-cons root (walk (children root))))) //--- -(function __clojure_core_fn_2477(){ -return (clojure.JS.def(clojure.core,"tree_seq",(function __clojure_core_fn_2477_tree_seq_2479(branch_QMARK__1,children_2,root_3){ +(function __clojure_core_fn_3186(){ +return (clojure.JS.def(clojure.core,"tree_seq",(function __clojure_core_fn_3186_tree_seq_3188(branch_QMARK__1,children_2,root_3){ var walk_4; -return (((walk_4=(function __clojure_core_fn_2477_tree_seq_2479_walk_2481(nodes_1){ +return (((walk_4=(function __clojure_core_fn_3186_tree_seq_3188_walk_3190(nodes_1){ var node_2,walk_0=arguments.callee; return (((clojure.core.seq.apply(null,[nodes_1]))?(((node_2=clojure.core.first.apply(null,[nodes_1])), -(new clojure.lang.LazyCons((function __clojure_core_fn_2477_tree_seq_2479_walk_2481_fn_2483(G__2482_1){switch(arguments.length){ +(new clojure.lang.LazyCons((function __clojure_core_fn_3186_tree_seq_3188_walk_3190_fn_3192(G__3191_1){switch(arguments.length){ case 0:return (node_2)} -var iter__2225_2; -return (((branch_QMARK__1.apply(null,[node_2]))?(((iter__2225_2=(function __clojure_core_fn_2477_tree_seq_2479_walk_2481_fn_2483_iter_2225_2486(coll__2226_1){ -var iter__2225_0=arguments.callee; -return (((clojure.core.seq.apply(null,[coll__2226_1]))?((new clojure.lang.LazyCons((function __clojure_core_fn_2477_tree_seq_2479_walk_2481_fn_2483_iter_2225_2486_fn_2488(G__2487_1){switch(arguments.length){ -case 0:return (clojure.core.first.apply(null,[coll__2226_1]))} -return (iter__2225_0.apply(null,[clojure.core.rest.apply(null,[coll__2226_1])]))})))):(clojure.core.seq.apply(null,[walk_0.apply(null,[clojure.core.rest.apply(null,[nodes_1])])]))))})), -iter__2225_2.apply(null,[walk_0.apply(null,[children_2.apply(null,[node_2])])]))):(walk_0.apply(null,[clojure.core.rest.apply(null,[nodes_1])]))))}))))):(null)))})), -(new clojure.lang.LazyCons((function __clojure_core_fn_2477_tree_seq_2479_fn_2496(G__2495_1){switch(arguments.length){ +var iter__2926__auto___2; +return (((branch_QMARK__1.apply(null,[node_2]))?(((iter__2926__auto___2=(function __clojure_core_fn_3186_tree_seq_3188_walk_3190_fn_3192_iter_2926_auto_3195(coll__2927__auto___1){ +var iter__2926__auto___0=arguments.callee; +return (((clojure.core.seq.apply(null,[coll__2927__auto___1]))?((new clojure.lang.LazyCons((function __clojure_core_fn_3186_tree_seq_3188_walk_3190_fn_3192_iter_2926_auto_3195_fn_3197(G__3196_1){switch(arguments.length){ +case 0:return (clojure.core.first.apply(null,[coll__2927__auto___1]))} +return (iter__2926__auto___0.apply(null,[clojure.core.rest.apply(null,[coll__2927__auto___1])]))})))):(clojure.core.seq.apply(null,[walk_0.apply(null,[clojure.core.rest.apply(null,[nodes_1])])]))))})), +iter__2926__auto___2.apply(null,[walk_0.apply(null,[children_2.apply(null,[node_2])])]))):(walk_0.apply(null,[clojure.core.rest.apply(null,[nodes_1])]))))}))))):(null)))})), +(new clojure.lang.LazyCons((function __clojure_core_fn_3186_tree_seq_3188_fn_3206(G__3205_1){switch(arguments.length){ case 0:return (root_3)} return (walk_4.apply(null,[children_2.apply(null,[root_3])]))})))))})))}).apply(null,[]); //====== //(defn file-seq "A tree seq on java.io.Files" [dir] (tree-seq (fn [f] (. f (isDirectory))) (fn [d] (seq (. d (listFiles)))) dir)) //--- -(function __clojure_core_fn_2502(){ -return (clojure.JS.def(clojure.core,"file_seq",(function __clojure_core_fn_2502_file_seq_2504(dir_1){ -return (clojure.core.tree_seq.apply(null,[(function __clojure_core_fn_2502_file_seq_2504_fn_2506(f_1){ -return ((f_1).isDirectory())}),(function __clojure_core_fn_2502_file_seq_2504_fn_2509(d_1){ +(function __clojure_core_fn_3212(){ +return (clojure.JS.def(clojure.core,"file_seq",(function __clojure_core_fn_3212_file_seq_3214(dir_1){ +return (clojure.core.tree_seq.apply(null,[(function __clojure_core_fn_3212_file_seq_3214_fn_3216(f_1){ +return ((f_1).isDirectory())}),(function __clojure_core_fn_3212_file_seq_3214_fn_3219(d_1){ return (clojure.core.seq.apply(null,[(d_1).listFiles()]))}),dir_1]))})))}).apply(null,[]); //====== //(defn xml-seq "A tree seq on the xml elements as per xml/parse" [root] (tree-seq (complement string?) (comp seq :content) root)) //--- -(function __clojure_core_fn_2514(){ -return (clojure.JS.def(clojure.core,"xml_seq",(function __clojure_core_fn_2514_xml_seq_2516(root_1){ +(function __clojure_core_fn_3224(){ +return (clojure.JS.def(clojure.core,"xml_seq",(function __clojure_core_fn_3224_xml_seq_3226(root_1){ return (clojure.core.tree_seq.apply(null,[clojure.core.complement.apply(null,[clojure.core.string_QMARK_]),clojure.core.comp.apply(null,[clojure.core.seq,clojure.core.keyword("","content")]),root_1]))})))}).apply(null,[]); // Skipping: (defn special-symbol? "Returns true if s names a special form" [s] (contains? (. clojure.lang.Compiler specials) s)) //====== //(defn var? "Returns true if v is of type clojure.lang.Var" [v] (instance? clojure.lang.Var v)) //--- -(function __clojure_core_fn_2526(){ -return (clojure.JS.def(clojure.core,"var_QMARK_",(function __clojure_core_fn_2526_var_QMARK_2528(v_1){ +(function __clojure_core_fn_3236(){ +return (clojure.JS.def(clojure.core,"var_QMARK_",(function __clojure_core_fn_3236_var_QMARK_3238(v_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Var,v_1]))})))}).apply(null,[]); // Skipping: (defn slurp "Reads the file named by f into a string and returns it." [f] (with-open [r (new java.io.BufferedReader (new java.io.FileReader f))] (let [sb (RT/makeStringBuilder)] (loop [c (. r (read))] (if (neg? c) (str sb) (do (. sb (append (char c))) (recur (. r (read))))))))) //====== //(defn subs "Returns the substring of s beginning at start inclusive, and ending\n at end (defaults to length of string), exclusive." ([s start] (. s (substring start))) ([s start end] (. s (substring start end)))) //--- -(function __clojure_core_fn_2538(){ -return (clojure.JS.def(clojure.core,"subs",(function __clojure_core_fn_2538_subs_2540(s_1,start_2,end_3){switch(arguments.length){ +(function __clojure_core_fn_3248(){ +return (clojure.JS.def(clojure.core,"subs",(function __clojure_core_fn_3248_subs_3250(s_1,start_2,end_3){switch(arguments.length){ case 2:return ((s_1).substring(start_2))} return ((s_1).substring(start_2,end_3))})))}).apply(null,[]); //====== -//(defn max-key "Returns the x for which (k x), a number, is greatest." ([k x] x) ([k x y] (if (> (k x) (k y)) x y)) ([k x y & more] (reduce (fn* [p1__2545 p2__2546] (max-key k p1__2545 p2__2546)) (max-key k x y) more))) +//(defn max-key "Returns the x for which (k x), a number, is greatest." ([k x] x) ([k x y] (if (> (k x) (k y)) x y)) ([k x y & more] (reduce (fn* [p1__3255 p2__3256] (max-key k p1__3255 p2__3256)) (max-key k x y) more))) //--- -(function __clojure_core_fn_2547(){ -return (clojure.JS.def(clojure.core,"max_key",clojure.JS.variadic(3,(function __clojure_core_fn_2547_max_key_2549(k_1,x_2,y_3){switch(arguments.length){ -case 3:return (((clojure.lang.Numbers.gt(k_1.apply(null,[x_2]),k_1.apply(null,[y_3])))?(x_2):(y_3))) -case 2:return (x_2)} +(function __clojure_core_fn_3257(){ +return (clojure.JS.def(clojure.core,"max_key",clojure.JS.variadic(3,(function __clojure_core_fn_3257_max_key_3259(k_1,x_2,y_3){switch(arguments.length){ +case 2:return (x_2) +case 3:return (((clojure.lang.Numbers.gt(k_1.apply(null,[x_2]),k_1.apply(null,[y_3])))?(x_2):(y_3)))} var more_4=clojure.JS.rest_args(this,arguments,3); -return (clojure.core.reduce.apply(null,[(function __clojure_core_fn_2547_max_key_2549_fn_2553(p1__2545_1,p2__2546_2){ -return (clojure.core.max_key.apply(null,[k_1,p1__2545_1,p2__2546_2]))}),clojure.core.max_key.apply(null,[k_1,x_2,y_3]),more_4]))}))))}).apply(null,[]); +return (clojure.core.reduce.apply(null,[(function __clojure_core_fn_3257_max_key_3259_fn_3263(p1__3255_1,p2__3256_2){ +return (clojure.core.max_key.apply(null,[k_1,p1__3255_1,p2__3256_2]))}),clojure.core.max_key.apply(null,[k_1,x_2,y_3]),more_4]))}))))}).apply(null,[]); //====== -//(defn min-key "Returns the x for which (k x), a number, is least." ([k x] x) ([k x y] (if (< (k x) (k y)) x y)) ([k x y & more] (reduce (fn* [p1__2558 p2__2559] (min-key k p1__2558 p2__2559)) (min-key k x y) more))) +//(defn min-key "Returns the x for which (k x), a number, is least." ([k x] x) ([k x y] (if (< (k x) (k y)) x y)) ([k x y & more] (reduce (fn* [p1__3268 p2__3269] (min-key k p1__3268 p2__3269)) (min-key k x y) more))) //--- -(function __clojure_core_fn_2560(){ -return (clojure.JS.def(clojure.core,"min_key",clojure.JS.variadic(3,(function __clojure_core_fn_2560_min_key_2562(k_1,x_2,y_3){switch(arguments.length){ -case 3:return (((clojure.lang.Numbers.lt(k_1.apply(null,[x_2]),k_1.apply(null,[y_3])))?(x_2):(y_3))) -case 2:return (x_2)} +(function __clojure_core_fn_3270(){ +return (clojure.JS.def(clojure.core,"min_key",clojure.JS.variadic(3,(function __clojure_core_fn_3270_min_key_3272(k_1,x_2,y_3){switch(arguments.length){ +case 2:return (x_2) +case 3:return (((clojure.lang.Numbers.lt(k_1.apply(null,[x_2]),k_1.apply(null,[y_3])))?(x_2):(y_3)))} var more_4=clojure.JS.rest_args(this,arguments,3); -return (clojure.core.reduce.apply(null,[(function __clojure_core_fn_2560_min_key_2562_fn_2566(p1__2558_1,p2__2559_2){ -return (clojure.core.min_key.apply(null,[k_1,p1__2558_1,p2__2559_2]))}),clojure.core.min_key.apply(null,[k_1,x_2,y_3]),more_4]))}))))}).apply(null,[]); +return (clojure.core.reduce.apply(null,[(function __clojure_core_fn_3270_min_key_3272_fn_3276(p1__3268_1,p2__3269_2){ +return (clojure.core.min_key.apply(null,[k_1,p1__3268_1,p2__3269_2]))}),clojure.core.min_key.apply(null,[k_1,x_2,y_3]),more_4]))}))))}).apply(null,[]); //====== //(defn distinct "Returns a lazy sequence of the elements of coll with duplicates removed" [coll] (let [step (fn step [[f & r :as xs] seen] (when xs (if (seen f) (recur r seen) (lazy-cons f (step r (conj seen f))))))] (step (seq coll) #{}))) //--- -(function __clojure_core_fn_2571(){ -return (clojure.JS.def(clojure.core,"distinct",(function __clojure_core_fn_2571_distinct_2573(coll_1){ +(function __clojure_core_fn_3281(){ +return (clojure.JS.def(clojure.core,"distinct",(function __clojure_core_fn_3281_distinct_3283(coll_1){ var step_2; -return (((step_2=(function __clojure_core_fn_2571_distinct_2573_step_2576(p__2575_1,seen_2){ -var _cnt,_rtn,vec__2577_3,xs_6,r_5,f_4,step_0=arguments.callee; -do{_cnt=0;_rtn=((vec__2577_3=p__2575_1), -(f_4=clojure.core.nth.apply(null,[vec__2577_3,(0),null])), -(r_5=clojure.core.nthrest.apply(null,[vec__2577_3,(1)])), -(xs_6=vec__2577_3), -((xs_6)?(((seen_2.apply(null,[f_4]))?((_cnt=1,_rtn=[r_5,seen_2],p__2575_1=_rtn[0],seen_2=_rtn[1])):((new clojure.lang.LazyCons((function __clojure_core_fn_2571_distinct_2573_step_2576_fn_2579(G__2578_1){switch(arguments.length){ +return (((step_2=(function __clojure_core_fn_3281_distinct_3283_step_3286(p__3285_1,seen_2){ +var _cnt,_rtn,vec__3287_3,f_4,r_5,xs_6,step_0=arguments.callee; +do{_cnt=0;_rtn=((vec__3287_3=p__3285_1), +(f_4=clojure.core.nth.apply(null,[vec__3287_3,(0),null])), +(r_5=clojure.core.nthrest.apply(null,[vec__3287_3,(1)])), +(xs_6=vec__3287_3), +((xs_6)?(((seen_2.apply(null,[f_4]))?((_cnt=1,_rtn=[r_5,seen_2],p__3285_1=_rtn[0],seen_2=_rtn[1])):((new clojure.lang.LazyCons((function __clojure_core_fn_3281_distinct_3283_step_3286_fn_3289(G__3288_1){switch(arguments.length){ case 0:return (f_4)} return (step_0.apply(null,[r_5,clojure.core.conj.apply(null,[seen_2,f_4])]))})))))):(null))) }while(_cnt);return _rtn;})), step_2.apply(null,[clojure.core.seq.apply(null,[coll_1]),clojure.lang.PersistentHashSet.EMPTY])))})))}).apply(null,[]); -// Skipping: (defmacro if-let "bindings => binding-form test\n\n If test is true, evaluates then with binding-form bound to the value of test, if not, yields else" ([bindings then] (clojure.core/concat (clojure.core/list (quote clojure.core/if-let)) (clojure.core/list bindings) (clojure.core/list then) (clojure.core/list (quote nil)))) ([bindings then else & oldform] (if (and (vector? bindings) (nil? oldform)) (let [[form tst] bindings] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote temp__2586)) (clojure.core/list tst)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (quote temp__2586)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list form) (clojure.core/list (quote temp__2586))))) (clojure.core/list then))) (clojure.core/list else))))) (throw (IllegalArgumentException. "if-let now requires a vector for its binding"))))) -// Skipping: (defmacro when-let "bindings => binding-form test\n\n When test is true, evaluates body with binding-form bound to the value of test" [bindings & body] (if (vector? bindings) (let [[form tst] bindings] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote temp__2600)) (clojure.core/list tst)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (quote temp__2600)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list form) (clojure.core/list (quote temp__2600))))) body)))))) (throw (IllegalArgumentException. "when-let now requires a vector for its binding")))) - -//====== -//(defn replace "Given a map of replacement pairs and a vector/collection, returns a\n vector/seq with any elements = a key in smap replaced with the\n corresponding val in smap" [smap coll] (if (vector? coll) (reduce (fn [v i] (if-let [e (find smap (nth v i))] (assoc v i (val e)) v)) coll (range (count coll))) (map (fn* [p1__2612] (if-let [e (find smap p1__2612)] (val e) p1__2612)) coll))) -//--- -(function __clojure_core_fn_2613(){ -return (clojure.JS.def(clojure.core,"replace",(function __clojure_core_fn_2613_replace_2615(smap_1,coll_2){ -return (((clojure.core.vector_QMARK_.apply(null,[coll_2]))?(clojure.core.reduce.apply(null,[(function __clojure_core_fn_2613_replace_2615_fn_2617(v_1,i_2){ -var temp__2586_3,e_4; -return (((temp__2586_3=clojure.core.find.apply(null,[smap_1,clojure.core.nth.apply(null,[v_1,i_2])])), -((temp__2586_3)?(((e_4=temp__2586_3), -clojure.core.assoc.apply(null,[v_1,i_2,clojure.core.val.apply(null,[e_4])]))):(v_1))))}),coll_2,clojure.core.range.apply(null,[clojure.core.count.apply(null,[coll_2])])])):(clojure.core.map.apply(null,[(function __clojure_core_fn_2613_replace_2615_fn_2620(p1__2612_1){ -var temp__2586_2,e_3; -return (((temp__2586_2=clojure.core.find.apply(null,[smap_1,p1__2612_1])), -((temp__2586_2)?(((e_3=temp__2586_2), -clojure.core.val.apply(null,[e_3]))):(p1__2612_1))))}),coll_2]))))})))}).apply(null,[]); +// Skipping: (defmacro if-let "bindings => binding-form test\n\n If test is true, evaluates then with binding-form bound to the value of test, if not, yields else" ([bindings then] (clojure.core/concat (clojure.core/list (quote clojure.core/if-let)) (clojure.core/list bindings) (clojure.core/list then) (clojure.core/list (quote nil)))) ([bindings then else & oldform] (assert-args if-let (and (vector? bindings) (nil? oldform)) "a vector for its binding" (even? (count bindings)) "exactly 2 forms in binding vector") (let [[form tst] bindings] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote temp__3296__auto__)) (clojure.core/list tst)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (quote temp__3296__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list form) (clojure.core/list (quote temp__3296__auto__))))) (clojure.core/list then))) (clojure.core/list else))))))) +// Skipping: (defmacro when-let "bindings => binding-form test\n\n When test is true, evaluates body with binding-form bound to the value of test" [bindings & body] (assert-args when-let (vector? bindings) "a vector for its binding" (even? (count bindings)) "exactly 2 forms in binding vector") (let [[form tst] bindings] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote temp__3312__auto__)) (clojure.core/list tst)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list (quote temp__3312__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list form) (clojure.core/list (quote temp__3312__auto__))))) body))))))) + +//====== +//(defn replace "Given a map of replacement pairs and a vector/collection, returns a\n vector/seq with any elements = a key in smap replaced with the\n corresponding val in smap" [smap coll] (if (vector? coll) (reduce (fn [v i] (if-let [e (find smap (nth v i))] (assoc v i (val e)) v)) coll (range (count coll))) (map (fn* [p1__3324] (if-let [e (find smap p1__3324)] (val e) p1__3324)) coll))) +//--- +(function __clojure_core_fn_3325(){ +return (clojure.JS.def(clojure.core,"replace",(function __clojure_core_fn_3325_replace_3327(smap_1,coll_2){ +return (((clojure.core.vector_QMARK_.apply(null,[coll_2]))?(clojure.core.reduce.apply(null,[(function __clojure_core_fn_3325_replace_3327_fn_3329(v_1,i_2){ +var temp__3296__auto___3,e_4; +return (((temp__3296__auto___3=clojure.core.find.apply(null,[smap_1,clojure.core.nth.apply(null,[v_1,i_2])])), +((temp__3296__auto___3)?(((e_4=temp__3296__auto___3), +clojure.core.assoc.apply(null,[v_1,i_2,clojure.core.val.apply(null,[e_4])]))):(v_1))))}),coll_2,clojure.core.range.apply(null,[clojure.core.count.apply(null,[coll_2])])])):(clojure.core.map.apply(null,[(function __clojure_core_fn_3325_replace_3327_fn_3333(p1__3324_1){ +var temp__3296__auto___2,e_3; +return (((temp__3296__auto___2=clojure.core.find.apply(null,[smap_1,p1__3324_1])), +((temp__3296__auto___2)?(((e_3=temp__3296__auto___2), +clojure.core.val.apply(null,[e_3]))):(p1__3324_1))))}),coll_2]))))})))}).apply(null,[]); // Skipping: (defmacro dosync "Runs the exprs (in an implicit do) in a transaction that encompasses\n exprs and any nested calls. Starts a transaction if none is already\n running on this thread. Any uncaught exception will abort the\n transaction and flow out of dosync. The exprs may be run more than\n once, but any effects on Refs will be atomic." [& exprs] (clojure.core/concat (clojure.core/list (quote clojure.core/sync)) (clojure.core/list (quote nil)) exprs)) // Skipping: (defmacro with-precision "Sets the precision and rounding mode to be used for BigDecimal operations.\n\n Usage: (with-precision 10 (/ 1M 3))\n or: (with-precision 10 :rounding HALF_DOWN (/ 1M 3))\n \n The rounding mode is one of CEILING, FLOOR, HALF_UP, HALF_DOWN,\n HALF_EVEN, UP, DOWN and UNNECESSARY; it defaults to HALF_UP." [precision & exprs] (let [[body rm] (if (= (first exprs) :rounding) [(rest (rest exprs)) (clojure.core/concat (clojure.core/list (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote java.math.RoundingMode)) (clojure.core/list (second exprs)))))] [exprs nil])] (clojure.core/concat (clojure.core/list (quote clojure.core/binding)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote clojure.core/*math-context*)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote java.math.MathContext.)) (clojure.core/list precision) rm))))) body))) //====== //(defn bound-fn {:private true} [sc test key] (fn [e] (test (.. sc comparator (compare (. sc entryKey e) key)) 0))) //--- -(function __clojure_core_fn_2645(){ -return (clojure.JS.def(clojure.core,"bound_fn",(function __clojure_core_fn_2645_bound_fn_2647(sc_1,test_2,key_3){ -return ((function __clojure_core_fn_2645_bound_fn_2647_fn_2649(e_1){ +(function __clojure_core_fn_3359(){ +return (clojure.JS.def(clojure.core,"bound_fn",(function __clojure_core_fn_3359_bound_fn_3361(sc_1,test_2,key_3){ +return ((function __clojure_core_fn_3359_bound_fn_3361_fn_3363(e_1){ return (test_2.apply(null,[((sc_1).comparator()).compare((sc_1).entryKey(e_1),key_3),(0)]))}))})))}).apply(null,[]); //====== //(defn subseq "sc must be a sorted collection, test(s) one of <, <=, > or\n >=. Returns a seq of those entries with keys ek for\n which (test (.. sc comparator (compare ek key)) 0) is true" ([sc test key] (let [include (bound-fn sc test key)] (if (#{> >=} test) (when-let [[e :as s] (. sc seqFrom key true)] (if (include e) s (rest s))) (take-while include (. sc seq true))))) ([sc start-test start-key end-test end-key] (when-let [[e :as s] (. sc seqFrom start-key true)] (take-while (bound-fn sc end-test end-key) (if ((bound-fn sc start-test start-key) e) s (rest s)))))) //--- -(function __clojure_core_fn_2654(){ -return (clojure.JS.def(clojure.core,"subseq",(function __clojure_core_fn_2654_subseq_2656(sc_1,start_test_2,start_key_3,end_test_4,end_key_5){switch(arguments.length){ -case 3:var temp__2600_5,vec__2658_6,e_7,s_8,include_4,test_2=arguments[1],key_3=arguments[2]; +(function __clojure_core_fn_3368(){ +return (clojure.JS.def(clojure.core,"subseq",(function __clojure_core_fn_3368_subseq_3370(sc_1,start_test_2,start_key_3,end_test_4,end_key_5){switch(arguments.length){ +case 3:var include_4,temp__3312__auto___5,vec__3372_6,e_7,s_8,test_2=arguments[1],key_3=arguments[2]; return (((include_4=clojure.core.bound_fn.apply(null,[sc_1,test_2,key_3])), -((clojure.core.hash_set(clojure.core._GT_,clojure.core._GT__EQ_).apply(null,[test_2]))?(((temp__2600_5=(sc_1).seqFrom(key_3,true)), -((temp__2600_5)?(((vec__2658_6=temp__2600_5), -(e_7=clojure.core.nth.apply(null,[vec__2658_6,(0),null])), -(s_8=vec__2658_6), +((clojure.core.hash_set(clojure.core._GT_,clojure.core._GT__EQ_).apply(null,[test_2]))?(((temp__3312__auto___5=(sc_1).seqFrom(key_3,true)), +((temp__3312__auto___5)?(((vec__3372_6=temp__3312__auto___5), +(e_7=clojure.core.nth.apply(null,[vec__3372_6,(0),null])), +(s_8=vec__3372_6), ((include_4.apply(null,[e_7]))?(s_8):(clojure.core.rest.apply(null,[s_8]))))):(null)))):(clojure.core.take_while.apply(null,[include_4,(sc_1).seq(true)])))))} -var temp__2600_6,s_9,e_8,vec__2660_7; -return (((temp__2600_6=(sc_1).seqFrom(start_key_3,true)), -((temp__2600_6)?(((vec__2660_7=temp__2600_6), -(e_8=clojure.core.nth.apply(null,[vec__2660_7,(0),null])), -(s_9=vec__2660_7), +var vec__3374_7,s_9,e_8,temp__3312__auto___6; +return (((temp__3312__auto___6=(sc_1).seqFrom(start_key_3,true)), +((temp__3312__auto___6)?(((vec__3374_7=temp__3312__auto___6), +(e_8=clojure.core.nth.apply(null,[vec__3374_7,(0),null])), +(s_9=vec__3374_7), clojure.core.take_while.apply(null,[clojure.core.bound_fn.apply(null,[sc_1,end_test_4,end_key_5]),((clojure.core.bound_fn.apply(null,[sc_1,start_test_2,start_key_3]).apply(null,[e_8]))?(s_9):(clojure.core.rest.apply(null,[s_9])))]))):(null))))})))}).apply(null,[]); //====== //(defn rsubseq "sc must be a sorted collection, test(s) one of <, <=, > or\n >=. Returns a reverse seq of those entries with keys ek for\n which (test (.. sc comparator (compare ek key)) 0) is true" ([sc test key] (let [include (bound-fn sc test key)] (if (#{< <=} test) (when-let [[e :as s] (. sc seqFrom key false)] (if (include e) s (rest s))) (take-while include (. sc seq false))))) ([sc start-test start-key end-test end-key] (when-let [[e :as s] (. sc seqFrom end-key false)] (take-while (bound-fn sc start-test start-key) (if ((bound-fn sc end-test end-key) e) s (rest s)))))) //--- -(function __clojure_core_fn_2663(){ -return (clojure.JS.def(clojure.core,"rsubseq",(function __clojure_core_fn_2663_rsubseq_2665(sc_1,start_test_2,start_key_3,end_test_4,end_key_5){switch(arguments.length){ -case 3:var s_8,e_7,include_4,vec__2667_6,temp__2600_5,test_2=arguments[1],key_3=arguments[2]; +(function __clojure_core_fn_3379(){ +return (clojure.JS.def(clojure.core,"rsubseq",(function __clojure_core_fn_3379_rsubseq_3381(sc_1,start_test_2,start_key_3,end_test_4,end_key_5){switch(arguments.length){ +case 3:var include_4,temp__3312__auto___5,vec__3383_6,e_7,s_8,test_2=arguments[1],key_3=arguments[2]; return (((include_4=clojure.core.bound_fn.apply(null,[sc_1,test_2,key_3])), -((clojure.core.hash_set(clojure.core._LT_,clojure.core._LT__EQ_).apply(null,[test_2]))?(((temp__2600_5=(sc_1).seqFrom(key_3,false)), -((temp__2600_5)?(((vec__2667_6=temp__2600_5), -(e_7=clojure.core.nth.apply(null,[vec__2667_6,(0),null])), -(s_8=vec__2667_6), +((clojure.core.hash_set(clojure.core._LT_,clojure.core._LT__EQ_).apply(null,[test_2]))?(((temp__3312__auto___5=(sc_1).seqFrom(key_3,false)), +((temp__3312__auto___5)?(((vec__3383_6=temp__3312__auto___5), +(e_7=clojure.core.nth.apply(null,[vec__3383_6,(0),null])), +(s_8=vec__3383_6), ((include_4.apply(null,[e_7]))?(s_8):(clojure.core.rest.apply(null,[s_8]))))):(null)))):(clojure.core.take_while.apply(null,[include_4,(sc_1).seq(false)])))))} -var temp__2600_6,e_8,vec__2669_7,s_9; -return (((temp__2600_6=(sc_1).seqFrom(end_key_5,false)), -((temp__2600_6)?(((vec__2669_7=temp__2600_6), -(e_8=clojure.core.nth.apply(null,[vec__2669_7,(0),null])), -(s_9=vec__2669_7), +var e_8,vec__3385_7,s_9,temp__3312__auto___6; +return (((temp__3312__auto___6=(sc_1).seqFrom(end_key_5,false)), +((temp__3312__auto___6)?(((vec__3385_7=temp__3312__auto___6), +(e_8=clojure.core.nth.apply(null,[vec__3385_7,(0),null])), +(s_9=vec__3385_7), clojure.core.take_while.apply(null,[clojure.core.bound_fn.apply(null,[sc_1,start_test_2,start_key_3]),((clojure.core.bound_fn.apply(null,[sc_1,end_test_4,end_key_5]).apply(null,[e_8]))?(s_9):(clojure.core.rest.apply(null,[s_9])))]))):(null))))})))}).apply(null,[]); //====== //(defn repeatedly "Takes a function of no args, presumably with side effects, and returns an infinite\n lazy sequence of calls to it" [f] (lazy-cons (f) (repeatedly f))) //--- -(function __clojure_core_fn_2672(){ -return (clojure.JS.def(clojure.core,"repeatedly",(function __clojure_core_fn_2672_repeatedly_2674(f_1){ -return ((new clojure.lang.LazyCons((function __clojure_core_fn_2672_repeatedly_2674_fn_2677(G__2676_1){switch(arguments.length){ +(function __clojure_core_fn_3390(){ +return (clojure.JS.def(clojure.core,"repeatedly",(function __clojure_core_fn_3390_repeatedly_3392(f_1){ +return ((new clojure.lang.LazyCons((function __clojure_core_fn_3390_repeatedly_3392_fn_3395(G__3394_1){switch(arguments.length){ case 0:return (f_1.apply(null,[]))} return (clojure.core.repeatedly.apply(null,[f_1]))}))))})))}).apply(null,[]); //====== //(defn add-classpath "Adds the url (String or URL object) to the classpath per URLClassLoader.addURL" [url] (. clojure.lang.RT addURL url)) //--- -(function __clojure_core_fn_2683(){ -return (clojure.JS.def(clojure.core,"add_classpath",(function __clojure_core_fn_2683_add_classpath_2685(url_1){ +(function __clojure_core_fn_3401(){ +return (clojure.JS.def(clojure.core,"add_classpath",(function __clojure_core_fn_3401_add_classpath_3403(url_1){ return (clojure.lang.RT.addURL(url_1))})))}).apply(null,[]); //====== //(defn hash "Returns the hash code of its argument" [x] (. clojure.lang.Util (hash x))) //--- -(function __clojure_core_fn_2689(){ -return (clojure.JS.def(clojure.core,"hash",(function __clojure_core_fn_2689_hash_2691(x_1){ +(function __clojure_core_fn_3407(){ +return (clojure.JS.def(clojure.core,"hash",(function __clojure_core_fn_3407_hash_3409(x_1){ return (clojure.lang.Util.hash(x_1))})))}).apply(null,[]); //====== //(defn interpose "Returns a lazy seq of the elements of coll separated by sep" [sep coll] (drop 1 (interleave (repeat sep) coll))) //--- -(function __clojure_core_fn_2695(){ -return (clojure.JS.def(clojure.core,"interpose",(function __clojure_core_fn_2695_interpose_2697(sep_1,coll_2){ +(function __clojure_core_fn_3413(){ +return (clojure.JS.def(clojure.core,"interpose",(function __clojure_core_fn_3413_interpose_3415(sep_1,coll_2){ return (clojure.core.drop.apply(null,[(1),clojure.core.interleave.apply(null,[clojure.core.repeat.apply(null,[sep_1]),coll_2])]))})))}).apply(null,[]); -// Skipping: (defmacro definline "Experimental - like defmacro, except defines a named function whose\n body is the expansion, calls to which may be expanded inline as if\n it were a macro. Cannot be used with variadic (&) args." [name & decl] (let [[args expr] (drop-while (comp not vector?) decl) inline (eval (list (quote clojure.core/fn) args expr))] (clojure.core/concat (clojure.core/list (quote do)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/defn)) (clojure.core/list name) (clojure.core/list args) (clojure.core/list (apply inline args)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote v__2701)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote var)) (clojure.core/list name)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/.setMeta)) (clojure.core/list (quote v__2701)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/assoc)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/meta)) (clojure.core/list (quote v__2701)))) (clojure.core/list :inline) (clojure.core/list inline)))))))))) +// Skipping: (defmacro definline "Experimental - like defmacro, except defines a named function whose\n body is the expansion, calls to which may be expanded inline as if\n it were a macro. Cannot be used with variadic (&) args." [name & decl] (let [[args expr] (drop-while (comp not vector?) decl) inline (eval (list (quote clojure.core/fn) args expr))] (clojure.core/concat (clojure.core/list (quote do)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/defn)) (clojure.core/list name) (clojure.core/list args) (clojure.core/list (apply inline args)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote v__3419__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote var)) (clojure.core/list name)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .setMeta)) (clojure.core/list (quote v__3419__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/assoc)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/meta)) (clojure.core/list (quote v__3419__auto__)))) (clojure.core/list :inline) (clojure.core/list inline)))))))))) //====== //(defn empty "Returns an empty collection of the same category as coll, or nil" [coll] (.empty coll)) //--- -(function __clojure_core_fn_2713(){ -return (clojure.JS.def(clojure.core,"empty",(function __clojure_core_fn_2713_empty_2715(coll_1){ +(function __clojure_core_fn_3431(){ +return (clojure.JS.def(clojure.core,"empty",(function __clojure_core_fn_3431_empty_3433(coll_1){ return ((coll_1).empty())})))}).apply(null,[]); -// Skipping: (defmacro amap "Maps an expression across an array a, using an index named idx, and\n return value named ret, initialized to a clone of a, then setting each element of\n ret to the evaluation of expr, returning the new array ret." [a idx ret expr] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote a__2719)) (clojure.core/list a) (clojure.core/list ret) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/aclone)) (clojure.core/list (quote a__2719))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/loop)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list idx) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/int)) (clojure.core/list 0)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/<)) (clojure.core/list idx) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/alength)) (clojure.core/list (quote a__2719)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote do)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/aset)) (clojure.core/list ret) (clojure.core/list idx) (clojure.core/list expr))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked-inc)) (clojure.core/list idx))))))) (clojure.core/list ret))))))) -// Skipping: (defmacro areduce "Reduces an expression across an array a, using an index named idx,\n and return value named ret, initialized to init, setting ret to the evaluation of expr at\n each step, returning ret." [a idx ret init expr] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote a__2729)) (clojure.core/list a)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/loop)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list idx) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/int)) (clojure.core/list 0))) (clojure.core/list ret) (clojure.core/list init)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/<)) (clojure.core/list idx) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/alength)) (clojure.core/list (quote a__2729)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked-inc)) (clojure.core/list idx))) (clojure.core/list expr))) (clojure.core/list ret))))))) +// Skipping: (defmacro amap "Maps an expression across an array a, using an index named idx, and\n return value named ret, initialized to a clone of a, then setting each element of\n ret to the evaluation of expr, returning the new array ret." [a idx ret expr] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote a__3437__auto__)) (clojure.core/list a) (clojure.core/list ret) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/aclone)) (clojure.core/list (quote a__3437__auto__))))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/loop)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list idx) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/int)) (clojure.core/list 0)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/<)) (clojure.core/list idx) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/alength)) (clojure.core/list (quote a__3437__auto__)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote do)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/aset)) (clojure.core/list ret) (clojure.core/list idx) (clojure.core/list expr))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked-inc)) (clojure.core/list idx))))))) (clojure.core/list ret))))))) +// Skipping: (defmacro areduce "Reduces an expression across an array a, using an index named idx,\n and return value named ret, initialized to init, setting ret to the evaluation of expr at\n each step, returning ret." [a idx ret init expr] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote a__3447__auto__)) (clojure.core/list a)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/loop)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list idx) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/int)) (clojure.core/list 0))) (clojure.core/list ret) (clojure.core/list init)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/<)) (clojure.core/list idx) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/alength)) (clojure.core/list (quote a__3447__auto__)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/unchecked-inc)) (clojure.core/list idx))) (clojure.core/list expr))) (clojure.core/list ret))))))) // Skipping: (defn float-array "Creates an array of floats" {:inline (fn [& args] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (quote clojure.core/float_array)) args)), :inline-arities #{1 2}} ([size-or-seq] (. clojure.lang.Numbers float_array size-or-seq)) ([size init-val-or-seq] (. clojure.lang.Numbers float_array size init-val-or-seq))) // Skipping: (defn double-array "Creates an array of doubles" {:inline (fn [& args] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (quote clojure.core/double_array)) args)), :inline-arities #{1 2}} ([size-or-seq] (. clojure.lang.Numbers double_array size-or-seq)) ([size init-val-or-seq] (. clojure.lang.Numbers double_array size init-val-or-seq))) // Skipping: (defn int-array "Creates an array of ints" {:inline (fn [& args] (clojure.core/concat (clojure.core/list (quote .)) (clojure.core/list (quote clojure.lang.Numbers)) (clojure.core/list (quote clojure.core/int_array)) args)), :inline-arities #{1 2}} ([size-or-seq] (. clojure.lang.Numbers int_array size-or-seq)) ([size init-val-or-seq] (. clojure.lang.Numbers int_array size init-val-or-seq))) @@ -2263,43 +2372,43 @@ return ((coll_1).empty())})))}).apply(null,[]); //====== //(import (quote (java.util.concurrent BlockingQueue LinkedBlockingQueue))) //--- -(function __clojure_core_fn_2779(){ +(function __clojure_core_fn_3497(){ return (clojure.core.import_.apply(null,[clojure.JS.lit_list([clojure.core.symbol("java.util.concurrent"),clojure.core.symbol("BlockingQueue"),clojure.core.symbol("LinkedBlockingQueue")])]))}).apply(null,[]); // Skipping: (defn seque "Creates a queued seq on another (presumably lazy) seq s. The queued\n seq will produce a concrete seq in the background, and can get up to\n n items ahead of the consumer. n-or-q can be an integer n buffer\n size, or an instance of java.util.concurrent BlockingQueue. Note\n that reading from a seque can block if the reader gets ahead of the\n producer." ([s] (seque 100 s)) ([n-or-q s] (let [q (if (instance? BlockingQueue n-or-q) n-or-q (LinkedBlockingQueue. (int n-or-q))) NIL (Object.) agt (agent (seq s)) fill (fn [s] (try (loop [[x & xs :as s] s] (if s (if (.offer q (if (nil? x) NIL x)) (recur xs) s) (.put q q))) (catch Exception e (.put q q) (throw e)))) drain (fn drain [] (let [x (.take q)] (if (identical? x q) (clojure.core/deref agt) (do (send-off agt fill) (lazy-cons (if (identical? x NIL) nil x) (drain))))))] (send-off agt fill) (drain)))) //====== //(defn alter-var-root "Atomically alters the root binding of var v by applying f to its\n current value plus any args" [v f & args] (.alterRoot v f args)) //--- -(function __clojure_core_fn_2803(){ -return (clojure.JS.def(clojure.core,"alter_var_root",clojure.JS.variadic(2,(function __clojure_core_fn_2803_alter_var_root_2805(v_1,f_2){ +(function __clojure_core_fn_3521(){ +return (clojure.JS.def(clojure.core,"alter_var_root",clojure.JS.variadic(2,(function __clojure_core_fn_3521_alter_var_root_3523(v_1,f_2){ var args_3=clojure.JS.rest_args(this,arguments,2); return ((v_1).alterRoot(f_2,args_3))}))))}).apply(null,[]); //====== -//(defn make-hierarchy "Creates a hierarchy object for use with derive, isa? etc." [] {:descendants {}, :ancestors {}, :parents {}}) +//(defn make-hierarchy "Creates a hierarchy object for use with derive, isa? etc." [] {:parents {}, :descendants {}, :ancestors {}}) //--- -(function __clojure_core_fn_2809(){ -return (clojure.JS.def(clojure.core,"make_hierarchy",(function __clojure_core_fn_2809_make_hierarchy_2811(){ -return (clojure.core.hash_map(clojure.core.keyword("","descendants"),clojure.lang.PersistentHashMap.EMPTY,clojure.core.keyword("","ancestors"),clojure.lang.PersistentHashMap.EMPTY,clojure.core.keyword("","parents"),clojure.lang.PersistentHashMap.EMPTY))})))}).apply(null,[]); +(function __clojure_core_fn_3527(){ +return (clojure.JS.def(clojure.core,"make_hierarchy",(function __clojure_core_fn_3527_make_hierarchy_3529(){ +return (clojure.core.hash_map(clojure.core.keyword("","parents"),clojure.lang.PersistentArrayMap.EMPTY,clojure.core.keyword("","descendants"),clojure.lang.PersistentArrayMap.EMPTY,clojure.core.keyword("","ancestors"),clojure.lang.PersistentArrayMap.EMPTY))})))}).apply(null,[]); //====== //(def global-hierarchy (make-hierarchy)) //--- -(function __clojure_core_fn_2815(){ +(function __clojure_core_fn_3533(){ return (clojure.JS.def(clojure.core,"global_hierarchy",clojure.core.make_hierarchy.apply(null,[])))}).apply(null,[]); //====== //(defn not-empty "If coll is empty, returns nil, else coll" [coll] (when (seq coll) coll)) //--- -(function __clojure_core_fn_2818(){ -return (clojure.JS.def(clojure.core,"not_empty",(function __clojure_core_fn_2818_not_empty_2820(coll_1){ +(function __clojure_core_fn_3536(){ +return (clojure.JS.def(clojure.core,"not_empty",(function __clojure_core_fn_3536_not_empty_3538(coll_1){ return (((clojure.core.seq.apply(null,[coll_1]))?(coll_1):(null)))})))}).apply(null,[]); //====== //(defn bases "Returns the immediate superclass and direct interfaces of c, if any" [c] (let [i (.getInterfaces c) s (.getSuperclass c)] (not-empty (if s (cons s i) i)))) //--- -(function __clojure_core_fn_2824(){ -return (clojure.JS.def(clojure.core,"bases",(function __clojure_core_fn_2824_bases_2826(c_1){ +(function __clojure_core_fn_3542(){ +return (clojure.JS.def(clojure.core,"bases",(function __clojure_core_fn_3542_bases_3544(c_1){ var i_2,s_3; return (((i_2=(c_1).getInterfaces()), (s_3=(c_1).getSuperclass()), @@ -2308,9 +2417,9 @@ clojure.core.not_empty.apply(null,[((s_3)?(clojure.core.cons.apply(null,[s_3,i_2 //====== //(defn supers "Returns the immediate and indirect superclasses and interfaces of c, if any" [class] (loop [ret (set (bases class)) cs ret] (if (seq cs) (let [c (first cs) bs (bases c)] (recur (into ret bs) (into (disj cs c) bs))) (not-empty ret)))) //--- -(function __clojure_core_fn_2830(){ -return (clojure.JS.def(clojure.core,"supers",(function __clojure_core_fn_2830_supers_2832(class_1){ -var bs_5,c_4,cs_3,ret_2; +(function __clojure_core_fn_3548(){ +return (clojure.JS.def(clojure.core,"supers",(function __clojure_core_fn_3548_supers_3550(class_1){ +var ret_2,cs_3,c_4,bs_5; return (((function __loop(){var _rtn,_cnt;(ret_2=clojure.core.set.apply(null,[clojure.core.bases.apply(null,[class_1])])), (cs_3=ret_2);do{_cnt=0; _rtn=((clojure.core.seq.apply(null,[cs_3]))?(((c_4=clojure.core.first.apply(null,[cs_3])), @@ -2318,34 +2427,34 @@ _rtn=((clojure.core.seq.apply(null,[cs_3]))?(((c_4=clojure.core.first.apply(null (_cnt=1,_rtn=[clojure.core.into.apply(null,[ret_2,bs_5]),clojure.core.into.apply(null,[clojure.core.disj.apply(null,[cs_3,c_4]),bs_5])],ret_2=_rtn[0],cs_3=_rtn[1]))):(clojure.core.not_empty.apply(null,[ret_2])))}while(_cnt);return _rtn;})()))})))}).apply(null,[]); //====== -//(defn isa? "Returns true if (= child parent), or child is directly or indirectly derived from\n parent, either via a Java type inheritance relationship or a\n relationship established via derive. h must be a hierarchy obtained\n from make-hierarchy, if not supplied defaults to the global\n hierarchy" ([child parent] (isa? global-hierarchy child parent)) ([h child parent] (or (= child parent) (and (class? parent) (class? child) (. parent isAssignableFrom child)) (contains? ((:ancestors h) child) parent) (and (class? child) (some (fn* [p1__2836] (contains? ((:ancestors h) p1__2836) parent)) (supers child))) (and (vector? parent) (vector? child) (= (count parent) (count child)) (loop [ret true i 0] (if (or (not ret) (= i (count parent))) ret (recur (isa? h (child i) (parent i)) (inc i)))))))) +//(defn isa? "Returns true if (= child parent), or child is directly or indirectly derived from\n parent, either via a Java type inheritance relationship or a\n relationship established via derive. h must be a hierarchy obtained\n from make-hierarchy, if not supplied defaults to the global\n hierarchy" ([child parent] (isa? global-hierarchy child parent)) ([h child parent] (or (= child parent) (and (class? parent) (class? child) (. parent isAssignableFrom child)) (contains? ((:ancestors h) child) parent) (and (class? child) (some (fn* [p1__3554] (contains? ((:ancestors h) p1__3554) parent)) (supers child))) (and (vector? parent) (vector? child) (= (count parent) (count child)) (loop [ret true i 0] (if (or (not ret) (= i (count parent))) ret (recur (isa? h (child i) (parent i)) (inc i)))))))) //--- -(function __clojure_core_fn_2837(){ -return (clojure.JS.def(clojure.core,"isa_QMARK_",(function __clojure_core_fn_2837_isa_QMARK_2839(h_1,child_2,parent_3){switch(arguments.length){ +(function __clojure_core_fn_3555(){ +return (clojure.JS.def(clojure.core,"isa_QMARK_",(function __clojure_core_fn_3555_isa_QMARK_3557(h_1,child_2,parent_3){switch(arguments.length){ case 2:var child_1=arguments[0],parent_2=arguments[1]; return (clojure.core.isa_QMARK_.apply(null,[clojure.core.global_hierarchy,child_1,parent_2]))} -var or__424_4,or__424_13,or__424_7,ret_11,and__410_5,and__410_8,or__424_5,and__410_7,and__410_10,i_12,and__410_6,and__410_9,or__424_6; -return (((or__424_4=clojure.lang.Util.equal(child_2,parent_3)), -((or__424_4)?(or__424_4):(((or__424_5=((and__410_5=clojure.core.class_QMARK_.apply(null,[parent_3])), -((and__410_5)?(((and__410_6=clojure.core.class_QMARK_.apply(null,[child_2])), -((and__410_6)?((parent_3).isAssignableFrom(child_2)):(and__410_6)))):(and__410_5)))), -((or__424_5)?(or__424_5):(((or__424_6=clojure.core.contains_QMARK_.apply(null,[clojure.core.keyword("","ancestors").apply(null,[h_1]).apply(null,[child_2]),parent_3])), -((or__424_6)?(or__424_6):(((or__424_7=((and__410_7=clojure.core.class_QMARK_.apply(null,[child_2])), -((and__410_7)?(clojure.core.some.apply(null,[(function __clojure_core_fn_2837_isa_QMARK_2839_fn_2842(p1__2836_1){ -return (clojure.core.contains_QMARK_.apply(null,[clojure.core.keyword("","ancestors").apply(null,[h_1]).apply(null,[p1__2836_1]),parent_3]))}),clojure.core.supers.apply(null,[child_2])])):(and__410_7)))), -((or__424_7)?(or__424_7):(((and__410_8=clojure.core.vector_QMARK_.apply(null,[parent_3])), -((and__410_8)?(((and__410_9=clojure.core.vector_QMARK_.apply(null,[child_2])), -((and__410_9)?(((and__410_10=clojure.lang.Util.equal(clojure.core.count.apply(null,[parent_3]),clojure.core.count.apply(null,[child_2]))), -((and__410_10)?(((function __loop(){var _rtn,_cnt;(ret_11=true), +var or__974__auto___7,or__974__auto___6,and__960__auto___6,and__960__auto___7,and__960__auto___8,or__974__auto___5,and__960__auto___5,and__960__auto___9,and__960__auto___10,i_12,ret_11,or__974__auto___13,or__974__auto___4; +return (((or__974__auto___4=clojure.lang.Util.equal(child_2,parent_3)), +((or__974__auto___4)?(or__974__auto___4):(((or__974__auto___5=((and__960__auto___5=clojure.core.class_QMARK_.apply(null,[parent_3])), +((and__960__auto___5)?(((and__960__auto___6=clojure.core.class_QMARK_.apply(null,[child_2])), +((and__960__auto___6)?((parent_3).isAssignableFrom(child_2)):(and__960__auto___6)))):(and__960__auto___5)))), +((or__974__auto___5)?(or__974__auto___5):(((or__974__auto___6=clojure.core.contains_QMARK_.apply(null,[clojure.core.keyword("","ancestors").apply(null,[h_1]).apply(null,[child_2]),parent_3])), +((or__974__auto___6)?(or__974__auto___6):(((or__974__auto___7=((and__960__auto___7=clojure.core.class_QMARK_.apply(null,[child_2])), +((and__960__auto___7)?(clojure.core.some.apply(null,[(function __clojure_core_fn_3555_isa_QMARK_3557_fn_3560(p1__3554_1){ +return (clojure.core.contains_QMARK_.apply(null,[clojure.core.keyword("","ancestors").apply(null,[h_1]).apply(null,[p1__3554_1]),parent_3]))}),clojure.core.supers.apply(null,[child_2])])):(and__960__auto___7)))), +((or__974__auto___7)?(or__974__auto___7):(((and__960__auto___8=clojure.core.vector_QMARK_.apply(null,[parent_3])), +((and__960__auto___8)?(((and__960__auto___9=clojure.core.vector_QMARK_.apply(null,[child_2])), +((and__960__auto___9)?(((and__960__auto___10=clojure.lang.Util.equal(clojure.core.count.apply(null,[parent_3]),clojure.core.count.apply(null,[child_2]))), +((and__960__auto___10)?(((function __loop(){var _rtn,_cnt;(ret_11=true), (i_12=(0));do{_cnt=0; -_rtn=((((or__424_13=clojure.core.not.apply(null,[ret_11])), -((or__424_13)?(or__424_13):(clojure.lang.Util.equal(i_12,clojure.core.count.apply(null,[parent_3]))))))?(ret_11):((_cnt=1,_rtn=[clojure.core.isa_QMARK_.apply(null,[h_1,child_2.apply(null,[i_12]),parent_3.apply(null,[i_12])]),clojure.lang.Numbers.inc(i_12)],ret_11=_rtn[0],i_12=_rtn[1])))}while(_cnt);return _rtn;})())):(and__410_10)))):(and__410_9)))):(and__410_8))))))))))))))))})))}).apply(null,[]); +_rtn=((((or__974__auto___13=clojure.core.not.apply(null,[ret_11])), +((or__974__auto___13)?(or__974__auto___13):(clojure.lang.Util.equal(i_12,clojure.core.count.apply(null,[parent_3]))))))?(ret_11):((_cnt=1,_rtn=[clojure.core.isa_QMARK_.apply(null,[h_1,child_2.apply(null,[i_12]),parent_3.apply(null,[i_12])]),clojure.lang.Numbers.inc(i_12)],ret_11=_rtn[0],i_12=_rtn[1])))}while(_cnt);return _rtn;})())):(and__960__auto___10)))):(and__960__auto___9)))):(and__960__auto___8))))))))))))))))})))}).apply(null,[]); //====== //(defn parents "Returns the immediate parents of tag, either via a Java type\n inheritance relationship or a relationship established via derive. h\n must be a hierarchy obtained from make-hierarchy, if not supplied\n defaults to the global hierarchy" ([tag] (parents global-hierarchy tag)) ([h tag] (not-empty (let [tp (get (:parents h) tag)] (if (class? tag) (into (set (bases tag)) tp) tp))))) //--- -(function __clojure_core_fn_2847(){ -return (clojure.JS.def(clojure.core,"parents",(function __clojure_core_fn_2847_parents_2849(h_1,tag_2){switch(arguments.length){ +(function __clojure_core_fn_3576(){ +return (clojure.JS.def(clojure.core,"parents",(function __clojure_core_fn_3576_parents_3578(h_1,tag_2){switch(arguments.length){ case 1:var tag_1=arguments[0]; return (clojure.core.parents.apply(null,[clojure.core.global_hierarchy,tag_1]))} var tp_3; @@ -2355,8 +2464,8 @@ return (clojure.core.not_empty.apply(null,[((tp_3=clojure.core.get.apply(null,[c //====== //(defn ancestors "Returns the immediate and indirect parents of tag, either via a Java type\n inheritance relationship or a relationship established via derive. h\n must be a hierarchy obtained from make-hierarchy, if not supplied\n defaults to the global hierarchy" ([tag] (ancestors global-hierarchy tag)) ([h tag] (not-empty (let [ta (get (:ancestors h) tag)] (if (class? tag) (into (set (supers tag)) ta) ta))))) //--- -(function __clojure_core_fn_2854(){ -return (clojure.JS.def(clojure.core,"ancestors",(function __clojure_core_fn_2854_ancestors_2856(h_1,tag_2){switch(arguments.length){ +(function __clojure_core_fn_3583(){ +return (clojure.JS.def(clojure.core,"ancestors",(function __clojure_core_fn_3583_ancestors_3585(h_1,tag_2){switch(arguments.length){ case 1:var tag_1=arguments[0]; return (clojure.core.ancestors.apply(null,[clojure.core.global_hierarchy,tag_1]))} var ta_3; @@ -2366,139 +2475,147 @@ return (clojure.core.not_empty.apply(null,[((ta_3=clojure.core.get.apply(null,[c //====== //(defn descendants "Returns the immediate and indirect children of tag, through a\n relationship established via derive. h must be a hierarchy obtained\n from make-hierarchy, if not supplied defaults to the global\n hierarchy. Note: does not work on Java type inheritance\n relationships." ([tag] (descendants global-hierarchy tag)) ([h tag] (if (class? tag) (throw (RT/makeUnsupportedException "Can't get descendants of classes")) (not-empty (get (:descendants h) tag))))) //--- -(function __clojure_core_fn_2861(){ -return (clojure.JS.def(clojure.core,"descendants",(function __clojure_core_fn_2861_descendants_2863(h_1,tag_2){switch(arguments.length){ +(function __clojure_core_fn_3590(){ +return (clojure.JS.def(clojure.core,"descendants",(function __clojure_core_fn_3590_descendants_3592(h_1,tag_2){switch(arguments.length){ case 1:var tag_1=arguments[0]; return (clojure.core.descendants.apply(null,[clojure.core.global_hierarchy,tag_1]))} return (((clojure.core.class_QMARK_.apply(null,[tag_2]))?((function __throw(){throw clojure.lang.RT.makeUnsupportedException("Can't get descendants of classes")})()):(clojure.core.not_empty.apply(null,[clojure.core.get.apply(null,[clojure.core.keyword("","descendants").apply(null,[h_1]),tag_2])]))))})))}).apply(null,[]); //====== -//(defn derive "Establishes a parent/child relationship between parent and\n tag. Parent must be a namespace-qualified symbol or keyword and\n child can be either a namespace-qualified symbol or keyword or a\n class. h must be a hierarchy obtained from make-hierarchy, if not\n supplied defaults to, and modifies, the global hierarchy." ([tag parent] (alter-var-root (var global-hierarchy) derive tag parent) nil) ([h tag parent] (assert (not= tag parent)) (assert (or (class? tag) (and (instance? clojure.lang.Named tag) (namespace tag)))) (assert (instance? clojure.lang.Named parent)) (assert (namespace parent)) (let [tp (:parents h) td (:descendants h) ta (:ancestors h) tf (fn [m source sources target targets] (reduce (fn [ret k] (assoc ret k (reduce conj (get targets k #{}) (cons target (targets target))))) m (cons source (sources source))))] (or (when-not (contains? (tp tag) parent) (when (contains? (ta tag) parent) (throw (RT/makeException (print-str tag "already has" parent "as ancestor")))) (when (contains? (ta parent) tag) (throw (RT/makeException (print-str "Cyclic derivation:" parent "has" tag "as ancestor")))) {:descendants (tf (:descendants h) parent ta tag td), :ancestors (tf (:ancestors h) tag td parent ta), :parents (assoc (:parents h) tag (conj (get tp tag #{}) parent))}) h)))) +//(defn derive "Establishes a parent/child relationship between parent and\n tag. Parent must be a namespace-qualified symbol or keyword and\n child can be either a namespace-qualified symbol or keyword or a\n class. h must be a hierarchy obtained from make-hierarchy, if not\n supplied defaults to, and modifies, the global hierarchy." ([tag parent] (assert (namespace parent)) (assert (or (class? tag) (and (instance? clojure.lang.Named tag) (namespace tag)))) (alter-var-root (var global-hierarchy) derive tag parent) nil) ([h tag parent] (assert (not= tag parent)) (assert (or (class? tag) (instance? clojure.lang.Named tag))) (assert (instance? clojure.lang.Named parent)) (let [tp (:parents h) td (:descendants h) ta (:ancestors h) tf (fn [m source sources target targets] (reduce (fn [ret k] (assoc ret k (reduce conj (get targets k #{}) (cons target (targets target))))) m (cons source (sources source))))] (or (when-not (contains? (tp tag) parent) (when (contains? (ta tag) parent) (throw (RT/makeException (print-str tag "already has" parent "as ancestor")))) (when (contains? (ta parent) tag) (throw (RT/makeException (print-str "Cyclic derivation:" parent "has" tag "as ancestor")))) {:parents (assoc (:parents h) tag (conj (get tp tag #{}) parent)), :ancestors (tf (:ancestors h) tag td parent ta), :descendants (tf (:descendants h) parent ta tag td)}) h)))) //--- -(function __clojure_core_fn_2868(){ -return (clojure.JS.def(clojure.core,"derive",(function __clojure_core_fn_2868_derive_2870(h_1,tag_2,parent_3){switch(arguments.length){ -case 2:var tag_1=arguments[0],parent_2=arguments[1]; -return (clojure.core.alter_var_root.apply(null,[clojure.core._var_global_hierarchy,clojure.core.derive,tag_1,parent_2]), +(function __clojure_core_fn_3597(){ +return (clojure.JS.def(clojure.core,"derive",(function __clojure_core_fn_3597_derive_3599(h_1,tag_2,parent_3){switch(arguments.length){ +case 2:var or__974__auto___3,and__960__auto___4,tag_1=arguments[0],parent_2=arguments[1]; +return (((clojure.core.namespace.apply(null,[parent_2]))?(null):((function __throw(){throw clojure.lang.RT.makeException(clojure.core.str.apply(null,["Assert failed: ",clojure.core.pr_str.apply(null,[clojure.JS.lit_list([clojure.core.symbol("namespace"),clojure.core.symbol("parent")])])]))})())), +((((or__974__auto___3=clojure.core.class_QMARK_.apply(null,[tag_1])), +((or__974__auto___3)?(or__974__auto___3):(((and__960__auto___4=clojure.core.instance_QMARK_.apply(null,[clojure.lang.Named,tag_1])), +((and__960__auto___4)?(clojure.core.namespace.apply(null,[tag_1])):(and__960__auto___4)))))))?(null):((function __throw(){throw clojure.lang.RT.makeException(clojure.core.str.apply(null,["Assert failed: ",clojure.core.pr_str.apply(null,[clojure.JS.lit_list([clojure.core.symbol("or"),clojure.JS.lit_list([clojure.core.symbol("class?"),clojure.core.symbol("tag")]),clojure.JS.lit_list([clojure.core.symbol("and"),clojure.JS.lit_list([clojure.core.symbol("instance?"),clojure.core.symbol("clojure.lang.Named"),clojure.core.symbol("tag")]),clojure.JS.lit_list([clojure.core.symbol("namespace"),clojure.core.symbol("tag")])])])])]))})())), +clojure.core.alter_var_root.apply(null,[clojure.core._var_global_hierarchy,clojure.core.derive,tag_1,parent_2]), null)} -var tp_4,ta_6,td_5,or__424_4,and__410_5,or__424_8,tf_7; +var tf_7,td_5,ta_6,or__974__auto___4,or__974__auto___8,tp_4; return (((clojure.core.not_EQ_.apply(null,[tag_2,parent_3]))?(null):((function __throw(){throw clojure.lang.RT.makeException(clojure.core.str.apply(null,["Assert failed: ",clojure.core.pr_str.apply(null,[clojure.JS.lit_list([clojure.core.symbol("not="),clojure.core.symbol("tag"),clojure.core.symbol("parent")])])]))})())), -((((or__424_4=clojure.core.class_QMARK_.apply(null,[tag_2])), -((or__424_4)?(or__424_4):(((and__410_5=clojure.core.instance_QMARK_.apply(null,[clojure.lang.Named,tag_2])), -((and__410_5)?(clojure.core.namespace.apply(null,[tag_2])):(and__410_5)))))))?(null):((function __throw(){throw clojure.lang.RT.makeException(clojure.core.str.apply(null,["Assert failed: ",clojure.core.pr_str.apply(null,[clojure.JS.lit_list([clojure.core.symbol("or"),clojure.JS.lit_list([clojure.core.symbol("class?"),clojure.core.symbol("tag")]),clojure.JS.lit_list([clojure.core.symbol("and"),clojure.JS.lit_list([clojure.core.symbol("instance?"),clojure.core.symbol("clojure.lang.Named"),clojure.core.symbol("tag")]),clojure.JS.lit_list([clojure.core.symbol("namespace"),clojure.core.symbol("tag")])])])])]))})())), +((((or__974__auto___4=clojure.core.class_QMARK_.apply(null,[tag_2])), +((or__974__auto___4)?(or__974__auto___4):(clojure.core.instance_QMARK_.apply(null,[clojure.lang.Named,tag_2])))))?(null):((function __throw(){throw clojure.lang.RT.makeException(clojure.core.str.apply(null,["Assert failed: ",clojure.core.pr_str.apply(null,[clojure.JS.lit_list([clojure.core.symbol("or"),clojure.JS.lit_list([clojure.core.symbol("class?"),clojure.core.symbol("tag")]),clojure.JS.lit_list([clojure.core.symbol("instance?"),clojure.core.symbol("clojure.lang.Named"),clojure.core.symbol("tag")])])])]))})())), ((clojure.core.instance_QMARK_.apply(null,[clojure.lang.Named,parent_3]))?(null):((function __throw(){throw clojure.lang.RT.makeException(clojure.core.str.apply(null,["Assert failed: ",clojure.core.pr_str.apply(null,[clojure.JS.lit_list([clojure.core.symbol("instance?"),clojure.core.symbol("clojure.lang.Named"),clojure.core.symbol("parent")])])]))})())), -((clojure.core.namespace.apply(null,[parent_3]))?(null):((function __throw(){throw clojure.lang.RT.makeException(clojure.core.str.apply(null,["Assert failed: ",clojure.core.pr_str.apply(null,[clojure.JS.lit_list([clojure.core.symbol("namespace"),clojure.core.symbol("parent")])])]))})())), ((tp_4=clojure.core.keyword("","parents").apply(null,[h_1])), (td_5=clojure.core.keyword("","descendants").apply(null,[h_1])), (ta_6=clojure.core.keyword("","ancestors").apply(null,[h_1])), -(tf_7=(function __clojure_core_fn_2868_derive_2870_tf_2873(m_1,source_2,sources_3,target_4,targets_5){ -return (clojure.core.reduce.apply(null,[(function __clojure_core_fn_2868_derive_2870_tf_2873_fn_2875(ret_1,k_2){ +(tf_7=(function __clojure_core_fn_3597_derive_3599_tf_3602(m_1,source_2,sources_3,target_4,targets_5){ +return (clojure.core.reduce.apply(null,[(function __clojure_core_fn_3597_derive_3599_tf_3602_fn_3604(ret_1,k_2){ return (clojure.core.assoc.apply(null,[ret_1,k_2,clojure.core.reduce.apply(null,[clojure.core.conj,clojure.core.get.apply(null,[targets_5,k_2,clojure.lang.PersistentHashSet.EMPTY]),clojure.core.cons.apply(null,[target_4,targets_5.apply(null,[target_4])])])]))}),m_1,clojure.core.cons.apply(null,[source_2,sources_3.apply(null,[source_2])])]))})), -((or__424_8=((clojure.core.contains_QMARK_.apply(null,[tp_4.apply(null,[tag_2]),parent_3]))?(null):(((clojure.core.contains_QMARK_.apply(null,[ta_6.apply(null,[tag_2]),parent_3]))?((function __throw(){throw clojure.lang.RT.makeException(clojure.core.print_str.apply(null,[tag_2,"already has",parent_3,"as ancestor"]))})()):(null)), +((or__974__auto___8=((clojure.core.contains_QMARK_.apply(null,[tp_4.apply(null,[tag_2]),parent_3]))?(null):(((clojure.core.contains_QMARK_.apply(null,[ta_6.apply(null,[tag_2]),parent_3]))?((function __throw(){throw clojure.lang.RT.makeException(clojure.core.print_str.apply(null,[tag_2,"already has",parent_3,"as ancestor"]))})()):(null)), ((clojure.core.contains_QMARK_.apply(null,[ta_6.apply(null,[parent_3]),tag_2]))?((function __throw(){throw clojure.lang.RT.makeException(clojure.core.print_str.apply(null,["Cyclic derivation:",parent_3,"has",tag_2,"as ancestor"]))})()):(null)), -clojure.core.hash_map(clojure.core.keyword("","descendants"),tf_7.apply(null,[clojure.core.keyword("","descendants").apply(null,[h_1]),parent_3,ta_6,tag_2,td_5]),clojure.core.keyword("","ancestors"),tf_7.apply(null,[clojure.core.keyword("","ancestors").apply(null,[h_1]),tag_2,td_5,parent_3,ta_6]),clojure.core.keyword("","parents"),clojure.core.assoc.apply(null,[clojure.core.keyword("","parents").apply(null,[h_1]),tag_2,clojure.core.conj.apply(null,[clojure.core.get.apply(null,[tp_4,tag_2,clojure.lang.PersistentHashSet.EMPTY]),parent_3])]))))), -((or__424_8)?(or__424_8):(h_1)))))})))}).apply(null,[]); +clojure.core.hash_map(clojure.core.keyword("","parents"),clojure.core.assoc.apply(null,[clojure.core.keyword("","parents").apply(null,[h_1]),tag_2,clojure.core.conj.apply(null,[clojure.core.get.apply(null,[tp_4,tag_2,clojure.lang.PersistentHashSet.EMPTY]),parent_3])]),clojure.core.keyword("","ancestors"),tf_7.apply(null,[clojure.core.keyword("","ancestors").apply(null,[h_1]),tag_2,td_5,parent_3,ta_6]),clojure.core.keyword("","descendants"),tf_7.apply(null,[clojure.core.keyword("","descendants").apply(null,[h_1]),parent_3,ta_6,tag_2,td_5]))))), +((or__974__auto___8)?(or__974__auto___8):(h_1)))))})))}).apply(null,[]); //====== -//(defn underive "Removes a parent/child relationship between parent and\n tag. h must be a hierarchy obtained from make-hierarchy, if not\n supplied defaults to, and modifies, the global hierarchy." ([tag parent] (alter-var-root (var global-hierarchy) underive tag parent) nil) ([h tag parent] (let [tp (:parents h) td (:descendants h) ta (:ancestors h) tf (fn [m source sources target targets] (reduce (fn [ret k] (assoc ret k (reduce disj (get targets k) (cons target (targets target))))) m (cons source (sources source))))] (if (contains? (tp tag) parent) {:parent (assoc (:parents h) tag (disj (get tp tag) parent)), :descendants (tf (:descendants h) parent ta tag td), :ancestors (tf (:ancestors h) tag td parent ta)} h)))) +//(defn underive "Removes a parent/child relationship between parent and\n tag. h must be a hierarchy obtained from make-hierarchy, if not\n supplied defaults to, and modifies, the global hierarchy." ([tag parent] (alter-var-root (var global-hierarchy) underive tag parent) nil) ([h tag parent] (let [tp (:parents h) td (:descendants h) ta (:ancestors h) tf (fn [m source sources target targets] (reduce (fn [ret k] (assoc ret k (reduce disj (get targets k) (cons target (targets target))))) m (cons source (sources source))))] (if (contains? (tp tag) parent) {:parent (assoc (:parents h) tag (disj (get tp tag) parent)), :ancestors (tf (:ancestors h) tag td parent ta), :descendants (tf (:descendants h) parent ta tag td)} h)))) //--- -(function __clojure_core_fn_2881(){ -return (clojure.JS.def(clojure.core,"underive",(function __clojure_core_fn_2881_underive_2883(h_1,tag_2,parent_3){switch(arguments.length){ +(function __clojure_core_fn_3614(){ +return (clojure.JS.def(clojure.core,"underive",(function __clojure_core_fn_3614_underive_3616(h_1,tag_2,parent_3){switch(arguments.length){ case 2:var tag_1=arguments[0],parent_2=arguments[1]; return (clojure.core.alter_var_root.apply(null,[clojure.core._var_global_hierarchy,clojure.core.underive,tag_1,parent_2]), null)} -var tf_7,td_5,tp_4,ta_6; +var tp_4,td_5,ta_6,tf_7; return (((tp_4=clojure.core.keyword("","parents").apply(null,[h_1])), (td_5=clojure.core.keyword("","descendants").apply(null,[h_1])), (ta_6=clojure.core.keyword("","ancestors").apply(null,[h_1])), -(tf_7=(function __clojure_core_fn_2881_underive_2883_tf_2886(m_1,source_2,sources_3,target_4,targets_5){ -return (clojure.core.reduce.apply(null,[(function __clojure_core_fn_2881_underive_2883_tf_2886_fn_2888(ret_1,k_2){ +(tf_7=(function __clojure_core_fn_3614_underive_3616_tf_3619(m_1,source_2,sources_3,target_4,targets_5){ +return (clojure.core.reduce.apply(null,[(function __clojure_core_fn_3614_underive_3616_tf_3619_fn_3621(ret_1,k_2){ return (clojure.core.assoc.apply(null,[ret_1,k_2,clojure.core.reduce.apply(null,[clojure.core.disj,clojure.core.get.apply(null,[targets_5,k_2]),clojure.core.cons.apply(null,[target_4,targets_5.apply(null,[target_4])])])]))}),m_1,clojure.core.cons.apply(null,[source_2,sources_3.apply(null,[source_2])])]))})), -((clojure.core.contains_QMARK_.apply(null,[tp_4.apply(null,[tag_2]),parent_3]))?(clojure.core.hash_map(clojure.core.keyword("","parent"),clojure.core.assoc.apply(null,[clojure.core.keyword("","parents").apply(null,[h_1]),tag_2,clojure.core.disj.apply(null,[clojure.core.get.apply(null,[tp_4,tag_2]),parent_3])]),clojure.core.keyword("","descendants"),tf_7.apply(null,[clojure.core.keyword("","descendants").apply(null,[h_1]),parent_3,ta_6,tag_2,td_5]),clojure.core.keyword("","ancestors"),tf_7.apply(null,[clojure.core.keyword("","ancestors").apply(null,[h_1]),tag_2,td_5,parent_3,ta_6]))):(h_1))))})))}).apply(null,[]); +((clojure.core.contains_QMARK_.apply(null,[tp_4.apply(null,[tag_2]),parent_3]))?(clojure.core.hash_map(clojure.core.keyword("","parent"),clojure.core.assoc.apply(null,[clojure.core.keyword("","parents").apply(null,[h_1]),tag_2,clojure.core.disj.apply(null,[clojure.core.get.apply(null,[tp_4,tag_2]),parent_3])]),clojure.core.keyword("","ancestors"),tf_7.apply(null,[clojure.core.keyword("","ancestors").apply(null,[h_1]),tag_2,td_5,parent_3,ta_6]),clojure.core.keyword("","descendants"),tf_7.apply(null,[clojure.core.keyword("","descendants").apply(null,[h_1]),parent_3,ta_6,tag_2,td_5]))):(h_1))))})))}).apply(null,[]); //====== //(defn distinct? "Returns true if no two of the arguments are equal" {:tag Boolean} ([x] true) ([x y] (not (= x y))) ([x y & more] (if (not= x y) (loop [s #{y x} [x & etc :as xs] more] (if xs (if (contains? s x) false (recur (conj s x) etc)) true)) false))) //--- -(function __clojure_core_fn_2894(){ -return (clojure.JS.def(clojure.core,"distinct_QMARK_",clojure.JS.variadic(2,(function __clojure_core_fn_2894_distinct_QMARK_2896(x_1,y_2){switch(arguments.length){ +(function __clojure_core_fn_3627(){ +return (clojure.JS.def(clojure.core,"distinct_QMARK_",clojure.JS.variadic(2,(function __clojure_core_fn_3627_distinct_QMARK_3629(x_1,y_2){switch(arguments.length){ case 1:return (true) case 2:return (clojure.core.not.apply(null,[clojure.lang.Util.equal(x_1,y_2)]))} -var x_14,s_12,s_10,vec__2902_6,etc_15,G__2901_11,xs_9,s_4,x_7,etc_8,xs_16,vec__2903_13,G__2901_5,more_3=clojure.JS.rest_args(this,arguments,2); +var xs_16,xs_9,G__3634_11,vec__3635_6,etc_15,etc_8,x_14,G__3634_5,x_7,s_4,s_10,s_12,vec__3636_13,more_3=clojure.JS.rest_args(this,arguments,2); return (((clojure.core.not_EQ_.apply(null,[x_1,y_2]))?(((s_4=clojure.core.hash_set(y_2,x_1)), -(G__2901_5=more_3), -(vec__2902_6=G__2901_5), -(x_7=clojure.core.nth.apply(null,[vec__2902_6,(0),null])), -(etc_8=clojure.core.nthrest.apply(null,[vec__2902_6,(1)])), -(xs_9=vec__2902_6), +(G__3634_5=more_3), +(vec__3635_6=G__3634_5), +(x_7=clojure.core.nth.apply(null,[vec__3635_6,(0),null])), +(etc_8=clojure.core.nthrest.apply(null,[vec__3635_6,(1)])), +(xs_9=vec__3635_6), ((function __loop(){var _rtn,_cnt;(s_10=s_4), -(G__2901_11=G__2901_5);do{_cnt=0; +(G__3634_11=G__3634_5);do{_cnt=0; _rtn=((s_12=s_10), -(vec__2903_13=G__2901_11), -(x_14=clojure.core.nth.apply(null,[vec__2903_13,(0),null])), -(etc_15=clojure.core.nthrest.apply(null,[vec__2903_13,(1)])), -(xs_16=vec__2903_13), -((xs_16)?(((clojure.core.contains_QMARK_.apply(null,[s_12,x_14]))?(false):((_cnt=1,_rtn=[clojure.core.conj.apply(null,[s_12,x_14]),etc_15],s_10=_rtn[0],G__2901_11=_rtn[1])))):(true)))}while(_cnt);return _rtn;})()))):(false)))}))))}).apply(null,[]); +(vec__3636_13=G__3634_11), +(x_14=clojure.core.nth.apply(null,[vec__3636_13,(0),null])), +(etc_15=clojure.core.nthrest.apply(null,[vec__3636_13,(1)])), +(xs_16=vec__3636_13), +((xs_16)?(((clojure.core.contains_QMARK_.apply(null,[s_12,x_14]))?(false):((_cnt=1,_rtn=[clojure.core.conj.apply(null,[s_12,x_14]),etc_15],s_10=_rtn[0],G__3634_11=_rtn[1])))):(true)))}while(_cnt);return _rtn;})()))):(false)))}))))}).apply(null,[]); //====== //(defn iterator-seq "Returns a seq on a java.util.Iterator. Note that most collections\n providing iterators implement Iterable and thus support seq directly." [iter] (clojure.lang.IteratorSeq/create iter)) //--- -(function __clojure_core_fn_2906(){ -return (clojure.JS.def(clojure.core,"iterator_seq",(function __clojure_core_fn_2906_iterator_seq_2908(iter_1){ +(function __clojure_core_fn_3639(){ +return (clojure.JS.def(clojure.core,"iterator_seq",(function __clojure_core_fn_3639_iterator_seq_3641(iter_1){ return (clojure.lang.IteratorSeq.create(iter_1))})))}).apply(null,[]); //====== //(defn enumeration-seq "Returns a seq on a java.lang.Enumeration" [e] (clojure.lang.EnumerationSeq/create e)) //--- -(function __clojure_core_fn_2912(){ -return (clojure.JS.def(clojure.core,"enumeration_seq",(function __clojure_core_fn_2912_enumeration_seq_2914(e_1){ +(function __clojure_core_fn_3645(){ +return (clojure.JS.def(clojure.core,"enumeration_seq",(function __clojure_core_fn_3645_enumeration_seq_3647(e_1){ return (clojure.lang.EnumerationSeq.create(e_1))})))}).apply(null,[]); // Skipping: (defn format "Formats a string using java.lang.String.format, see java.util.Formatter for format\n string syntax" [fmt & args] (String/format fmt (to-array args))) //====== //(defn printf "Prints formatted output, as per format" [fmt & args] (print (apply format fmt args))) //--- -(function __clojure_core_fn_2924(){ -return (clojure.JS.def(clojure.core,"printf",clojure.JS.variadic(1,(function __clojure_core_fn_2924_printf_2926(fmt_1){ +(function __clojure_core_fn_3657(){ +return (clojure.JS.def(clojure.core,"printf",clojure.JS.variadic(1,(function __clojure_core_fn_3657_printf_3659(fmt_1){ var args_2=clojure.JS.rest_args(this,arguments,1); return (clojure.core.print.apply(null,[clojure.core.apply.apply(null,[clojure.core.format,fmt_1,args_2])]))}))))}).apply(null,[]); -// Skipping: (defmacro ns "Sets *ns* to the namespace named by name (unevaluated), creating it\n if needed. references can be zero or more of: (:refer-clojure ...)\n (:require ...) (:use ...) (:import ...) (:load ...) (:gen-class)\n with the syntax of refer-clojure/require/use/import/load/gen-class\n respectively, except the arguments are unevaluated and need not be\n quoted, and the :gen-class clause does not take a name (since the\n class name corresponds to the ns name). If :refer-clojure is not\n used, a default (refer 'clojure) is used. Use of ns is preferred to\n individual calls to in-ns/require/use/import:\n\n (ns foo\n (:refer-clojure :exclude [ancestors printf])\n (:require (clojure.contrib sql sql.tests))\n (:use (my.lib this that))\n (:import (java.util Date Timer Random)\n (java.sql Connection Statement))\n (:load \"/mystuff/foo.clj\"))" [name & references] (let [process-reference (fn [[kname & args]] (clojure.core/concat (clojure.core/list (symbol "clojure.core" (clojure.core/name kname))) (map (fn* [p1__2930] (list (quote quote) p1__2930)) args))) references (remove (fn* [p1__2931] (= :gen-class (first p1__2931))) references)] (clojure.core/concat (clojure.core/list (quote do)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/in-ns)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote quote)) (clojure.core/list name))))) (when (and (not= name (quote clojure.core)) (not-any? (fn* [p1__2932] (= :refer-clojure (first p1__2932))) references)) (clojure.core/concat (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/refer)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote quote)) (clojure.core/list (quote clojure.core)))))))) (map process-reference references)))) + +//====== +//(def gen-class) +//--- +(function __clojure_core_fn_3663(){ +return (clojure.JS.def(clojure.core,"gen_class",null))}).apply(null,[]); +// Skipping: (defmacro ns "Sets *ns* to the namespace named by name (unevaluated), creating it\n if needed. references can be zero or more of: (:refer-clojure ...)\n (:require ...) (:use ...) (:import ...) (:load ...) (:gen-class)\n with the syntax of refer-clojure/require/use/import/load/gen-class\n respectively, except the arguments are unevaluated and need not be\n quoted. (:gen-class ...), when supplied, defaults to :name\n corresponding to the ns name, :main true, :impl-ns same as ns, and\n :init-impl-ns true. All options of gen-class are\n supported. The :gen-class directive is ignored when not\n compiling. If :gen-class is not supplied, when compiled only an\n nsname__init.class will be generated. If :refer-clojure is not used, a\n default (refer 'clojure) is used. Use of ns is preferred to\n individual calls to in-ns/require/use/import:\n\n (ns foo.bar\n (:refer-clojure :exclude [ancestors printf])\n (:require (clojure.contrib sql sql.tests))\n (:use (my.lib this that))\n (:import (java.util Date Timer Random)\n (java.sql Connection Statement)))" [name & references] (let [process-reference (fn [[kname & args]] (clojure.core/concat (clojure.core/list (symbol "clojure.core" (clojure.core/name kname))) (map (fn* [p1__3666] (list (quote quote) p1__3666)) args))) gen-class-clause (first (filter (fn* [p1__3667] (= :gen-class (first p1__3667))) references)) gen-class-call (when gen-class-clause (list* (quote clojure.core/gen-class) :name (.replace (str name) \- \_) :impl-ns name :main true (rest gen-class-clause))) references (remove (fn* [p1__3668] (= :gen-class (first p1__3668))) references)] (clojure.core/concat (clojure.core/list (quote do)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/in-ns)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote quote)) (clojure.core/list name))))) (when gen-class-call (list gen-class-call)) (when (and (not= name (quote clojure.core)) (not-any? (fn* [p1__3669] (= :refer-clojure (first p1__3669))) references)) (clojure.core/concat (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/refer)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote quote)) (clojure.core/list (quote clojure.core)))))))) (map process-reference references)))) // Skipping: (defmacro refer-clojure "Same as (refer 'clojure <filters>)" [& filters] (clojure.core/concat (clojure.core/list (quote clojure.core/refer)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote quote)) (clojure.core/list (quote clojure.core)))) filters)) -// Skipping: (defmacro defonce "defs name to have the root value of the expr iff the named var has no root value, \n else expr is unevaluated" [name expr] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote v__2979)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote def)) (clojure.core/list name)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when-not)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/.hasRoot)) (clojure.core/list (quote v__2979)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote def)) (clojure.core/list name) (clojure.core/list expr))))))) +// Skipping: (defmacro defonce "defs name to have the root value of the expr iff the named var has no root value, \n else expr is unevaluated" [name expr] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote v__3724__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote def)) (clojure.core/list name)))))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when-not)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote .hasRoot)) (clojure.core/list (quote v__3724__auto__)))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote def)) (clojure.core/list name) (clojure.core/list expr))))))) //====== //(defonce *loaded-libs* (ref (sorted-set))) //--- -(function __clojure_core_fn_2989(){ -var v__2979_1; -return (((v__2979_1=clojure.JS.def(clojure.core,"_STAR_loaded_libs_STAR_",null)), -(((v__2979_1).hasRoot())?(null):(clojure.JS.def(clojure.core,"_STAR_loaded_libs_STAR_",clojure.core.ref.apply(null,[clojure.core.sorted_set.apply(null,[])]))))))}).apply(null,[]); +(function __clojure_core_fn_3734(){ +var v__3724__auto___1; +return (((v__3724__auto___1=clojure.JS.def(clojure.core,"_STAR_loaded_libs_STAR_",null)), +(((v__3724__auto___1).hasRoot())?(null):(clojure.JS.def(clojure.core,"_STAR_loaded_libs_STAR_",clojure.core.ref.apply(null,[clojure.core.sorted_set.apply(null,[])]))))))}).apply(null,[]); //====== //(defonce *pending-paths* #{}) //--- -(function __clojure_core_fn_2992(){ -var v__2979_1; -return (((v__2979_1=clojure.JS.def(clojure.core,"_STAR_pending_paths_STAR_",null)), -(((v__2979_1).hasRoot())?(null):(clojure.JS.def(clojure.core,"_STAR_pending_paths_STAR_",clojure.lang.PersistentHashSet.EMPTY)))))}).apply(null,[]); +(function __clojure_core_fn_3738(){ +var v__3724__auto___1; +return (((v__3724__auto___1=clojure.JS.def(clojure.core,"_STAR_pending_paths_STAR_",null)), +(((v__3724__auto___1).hasRoot())?(null):(clojure.JS.def(clojure.core,"_STAR_pending_paths_STAR_",clojure.lang.PersistentHashSet.EMPTY)))))}).apply(null,[]); //====== //(defonce *loading-verbosely* false) //--- -(function __clojure_core_fn_2995(){ -var v__2979_1; -return (((v__2979_1=clojure.JS.def(clojure.core,"_STAR_loading_verbosely_STAR_",null)), -(((v__2979_1).hasRoot())?(null):(clojure.JS.def(clojure.core,"_STAR_loading_verbosely_STAR_",false)))))}).apply(null,[]); +(function __clojure_core_fn_3742(){ +var v__3724__auto___1; +return (((v__3724__auto___1=clojure.JS.def(clojure.core,"_STAR_loading_verbosely_STAR_",null)), +(((v__3724__auto___1).hasRoot())?(null):(clojure.JS.def(clojure.core,"_STAR_loading_verbosely_STAR_",false)))))}).apply(null,[]); //====== -//(defn- throw-if "Throws an exception with a message if pred is true" [pred fmt & args] (when pred (let [message (apply format fmt args) exception (RT/makeException message) raw-trace (.getStackTrace exception) boring? (fn* [p1__2998] (not= (.getMethodName p1__2998) "doInvoke")) trace (into-array (drop 2 (drop-while boring? raw-trace)))] (.setStackTrace exception trace) (throw exception)))) +//(defn- throw-if "Throws an exception with a message if pred is true" [pred fmt & args] (when pred (let [message (apply format fmt args) exception (RT/makeException message) raw-trace (.getStackTrace exception) boring? (fn* [p1__3746] (not= (.getMethodName p1__3746) "doInvoke")) trace (into-array (drop 2 (drop-while boring? raw-trace)))] (.setStackTrace exception trace) (throw exception)))) //--- -(function __clojure_core_fn_2999(){ -return (clojure.JS.def(clojure.core,"throw_if",clojure.JS.variadic(2,(function __clojure_core_fn_2999_throw_if_3001(pred_1,fmt_2){ -var exception_5,trace_8,raw_trace_6,boring_QMARK__7,message_4,args_3=clojure.JS.rest_args(this,arguments,2); +(function __clojure_core_fn_3747(){ +return (clojure.JS.def(clojure.core,"throw_if",clojure.JS.variadic(2,(function __clojure_core_fn_3747_throw_if_3749(pred_1,fmt_2){ +var message_4,exception_5,raw_trace_6,boring_QMARK__7,trace_8,args_3=clojure.JS.rest_args(this,arguments,2); return (((pred_1)?(((message_4=clojure.core.apply.apply(null,[clojure.core.format,fmt_2,args_3])), (exception_5=clojure.lang.RT.makeException(message_4)), (raw_trace_6=(exception_5).getStackTrace()), -(boring_QMARK__7=(function __clojure_core_fn_2999_throw_if_3001_boring_QMARK_3003(p1__2998_1){ -return (clojure.core.not_EQ_.apply(null,[clojure.JS.getOrRun(p1__2998_1,"getMethodName"),"doInvoke"]))})), +(boring_QMARK__7=(function __clojure_core_fn_3747_throw_if_3749_boring_QMARK_3751(p1__3746_1){ +return (clojure.core.not_EQ_.apply(null,[clojure.JS.getOrRun(p1__3746_1,"getMethodName"),"doInvoke"]))})), (trace_8=clojure.core.into_array.apply(null,[clojure.core.drop.apply(null,[(2),clojure.core.drop_while.apply(null,[boring_QMARK__7,raw_trace_6])])])), (exception_5).setStackTrace(trace_8), (function __throw(){throw exception_5})())):(null)))}))))}).apply(null,[]); @@ -2506,33 +2623,33 @@ return (clojure.core.not_EQ_.apply(null,[clojure.JS.getOrRun(p1__2998_1,"getMeth //====== //(defn- libspec? "Returns true if x is a libspec" [x] (or (symbol? x) (and (vector? x) (or (nil? (second x)) (keyword? (second x)))))) //--- -(function __clojure_core_fn_3008(){ -return (clojure.JS.def(clojure.core,"libspec_QMARK_",(function __clojure_core_fn_3008_libspec_QMARK_3010(x_1){ -var and__410_3,or__424_2,or__424_4; -return (((or__424_2=clojure.core.symbol_QMARK_.apply(null,[x_1])), -((or__424_2)?(or__424_2):(((and__410_3=clojure.core.vector_QMARK_.apply(null,[x_1])), -((and__410_3)?(((or__424_4=clojure.core.nil_QMARK_.apply(null,[clojure.core.second.apply(null,[x_1])])), -((or__424_4)?(or__424_4):(clojure.core.keyword_QMARK_.apply(null,[clojure.core.second.apply(null,[x_1])]))))):(and__410_3)))))))})))}).apply(null,[]); +(function __clojure_core_fn_3756(){ +return (clojure.JS.def(clojure.core,"libspec_QMARK_",(function __clojure_core_fn_3756_libspec_QMARK_3758(x_1){ +var or__974__auto___2,and__960__auto___3,or__974__auto___4; +return (((or__974__auto___2=clojure.core.symbol_QMARK_.apply(null,[x_1])), +((or__974__auto___2)?(or__974__auto___2):(((and__960__auto___3=clojure.core.vector_QMARK_.apply(null,[x_1])), +((and__960__auto___3)?(((or__974__auto___4=clojure.core.nil_QMARK_.apply(null,[clojure.core.second.apply(null,[x_1])])), +((or__974__auto___4)?(or__974__auto___4):(clojure.core.keyword_QMARK_.apply(null,[clojure.core.second.apply(null,[x_1])]))))):(and__960__auto___3)))))))})))}).apply(null,[]); //====== //(defn- prependss "Prepends a symbol or a seq to coll" [x coll] (if (symbol? x) (cons x coll) (concat x coll))) //--- -(function __clojure_core_fn_3014(){ -return (clojure.JS.def(clojure.core,"prependss",(function __clojure_core_fn_3014_prependss_3016(x_1,coll_2){ +(function __clojure_core_fn_3765(){ +return (clojure.JS.def(clojure.core,"prependss",(function __clojure_core_fn_3765_prependss_3767(x_1,coll_2){ return (((clojure.core.symbol_QMARK_.apply(null,[x_1]))?(clojure.core.cons.apply(null,[x_1,coll_2])):(clojure.core.concat.apply(null,[x_1,coll_2]))))})))}).apply(null,[]); //====== //(defn- root-resource "Returns the root directory path for a lib" [lib] (str \/ (.. (name lib) (replace \- \_) (replace \. \/)))) //--- -(function __clojure_core_fn_3020(){ -return (clojure.JS.def(clojure.core,"root_resource",(function __clojure_core_fn_3020_root_resource_3022(lib_1){ +(function __clojure_core_fn_3771(){ +return (clojure.JS.def(clojure.core,"root_resource",(function __clojure_core_fn_3771_root_resource_3773(lib_1){ return (clojure.core.str.apply(null,["/",((clojure.core.name.apply(null,[lib_1])).replace("-","_")).replace(".","/")]))})))}).apply(null,[]); //====== //(defn- root-directory "Returns the root resource path for a lib" [lib] (let [d (root-resource lib)] (subs d 0 (.lastIndexOf d "/")))) //--- -(function __clojure_core_fn_3026(){ -return (clojure.JS.def(clojure.core,"root_directory",(function __clojure_core_fn_3026_root_directory_3028(lib_1){ +(function __clojure_core_fn_3777(){ +return (clojure.JS.def(clojure.core,"root_directory",(function __clojure_core_fn_3777_root_directory_3779(lib_1){ var d_2; return (((d_2=clojure.core.root_resource.apply(null,[lib_1])), clojure.core.subs.apply(null,[d_2,(0),(d_2).lastIndexOf("/")])))})))}).apply(null,[]); @@ -2541,24 +2658,24 @@ clojure.core.subs.apply(null,[d_2,(0),(d_2).lastIndexOf("/")])))})))}).apply(nul //====== //(defn- load-one "Loads a lib given its name. If need-ns, ensures that the associated\n namespace exists after loading. If require, records the load so any\n duplicate loads can be skipped." [lib need-ns require] (load (root-resource lib)) (throw-if (and need-ns (not (find-ns lib))) "namespace '%s' not found after loading '%s'" lib (root-resource lib)) (when require (dosync (commute *loaded-libs* conj lib)))) //--- -(function __clojure_core_fn_3035(){ -return (clojure.JS.def(clojure.core,"load_one",(function __clojure_core_fn_3035_load_one_3037(lib_1,need_ns_2,require_3){ -var and__410_4; +(function __clojure_core_fn_3786(){ +return (clojure.JS.def(clojure.core,"load_one",(function __clojure_core_fn_3786_load_one_3788(lib_1,need_ns_2,require_3){ +var and__960__auto___4; return (clojure.core.load.apply(null,[clojure.core.root_resource.apply(null,[lib_1])]), -clojure.core.throw_if.apply(null,[((and__410_4=need_ns_2), -((and__410_4)?(clojure.core.not.apply(null,[clojure.core.find_ns.apply(null,[lib_1])])):(and__410_4))),"namespace '%s' not found after loading '%s'",lib_1,clojure.core.root_resource.apply(null,[lib_1])]), -((require_3)?(clojure.lang.LockingTransaction.runInTransaction((function __clojure_core_fn_3035_load_one_3037_fn_3039(){ +clojure.core.throw_if.apply(null,[((and__960__auto___4=need_ns_2), +((and__960__auto___4)?(clojure.core.not.apply(null,[clojure.core.find_ns.apply(null,[lib_1])])):(and__960__auto___4))),"namespace '%s' not found after loading '%s'",lib_1,clojure.core.root_resource.apply(null,[lib_1])]), +((require_3)?(clojure.lang.LockingTransaction.runInTransaction((function __clojure_core_fn_3786_load_one_3788_fn_3790(){ return (clojure.core.commute.apply(null,[clojure.core._STAR_loaded_libs_STAR_,clojure.core.conj,lib_1]))}))):(null)))})))}).apply(null,[]); //====== -//(defn- load-all "Loads a lib given its name and forces a load of any libs it directly or\n indirectly loads. If need-ns, ensures that the associated namespace\n exists after loading. If require, records the load so any duplicate loads\n can be skipped." [lib need-ns require] (dosync (commute *loaded-libs* (fn* [p1__3044 p2__3045] (reduce conj p1__3044 p2__3045)) (binding [*loaded-libs* (ref (sorted-set))] (load-one lib need-ns require) (clojure.core/deref *loaded-libs*))))) +//(defn- load-all "Loads a lib given its name and forces a load of any libs it directly or\n indirectly loads. If need-ns, ensures that the associated namespace\n exists after loading. If require, records the load so any duplicate loads\n can be skipped." [lib need-ns require] (dosync (commute *loaded-libs* (fn* [p1__3796 p2__3797] (reduce conj p1__3796 p2__3797)) (binding [*loaded-libs* (ref (sorted-set))] (load-one lib need-ns require) (clojure.core/deref *loaded-libs*))))) //--- -(function __clojure_core_fn_3046(){ -return (clojure.JS.def(clojure.core,"load_all",(function __clojure_core_fn_3046_load_all_3048(lib_1,need_ns_2,require_3){ -return (clojure.lang.LockingTransaction.runInTransaction((function __clojure_core_fn_3046_load_all_3048_fn_3050(){ -return (clojure.core.commute.apply(null,[clojure.core._STAR_loaded_libs_STAR_,(function __clojure_core_fn_3046_load_all_3048_fn_3050_fn_3052(p1__3044_1,p2__3045_2){ -return (clojure.core.reduce.apply(null,[clojure.core.conj,p1__3044_1,p2__3045_2]))}),clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_loaded_libs_STAR_,clojure.core.ref.apply(null,[clojure.core.sorted_set.apply(null,[])])])), -(function __clojure_core_fn_3046_load_all_3048_fn_3050_fn_3055(){ +(function __clojure_core_fn_3798(){ +return (clojure.JS.def(clojure.core,"load_all",(function __clojure_core_fn_3798_load_all_3800(lib_1,need_ns_2,require_3){ +return (clojure.lang.LockingTransaction.runInTransaction((function __clojure_core_fn_3798_load_all_3800_fn_3802(){ +return (clojure.core.commute.apply(null,[clojure.core._STAR_loaded_libs_STAR_,(function __clojure_core_fn_3798_load_all_3800_fn_3802_fn_3804(p1__3796_1,p2__3797_2){ +return (clojure.core.reduce.apply(null,[clojure.core.conj,p1__3796_1,p2__3797_2]))}),clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_loaded_libs_STAR_,clojure.core.ref.apply(null,[clojure.core.sorted_set.apply(null,[])])])), +(function __clojure_core_fn_3798_load_all_3800_fn_3802_fn_3807(){ return ((function __try(){try{var _rtn=(clojure.core.load_one.apply(null,[lib_1,need_ns_2,require_3]), clojure.core.deref.apply(null,[clojure.core._STAR_loaded_libs_STAR_]))} finally{clojure.lang.Var.popThreadBindings()}return _rtn})())}).apply(null,[])]))})))})))}).apply(null,[]); @@ -2566,40 +2683,40 @@ finally{clojure.lang.Var.popThreadBindings()}return _rtn})())}).apply(null,[])]) //====== //(defn- load-lib "Loads a lib with options" [prefix lib & options] (throw-if (and prefix (pos? (.indexOf (name lib) (int \.)))) "lib names inside prefix lists must not contain periods") (let [lib (if prefix (symbol (str prefix \. lib)) lib) opts (apply hash-map options) {:keys [as reload reload-all require use verbose]} opts loaded (contains? (clojure.core/deref *loaded-libs*) lib) load (cond reload-all load-all (or reload (not require) (not loaded)) load-one) need-ns (or as use) filter-opts (select-keys opts (quote (:exclude :only :rename)))] (binding [*loading-verbosely* (or *loading-verbosely* verbose)] (if load (load lib need-ns require) (throw-if (and need-ns (not (find-ns lib))) "namespace '%s' not found" lib)) (when (and need-ns *loading-verbosely*) (printf "(clojure.core/in-ns '%s)\n" (ns-name *ns*))) (when as (when *loading-verbosely* (printf "(clojure.core/alias '%s '%s)\n" as lib)) (alias as lib)) (when use (when *loading-verbosely* (printf "(clojure.core/refer '%s" lib) (doseq [opt filter-opts] (printf " %s '%s" (key opt) (print-str (val opt)))) (printf ")\n")) (apply refer lib (mapcat seq filter-opts)))))) //--- -(function __clojure_core_fn_3061(){ -return (clojure.JS.def(clojure.core,"load_lib",clojure.JS.variadic(2,(function __clojure_core_fn_3061_load_lib_3063(prefix_1,lib_2){ -var reload_7,opt_20,load_14,need_ns_15,and__410_4,map__3065_6,require_9,as_8,reload_all_10,or__424_15,and__410_19,sq__1423_19,loaded_13,or__424_14,and__410_19,or__424_15,lib_4,use_12,opts_5,filter_opts_16,or__424_17,verbose_11,options_3=clojure.JS.rest_args(this,arguments,2); -return (clojure.core.throw_if.apply(null,[((and__410_4=prefix_1), -((and__410_4)?(clojure.lang.Numbers.isPos((clojure.core.name.apply(null,[lib_2])).indexOf(clojure.lang.RT.intCast(".")))):(and__410_4))),"lib names inside prefix lists must not contain periods"]), +(function __clojure_core_fn_3813(){ +return (clojure.JS.def(clojure.core,"load_lib",clojure.JS.variadic(2,(function __clojure_core_fn_3813_load_lib_3815(prefix_1,lib_2){ +var map__3817_6,loaded_13,require_9,reload_11,and__960__auto___19,load_14,opts_5,lib_4,as_12,and__960__auto___4,verbose_7,or__974__auto___15,use_8,and__960__auto___19,filter_opts_16,or__974__auto___14,reload_all_10,sq__2055__auto___19,or__974__auto___17,need_ns_15,or__974__auto___15,opt_20,options_3=clojure.JS.rest_args(this,arguments,2); +return (clojure.core.throw_if.apply(null,[((and__960__auto___4=prefix_1), +((and__960__auto___4)?(clojure.lang.Numbers.isPos((clojure.core.name.apply(null,[lib_2])).indexOf(clojure.lang.RT.intCast(".")))):(and__960__auto___4))),"lib names inside prefix lists must not contain periods"]), ((lib_4=((prefix_1)?(clojure.core.symbol.apply(null,[clojure.core.str.apply(null,[prefix_1,".",lib_2])])):(lib_2))), (opts_5=clojure.core.apply.apply(null,[clojure.core.hash_map,options_3])), -(map__3065_6=opts_5), -(reload_7=clojure.core.get.apply(null,[map__3065_6,clojure.core.keyword("","reload")])), -(as_8=clojure.core.get.apply(null,[map__3065_6,clojure.core.keyword("","as")])), -(require_9=clojure.core.get.apply(null,[map__3065_6,clojure.core.keyword("","require")])), -(reload_all_10=clojure.core.get.apply(null,[map__3065_6,clojure.core.keyword("","reload-all")])), -(verbose_11=clojure.core.get.apply(null,[map__3065_6,clojure.core.keyword("","verbose")])), -(use_12=clojure.core.get.apply(null,[map__3065_6,clojure.core.keyword("","use")])), +(map__3817_6=opts_5), +(verbose_7=clojure.core.get.apply(null,[map__3817_6,clojure.core.keyword("","verbose")])), +(use_8=clojure.core.get.apply(null,[map__3817_6,clojure.core.keyword("","use")])), +(require_9=clojure.core.get.apply(null,[map__3817_6,clojure.core.keyword("","require")])), +(reload_all_10=clojure.core.get.apply(null,[map__3817_6,clojure.core.keyword("","reload-all")])), +(reload_11=clojure.core.get.apply(null,[map__3817_6,clojure.core.keyword("","reload")])), +(as_12=clojure.core.get.apply(null,[map__3817_6,clojure.core.keyword("","as")])), (loaded_13=clojure.core.contains_QMARK_.apply(null,[clojure.core.deref.apply(null,[clojure.core._STAR_loaded_libs_STAR_]),lib_4])), -(load_14=((reload_all_10)?(clojure.core.load_all):(((((or__424_14=reload_7), -((or__424_14)?(or__424_14):(((or__424_15=clojure.core.not.apply(null,[require_9])), -((or__424_15)?(or__424_15):(clojure.core.not.apply(null,[loaded_13]))))))))?(clojure.core.load_one):(null))))), -(need_ns_15=((or__424_15=as_8), -((or__424_15)?(or__424_15):(use_12)))), +(load_14=((reload_all_10)?(clojure.core.load_all):(((((or__974__auto___14=reload_11), +((or__974__auto___14)?(or__974__auto___14):(((or__974__auto___15=clojure.core.not.apply(null,[require_9])), +((or__974__auto___15)?(or__974__auto___15):(clojure.core.not.apply(null,[loaded_13]))))))))?(clojure.core.load_one):(null))))), +(need_ns_15=((or__974__auto___15=as_12), +((or__974__auto___15)?(or__974__auto___15):(use_8)))), (filter_opts_16=clojure.core.select_keys.apply(null,[opts_5,clojure.JS.lit_list([clojure.core.keyword("","exclude"),clojure.core.keyword("","only"),clojure.core.keyword("","rename")])])), -clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_loading_verbosely_STAR_,((or__424_17=clojure.core._STAR_loading_verbosely_STAR_), -((or__424_17)?(or__424_17):(verbose_11)))])), -(function __try(){try{var _rtn=(((load_14)?(load_14.apply(null,[lib_4,need_ns_15,require_9])):(clojure.core.throw_if.apply(null,[((and__410_19=need_ns_15), -((and__410_19)?(clojure.core.not.apply(null,[clojure.core.find_ns.apply(null,[lib_4])])):(and__410_19))),"namespace '%s' not found",lib_4]))), -((((and__410_19=need_ns_15), -((and__410_19)?(clojure.core._STAR_loading_verbosely_STAR_):(and__410_19))))?(clojure.core.printf.apply(null,["(clojure.core/in-ns '%s)\n",clojure.core.ns_name.apply(null,[clojure.core._STAR_ns_STAR_])])):(null)), -((as_8)?(((clojure.core._STAR_loading_verbosely_STAR_)?(clojure.core.printf.apply(null,["(clojure.core/alias '%s '%s)\n",as_8,lib_4])):(null)), -clojure.core.alias.apply(null,[as_8,lib_4])):(null)), -((use_12)?(((clojure.core._STAR_loading_verbosely_STAR_)?(clojure.core.printf.apply(null,["(clojure.core/refer '%s",lib_4]), -((function __loop(){var _rtn,_cnt;(sq__1423_19=clojure.core.seq.apply(null,[filter_opts_16]));do{_cnt=0; -_rtn=((sq__1423_19)?(((opt_20=clojure.core.first.apply(null,[sq__1423_19])), +clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_loading_verbosely_STAR_,((or__974__auto___17=clojure.core._STAR_loading_verbosely_STAR_), +((or__974__auto___17)?(or__974__auto___17):(verbose_7)))])), +(function __try(){try{var _rtn=(((load_14)?(load_14.apply(null,[lib_4,need_ns_15,require_9])):(clojure.core.throw_if.apply(null,[((and__960__auto___19=need_ns_15), +((and__960__auto___19)?(clojure.core.not.apply(null,[clojure.core.find_ns.apply(null,[lib_4])])):(and__960__auto___19))),"namespace '%s' not found",lib_4]))), +((((and__960__auto___19=need_ns_15), +((and__960__auto___19)?(clojure.core._STAR_loading_verbosely_STAR_):(and__960__auto___19))))?(clojure.core.printf.apply(null,["(clojure.core/in-ns '%s)\n",clojure.core.ns_name.apply(null,[clojure.core._STAR_ns_STAR_])])):(null)), +((as_12)?(((clojure.core._STAR_loading_verbosely_STAR_)?(clojure.core.printf.apply(null,["(clojure.core/alias '%s '%s)\n",as_12,lib_4])):(null)), +clojure.core.alias.apply(null,[as_12,lib_4])):(null)), +((use_8)?(((clojure.core._STAR_loading_verbosely_STAR_)?(clojure.core.printf.apply(null,["(clojure.core/refer '%s",lib_4]), +((function __loop(){var _rtn,_cnt;(sq__2055__auto___19=clojure.core.seq.apply(null,[filter_opts_16]));do{_cnt=0; +_rtn=((sq__2055__auto___19)?(((opt_20=clojure.core.first.apply(null,[sq__2055__auto___19])), ((true)?(((true)?(clojure.core.printf.apply(null,[" %s '%s",clojure.core.key.apply(null,[opt_20]),clojure.core.print_str.apply(null,[clojure.core.val.apply(null,[opt_20])])])):(null)), -(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__1423_19])],sq__1423_19=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})()), +(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__2055__auto___19])],sq__2055__auto___19=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})()), clojure.core.printf.apply(null,[")\n"])):(null)), clojure.core.apply.apply(null,[clojure.core.refer,lib_4,clojure.core.mapcat.apply(null,[clojure.core.seq,filter_opts_16])])):(null)))} finally{clojure.lang.Var.popThreadBindings()}return _rtn})()))}))))}).apply(null,[]); @@ -2607,315 +2724,346 @@ finally{clojure.lang.Var.popThreadBindings()}return _rtn})()))}))))}).apply(null //====== //(defn- load-libs "Loads libs, interpreting libspecs, prefix lists, and flags for\n forwarding to load-lib" [& args] (let [flags (filter keyword? args) opts (interleave flags (repeat true)) args (filter (complement keyword?) args)] (doseq [arg args] (if (libspec? arg) (apply load-lib nil (prependss arg opts)) (let [[prefix & args] arg] (throw-if (nil? prefix) "prefix cannot be nil") (doseq [arg args] (apply load-lib prefix (prependss arg opts)))))))) //--- -(function __clojure_core_fn_3068(){ -return (clojure.JS.def(clojure.core,"load_libs",clojure.JS.variadic(0,(function __clojure_core_fn_3068_load_libs_3070(){ -var prefix_8,flags_2,sq__1423_10,arg_6,args_9,opts_3,sq__1423_5,args_4,arg_11,vec__3072_7,args_1=clojure.JS.rest_args(this,arguments,0); +(function __clojure_core_fn_3828(){ +return (clojure.JS.def(clojure.core,"load_libs",clojure.JS.variadic(0,(function __clojure_core_fn_3828_load_libs_3830(){ +var flags_2,vec__3832_7,arg_6,prefix_8,sq__2055__auto___5,sq__2055__auto___10,opts_3,arg_11,args_4,args_9,args_1=clojure.JS.rest_args(this,arguments,0); return (((flags_2=clojure.core.filter.apply(null,[clojure.core.keyword_QMARK_,args_1])), (opts_3=clojure.core.interleave.apply(null,[flags_2,clojure.core.repeat.apply(null,[true])])), (args_4=clojure.core.filter.apply(null,[clojure.core.complement.apply(null,[clojure.core.keyword_QMARK_]),args_1])), -((function __loop(){var _rtn,_cnt;(sq__1423_5=clojure.core.seq.apply(null,[args_4]));do{_cnt=0; -_rtn=((sq__1423_5)?(((arg_6=clojure.core.first.apply(null,[sq__1423_5])), -((true)?(((true)?(((clojure.core.libspec_QMARK_.apply(null,[arg_6]))?(clojure.core.apply.apply(null,[clojure.core.load_lib,null,clojure.core.prependss.apply(null,[arg_6,opts_3])])):(((vec__3072_7=arg_6), -(prefix_8=clojure.core.nth.apply(null,[vec__3072_7,(0),null])), -(args_9=clojure.core.nthrest.apply(null,[vec__3072_7,(1)])), +((function __loop(){var _rtn,_cnt;(sq__2055__auto___5=clojure.core.seq.apply(null,[args_4]));do{_cnt=0; +_rtn=((sq__2055__auto___5)?(((arg_6=clojure.core.first.apply(null,[sq__2055__auto___5])), +((true)?(((true)?(((clojure.core.libspec_QMARK_.apply(null,[arg_6]))?(clojure.core.apply.apply(null,[clojure.core.load_lib,null,clojure.core.prependss.apply(null,[arg_6,opts_3])])):(((vec__3832_7=arg_6), +(prefix_8=clojure.core.nth.apply(null,[vec__3832_7,(0),null])), +(args_9=clojure.core.nthrest.apply(null,[vec__3832_7,(1)])), clojure.core.throw_if.apply(null,[clojure.core.nil_QMARK_.apply(null,[prefix_8]),"prefix cannot be nil"]), -((function __loop(){var _rtn,_cnt;(sq__1423_10=clojure.core.seq.apply(null,[args_9]));do{_cnt=0; -_rtn=((sq__1423_10)?(((arg_11=clojure.core.first.apply(null,[sq__1423_10])), +((function __loop(){var _rtn,_cnt;(sq__2055__auto___10=clojure.core.seq.apply(null,[args_9]));do{_cnt=0; +_rtn=((sq__2055__auto___10)?(((arg_11=clojure.core.first.apply(null,[sq__2055__auto___10])), ((true)?(((true)?(clojure.core.apply.apply(null,[clojure.core.load_lib,prefix_8,clojure.core.prependss.apply(null,[arg_11,opts_3])])):(null)), -(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__1423_10])],sq__1423_10=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})()))))):(null)), -(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__1423_5])],sq__1423_5=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})())))}))))}).apply(null,[]); +(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__2055__auto___10])],sq__2055__auto___10=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})()))))):(null)), +(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__2055__auto___5])],sq__2055__auto___5=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})())))}))))}).apply(null,[]); //====== //(defn require "Loads libs, skipping any that are already loaded. Each argument is\n either a libspec that identifies a lib, a prefix list that identifies\n multiple libs whose names share a common prefix, or a flag that modifies\n how all the identified libs are loaded. Use :require in the ns macro \n in preference to calling this directly.\n\n Libs\n\n A 'lib' is a named set of resources in classpath whose contents define a\n library of Clojure code. Lib names are symbols and each lib is associated\n with a Clojure namespace and a Java package that share its name. A lib's\n name also locates its root directory within classpath using Java's\n package name to classpath-relative path mapping. All resources in a lib\n should be contained in the directory structure under its root directory.\n All definitions a lib makes should be in its associated namespace.\n\n 'require loads a lib by loading its root resource. The root resource path\n is derived from the root directory path by repeating its last component\n and appending '.clj'. For example, the lib 'x.y.z has root directory\n <classpath>/x/y/z; root resource <classpath>/x/y/z/z.clj. The root\n resource should contain code to create the lib's namespace and load any\n additional lib resources.\n\n Libspecs\n\n A libspec is a lib name or a vector containing a lib name followed by\n options expressed as sequential keywords and arguments.\n\n Recognized options: :as\n :as takes a symbol as its argument and makes that symbol an alias to the\n lib's namespace in the current namespace.\n\n Prefix Lists\n\n It's common for Clojure code to depend on several libs whose names have\n the same prefix. When specifying libs, prefix lists can be used to reduce\n repetition. A prefix list contains the shared prefix followed by libspecs\n with the shared prefix removed from the lib names. After removing the\n prefix, the names that remain must not contain any periods.\n\n Flags\n\n A flag is a keyword.\n Recognized flags: :reload, :reload-all, :verbose\n :reload forces loading of all the identified libs even if they are\n already loaded\n :reload-all implies :reload and also forces loading of all libs that the\n identified libs directly or indirectly load via require or use\n :verbose triggers printing information about each load, alias, and refer" [& args] (apply load-libs :require args)) //--- -(function __clojure_core_fn_3075(){ -return (clojure.JS.def(clojure.core,"require",clojure.JS.variadic(0,(function __clojure_core_fn_3075_require_3077(){ +(function __clojure_core_fn_3837(){ +return (clojure.JS.def(clojure.core,"require",clojure.JS.variadic(0,(function __clojure_core_fn_3837_require_3839(){ var args_1=clojure.JS.rest_args(this,arguments,0); return (clojure.core.apply.apply(null,[clojure.core.load_libs,clojure.core.keyword("","require"),args_1]))}))))}).apply(null,[]); //====== //(defn use "Like 'require, but also refers to each lib's namespace using\n clojure.core/refer. Use :use in the ns macro in preference to calling\n this directly.\n\n 'use accepts additional options in libspecs: :exclude, :only, :rename.\n The arguments and semantics for :exclude, :only, and :rename are the same\n as those documented for clojure.core/refer." [& args] (apply load-libs :require :use args)) //--- -(function __clojure_core_fn_3081(){ -return (clojure.JS.def(clojure.core,"use",clojure.JS.variadic(0,(function __clojure_core_fn_3081_use_3083(){ +(function __clojure_core_fn_3843(){ +return (clojure.JS.def(clojure.core,"use",clojure.JS.variadic(0,(function __clojure_core_fn_3843_use_3845(){ var args_1=clojure.JS.rest_args(this,arguments,0); return (clojure.core.apply.apply(null,[clojure.core.load_libs,clojure.core.keyword("","require"),clojure.core.keyword("","use"),args_1]))}))))}).apply(null,[]); //====== //(defn loaded-libs "Returns a sorted set of symbols naming the currently loaded libs" [] (clojure.core/deref *loaded-libs*)) //--- -(function __clojure_core_fn_3087(){ -return (clojure.JS.def(clojure.core,"loaded_libs",(function __clojure_core_fn_3087_loaded_libs_3089(){ +(function __clojure_core_fn_3849(){ +return (clojure.JS.def(clojure.core,"loaded_libs",(function __clojure_core_fn_3849_loaded_libs_3851(){ return (clojure.core.deref.apply(null,[clojure.core._STAR_loaded_libs_STAR_]))})))}).apply(null,[]); -// Skipping: (defn load "Loads Clojure code from resources in classpath. A path is interpreted as\n classpath-relative if it begins with a slash or relative to the root\n directory for the current namespace otherwise." [& paths] (doseq [path paths] (let [path (if (.startsWith path "/") path (str (root-directory (ns-name *ns*)) \/ path))] (when *loading-verbosely* (printf "(clojure.core/load \"%s\")\n" path) (flush)) (throw-if (*pending-paths* path) "cannot load '%s' again while it is loading" path) (binding [*pending-paths* (conj *pending-paths* path)] (clojure.lang.RT/load (.substring path 1)))))) +// Skipping: (defn load "Loads Clojure code from resources in classpath. A path is interpreted as\n classpath-relative if it begins with a slash or relative to the root\n directory for the current namespace otherwise." [& paths] (doseq [path paths] (let [path (if (.startsWith path "/") path (str (root-directory (ns-name *ns*)) \/ path))] (when *loading-verbosely* (printf "(clojure.core/load \"%s\")\n" path) (flush)) (when-not (*pending-paths* path) (binding [*pending-paths* (conj *pending-paths* path)] (clojure.lang.RT/load (.substring path 1))))))) //====== -//(defn compile [lib] (binding [*compile-files* true] (load-one lib true true))) +//(defn compile "Compiles the namespace named by the symbol lib into a set of\n classfiles. The source for the lib must be in a proper\n classpath-relative directory. The output files will go into the\n directory specified by *compile-path*, and that directory too must\n be in the classpath." [lib] (binding [*compile-files* true] (load-one lib true true)) lib) //--- -(function __clojure_core_fn_3102(){ -return (clojure.JS.def(clojure.core,"compile",(function __clojure_core_fn_3102_compile_3104(lib_1){ +(function __clojure_core_fn_3865(){ +return (clojure.JS.def(clojure.core,"compile",(function __clojure_core_fn_3865_compile_3867(lib_1){ return (clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_compile_files_STAR_,true])), -(function __try(){try{var _rtn=(clojure.core.load_one.apply(null,[lib_1,true,true]))} -finally{clojure.lang.Var.popThreadBindings()}return _rtn})())})))}).apply(null,[]); +(function __clojure_core_fn_3865_compile_3867_fn_3869(){ +return ((function __try(){try{var _rtn=(clojure.core.load_one.apply(null,[lib_1,true,true]))} +finally{clojure.lang.Var.popThreadBindings()}return _rtn})())}).apply(null,[]), +lib_1)})))}).apply(null,[]); //====== //(defn get-in "returns the value in a nested associative structure, where ks is a sequence of keys" [m ks] (reduce get m ks)) //--- -(function __clojure_core_fn_3108(){ -return (clojure.JS.def(clojure.core,"get_in",(function __clojure_core_fn_3108_get_in_3110(m_1,ks_2){ +(function __clojure_core_fn_3874(){ +return (clojure.JS.def(clojure.core,"get_in",(function __clojure_core_fn_3874_get_in_3876(m_1,ks_2){ return (clojure.core.reduce.apply(null,[clojure.core.get,m_1,ks_2]))})))}).apply(null,[]); //====== //(defn assoc-in "Associates a value in a nested associative structure, where ks is a\n sequence of keys and v is the new value and returns a new nested structure. \n If any levels do not exist, hash-maps will be created." [m [k & ks] v] (if ks (assoc m k (assoc-in (get m k) ks v)) (assoc m k v))) //--- -(function __clojure_core_fn_3114(){ -return (clojure.JS.def(clojure.core,"assoc_in",(function __clojure_core_fn_3114_assoc_in_3117(m_1,p__3116_2,v_3){ -var k_5,ks_6,vec__3119_4; -return (((vec__3119_4=p__3116_2), -(k_5=clojure.core.nth.apply(null,[vec__3119_4,(0),null])), -(ks_6=clojure.core.nthrest.apply(null,[vec__3119_4,(1)])), +(function __clojure_core_fn_3880(){ +return (clojure.JS.def(clojure.core,"assoc_in",(function __clojure_core_fn_3880_assoc_in_3883(m_1,p__3882_2,v_3){ +var vec__3885_4,k_5,ks_6; +return (((vec__3885_4=p__3882_2), +(k_5=clojure.core.nth.apply(null,[vec__3885_4,(0),null])), +(ks_6=clojure.core.nthrest.apply(null,[vec__3885_4,(1)])), ((ks_6)?(clojure.core.assoc.apply(null,[m_1,k_5,clojure.core.assoc_in.apply(null,[clojure.core.get.apply(null,[m_1,k_5]),ks_6,v_3])])):(clojure.core.assoc.apply(null,[m_1,k_5,v_3])))))})))}).apply(null,[]); //====== //(defn update-in "'Updates' a value in a nested associative structure, where ks is a\n sequence of keys and f is a function that will take the old value\n and any supplied args and return the new value, and returns a new\n nested structure. If any levels do not exist, hash-maps will be\n created." ([m [k & ks] f & args] (if ks (assoc m k (apply update-in (get m k) ks f args)) (assoc m k (apply f (get m k) args))))) //--- -(function __clojure_core_fn_3122(){ -return (clojure.JS.def(clojure.core,"update_in",clojure.JS.variadic(3,(function __clojure_core_fn_3122_update_in_3125(m_1,p__3124_2,f_3){ -var k_6,vec__3127_5,ks_7,args_4=clojure.JS.rest_args(this,arguments,3); -return (((vec__3127_5=p__3124_2), -(k_6=clojure.core.nth.apply(null,[vec__3127_5,(0),null])), -(ks_7=clojure.core.nthrest.apply(null,[vec__3127_5,(1)])), +(function __clojure_core_fn_3888(){ +return (clojure.JS.def(clojure.core,"update_in",clojure.JS.variadic(3,(function __clojure_core_fn_3888_update_in_3891(m_1,p__3890_2,f_3){ +var vec__3893_5,k_6,ks_7,args_4=clojure.JS.rest_args(this,arguments,3); +return (((vec__3893_5=p__3890_2), +(k_6=clojure.core.nth.apply(null,[vec__3893_5,(0),null])), +(ks_7=clojure.core.nthrest.apply(null,[vec__3893_5,(1)])), ((ks_7)?(clojure.core.assoc.apply(null,[m_1,k_6,clojure.core.apply.apply(null,[clojure.core.update_in,clojure.core.get.apply(null,[m_1,k_6]),ks_7,f_3,args_4])])):(clojure.core.assoc.apply(null,[m_1,k_6,clojure.core.apply.apply(null,[f_3,clojure.core.get.apply(null,[m_1,k_6]),args_4])])))))}))))}).apply(null,[]); //====== //(defn empty? "Returns true if coll has no items - same as (not (seq coll)). \n Please use the idiom (seq x) rather than (not (empty? x))" [coll] (not (seq coll))) //--- -(function __clojure_core_fn_3130(){ -return (clojure.JS.def(clojure.core,"empty_QMARK_",(function __clojure_core_fn_3130_empty_QMARK_3132(coll_1){ +(function __clojure_core_fn_3896(){ +return (clojure.JS.def(clojure.core,"empty_QMARK_",(function __clojure_core_fn_3896_empty_QMARK_3898(coll_1){ return (clojure.core.not.apply(null,[clojure.core.seq.apply(null,[coll_1])]))})))}).apply(null,[]); //====== //(defn coll? "Returns true if x implements IPersistentCollection" [x] (instance? clojure.lang.IPersistentCollection x)) //--- -(function __clojure_core_fn_3136(){ -return (clojure.JS.def(clojure.core,"coll_QMARK_",(function __clojure_core_fn_3136_coll_QMARK_3138(x_1){ +(function __clojure_core_fn_3902(){ +return (clojure.JS.def(clojure.core,"coll_QMARK_",(function __clojure_core_fn_3902_coll_QMARK_3904(x_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.IPersistentCollection,x_1]))})))}).apply(null,[]); //====== //(defn list? "Returns true if x implements IPersistentList" [x] (instance? clojure.lang.IPersistentList x)) //--- -(function __clojure_core_fn_3142(){ -return (clojure.JS.def(clojure.core,"list_QMARK_",(function __clojure_core_fn_3142_list_QMARK_3144(x_1){ +(function __clojure_core_fn_3908(){ +return (clojure.JS.def(clojure.core,"list_QMARK_",(function __clojure_core_fn_3908_list_QMARK_3910(x_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.IPersistentList,x_1]))})))}).apply(null,[]); //====== //(defn set? "Returns true if x implements IPersistentSet" [x] (instance? clojure.lang.IPersistentSet x)) //--- -(function __clojure_core_fn_3148(){ -return (clojure.JS.def(clojure.core,"set_QMARK_",(function __clojure_core_fn_3148_set_QMARK_3150(x_1){ +(function __clojure_core_fn_3914(){ +return (clojure.JS.def(clojure.core,"set_QMARK_",(function __clojure_core_fn_3914_set_QMARK_3916(x_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.IPersistentSet,x_1]))})))}).apply(null,[]); -// Skipping: (defn number? "Returns true if x is a Number" [x] (instance? Number x)) //====== -//(defn fn? "Returns true if x implements IFn. Note that many data structures \n (e.g. sets and maps) implement IFn" [x] (instance? clojure.lang.IFn x)) +//(defn ifn? "Returns true if x implements IFn. Note that many data structures \n (e.g. sets and maps) implement IFn" [x] (instance? clojure.lang.IFn x)) //--- -(function __clojure_core_fn_3160(){ -return (clojure.JS.def(clojure.core,"fn_QMARK_",(function __clojure_core_fn_3160_fn_QMARK_3162(x_1){ +(function __clojure_core_fn_3920(){ +return (clojure.JS.def(clojure.core,"ifn_QMARK_",(function __clojure_core_fn_3920_ifn_QMARK_3922(x_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.IFn,x_1]))})))}).apply(null,[]); -// Skipping: (defn integer? "Returns true if n is an integer" [n] (or (instance? Integer n) (instance? Long n) (instance? BigInteger n) (instance? Short n) (instance? Byte n))) //====== -//(defn ratio? "Returns true if n is a Ratio" [n] (instance? clojure.lang.Ratio n)) +//(defn fn? "Returns true if x implements Fn, i.e. is an object created via fn." [x] (instance? clojure.lang.Fn x)) //--- -(function __clojure_core_fn_3172(){ -return (clojure.JS.def(clojure.core,"ratio_QMARK_",(function __clojure_core_fn_3172_ratio_QMARK_3174(n_1){ -return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Ratio,n_1]))})))}).apply(null,[]); -// Skipping: (defn decimal? "Returns true if n is a BigDecimal" [n] (instance? BigDecimal n)) -// Skipping: (defn float? "Returns true if n is a floating point number" [n] (or (instance? Double n) (instance? Float n))) - -//====== -//(defn rational? [n] "Returns true if n is a rational number" (or (integer? n) (ratio? n) (decimal? n))) -//--- -(function __clojure_core_fn_3190(){ -return (clojure.JS.def(clojure.core,"rational_QMARK_",(function __clojure_core_fn_3190_rational_QMARK_3192(n_1){ -var or__424_2,or__424_3; -return ("Returns true if n is a rational number", -((or__424_2=clojure.core.integer_QMARK_.apply(null,[n_1])), -((or__424_2)?(or__424_2):(((or__424_3=clojure.core.ratio_QMARK_.apply(null,[n_1])), -((or__424_3)?(or__424_3):(clojure.core.decimal_QMARK_.apply(null,[n_1]))))))))})))}).apply(null,[]); +(function __clojure_core_fn_3926(){ +return (clojure.JS.def(clojure.core,"fn_QMARK_",(function __clojure_core_fn_3926_fn_QMARK_3928(x_1){ +return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Fn,x_1]))})))}).apply(null,[]); //====== //(defn associative? "Returns true if coll implements Associative" [coll] (instance? clojure.lang.Associative coll)) //--- -(function __clojure_core_fn_3196(){ -return (clojure.JS.def(clojure.core,"associative_QMARK_",(function __clojure_core_fn_3196_associative_QMARK_3198(coll_1){ +(function __clojure_core_fn_3932(){ +return (clojure.JS.def(clojure.core,"associative_QMARK_",(function __clojure_core_fn_3932_associative_QMARK_3934(coll_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Associative,coll_1]))})))}).apply(null,[]); //====== //(defn sequential? "Returns true if coll implements Sequential" [coll] (instance? clojure.lang.Sequential coll)) //--- -(function __clojure_core_fn_3202(){ -return (clojure.JS.def(clojure.core,"sequential_QMARK_",(function __clojure_core_fn_3202_sequential_QMARK_3204(coll_1){ +(function __clojure_core_fn_3938(){ +return (clojure.JS.def(clojure.core,"sequential_QMARK_",(function __clojure_core_fn_3938_sequential_QMARK_3940(coll_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Sequential,coll_1]))})))}).apply(null,[]); //====== //(defn sorted? "Returns true if coll implements Sorted" [coll] (instance? clojure.lang.Sorted coll)) //--- -(function __clojure_core_fn_3208(){ -return (clojure.JS.def(clojure.core,"sorted_QMARK_",(function __clojure_core_fn_3208_sorted_QMARK_3210(coll_1){ +(function __clojure_core_fn_3944(){ +return (clojure.JS.def(clojure.core,"sorted_QMARK_",(function __clojure_core_fn_3944_sorted_QMARK_3946(coll_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Sorted,coll_1]))})))}).apply(null,[]); //====== //(defn reversible? "Returns true if coll implements Reversible" [coll] (instance? clojure.lang.Reversible coll)) //--- -(function __clojure_core_fn_3214(){ -return (clojure.JS.def(clojure.core,"reversible_QMARK_",(function __clojure_core_fn_3214_reversible_QMARK_3216(coll_1){ +(function __clojure_core_fn_3950(){ +return (clojure.JS.def(clojure.core,"reversible_QMARK_",(function __clojure_core_fn_3950_reversible_QMARK_3952(coll_1){ return (clojure.core.instance_QMARK_.apply(null,[clojure.lang.Reversible,coll_1]))})))}).apply(null,[]); -// Skipping: (defn pmap "Like map, except f is applied in parallel. Semi-lazy in that the\n parallel computation stays ahead of the consumption, but doesn't\n realize the entire result unless required. Only useful for\n computationally intensive functions where the time of f dominates\n the coordination overhead." ([f coll] (let [n (inc (.. Runtime getRuntime availableProcessors)) agents (doall (map (fn* [p1__3220] (agent (f p1__3220))) (take n coll))) wget (fn [a] (await1 a) (clojure.core/deref a)) step (fn step [[x & xs :as s] [a & as :as acycle]] (if s (let [v (wget a)] (send a (fn [_] (f x))) (lazy-cons v (step xs as))) (map wget (take (count agents) acycle))))] (step (drop n coll) (cycle agents)))) ([f coll & colls] (let [step (fn step [cs] (when (every? seq cs) (lazy-cons (map first cs) (step (map rest cs)))))] (pmap (fn* [p1__3221] (apply f p1__3221)) (step (cons coll colls)))))) +// Skipping: (defn pmap "Like map, except f is applied in parallel. Semi-lazy in that the\n parallel computation stays ahead of the consumption, but doesn't\n realize the entire result unless required. Only useful for\n computationally intensive functions where the time of f dominates\n the coordination overhead." ([f coll] (let [n (inc (.. Runtime getRuntime availableProcessors)) agents (doall (map (fn* [p1__3956] (agent (f p1__3956))) (take n coll))) wget (fn [a] (await1 a) (clojure.core/deref a)) step (fn step [[x & xs :as s] [a & as :as acycle]] (if s (let [v (wget a)] (send a (fn [_] (f x))) (lazy-cons v (step xs as))) (map wget (take (count agents) acycle))))] (step (drop n coll) (cycle agents)))) ([f coll & colls] (let [step (fn step [cs] (when (every? seq cs) (lazy-cons (map first cs) (step (map rest cs)))))] (pmap (fn* [p1__3957] (apply f p1__3957)) (step (cons coll colls)))))) //====== //(def *1) //--- -(function __clojure_core_fn_3259(){ +(function __clojure_core_fn_3995(){ return (clojure.JS.def(clojure.core,"_STAR_1",null))}).apply(null,[]); //====== //(def *2) //--- -(function __clojure_core_fn_3262(){ +(function __clojure_core_fn_3998(){ return (clojure.JS.def(clojure.core,"_STAR_2",null))}).apply(null,[]); //====== //(def *3) //--- -(function __clojure_core_fn_3265(){ +(function __clojure_core_fn_4001(){ return (clojure.JS.def(clojure.core,"_STAR_3",null))}).apply(null,[]); //====== //(def *e) //--- -(function __clojure_core_fn_3268(){ +(function __clojure_core_fn_4004(){ return (clojure.JS.def(clojure.core,"_STAR_e",null))}).apply(null,[]); -// Skipping: (defmacro declare "defs the supplied var names with no bindings, useful for making forward declarations." [& names] (clojure.core/concat (clojure.core/list (quote do)) (map (fn* [p1__3271] (list (quote def) p1__3271)) names))) +// Skipping: (defmacro declare "defs the supplied var names with no bindings, useful for making forward declarations." [& names] (clojure.core/concat (clojure.core/list (quote do)) (map (fn* [p1__4007] (list (quote def) p1__4007)) names))) //====== -//(load "core-proxy") +//(defn trampoline "trampoline can be used to convert algorithms requiring mutual\n recursion without stack consumption. Calls f with supplied args, if\n any. If f returns a fn, calls that fn with no arguments, and\n continues to repeat, until the return value is not a fn, then\n returns that non-fn value. Note that if you want to return a fn as a\n final value, you must wrap it in some data structure and unpack it\n after trampoline returns." ([f] (let [ret (f)] (if (fn? ret) (recur ret) ret))) ([f & args] (trampoline (fn* [] (apply f args))))) //--- -(function __clojure_core_fn_3287(){ -return (clojure.core.load.apply(null,["core-proxy"]))}).apply(null,[]); +(function __clojure_core_fn_4023(){ +return (clojure.JS.def(clojure.core,"trampoline",clojure.JS.variadic(1,(function __clojure_core_fn_4023_trampoline_4025(f_1){switch(arguments.length){ +case 1:var _cnt,_rtn,ret_2; +do{_cnt=0;_rtn=((ret_2=f_1.apply(null,[])), +((clojure.core.fn_QMARK_.apply(null,[ret_2]))?((_cnt=1,_rtn=[ret_2],f_1=_rtn[0])):(ret_2))) +}while(_cnt);return _rtn;} +var args_2=clojure.JS.rest_args(this,arguments,1); +return (clojure.core.trampoline.apply(null,[(function __clojure_core_fn_4023_trampoline_4025_fn_4028(){ +return (clojure.core.apply.apply(null,[f_1,args_2]))})]))}))))}).apply(null,[]); + +//====== +//(defn intern "Finds or creates a var named by the symbol name in the namespace\n ns (which can be a symbol or a namespace), setting its root binding\n to val if supplied. The namespace must exist. The var will adopt any\n metadata from the name symbol. Returns the var." ([ns name] (let [v (clojure.lang.Var/intern (the-ns ns) name)] (when (clojure.core/meta name) (.setMeta v (clojure.core/meta name))) v)) ([ns name val] (let [v (clojure.lang.Var/intern (the-ns ns) name val)] (when (clojure.core/meta name) (.setMeta v (clojure.core/meta name))) v))) +//--- +(function __clojure_core_fn_4033(){ +return (clojure.JS.def(clojure.core,"intern",(function __clojure_core_fn_4033_intern_4035(ns_1,name_2,val_3){switch(arguments.length){ +case 2:var v_3; +return (((v_3=clojure.lang.Var.intern(clojure.core.the_ns.apply(null,[ns_1]),name_2)), +((clojure.core.meta.apply(null,[name_2]))?((v_3).setMeta(clojure.core.meta.apply(null,[name_2]))):(null)), +v_3))} +var v_4; +return (((v_4=clojure.lang.Var.intern(clojure.core.the_ns.apply(null,[ns_1]),name_2,val_3)), +((clojure.core.meta.apply(null,[name_2]))?((v_4).setMeta(clojure.core.meta.apply(null,[name_2]))):(null)), +v_4))})))}).apply(null,[]); +// Skipping: (defmacro while "Repeatedly executes body while test expression is true. Presumes\n some side-effect will cause test to become false/nil. Returns nil" [test & body] (clojure.core/concat (clojure.core/list (quote clojure.core/loop)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat))) (clojure.core/list (clojure.core/concat (clojure.core/list (quote clojure.core/when)) (clojure.core/list test) body (clojure.core/list (clojure.core/concat (clojure.core/list (quote recur)))))))) + +//====== +//(defn memoize "Returns a memoized version of a referentially transparent function. The\n memoized version of the function keeps a cache of the mapping from arguments\n to results and, when calls with the same arguments are repeated often, has\n higher performance at the expense of higher memory use." [f] (let [mem (atom {})] (fn [& args] (if-let [e (find (clojure.core/deref mem) args)] (val e) (let [ret (apply f args)] (swap! mem assoc args ret) ret))))) +//--- +(function __clojure_core_fn_4049(){ +return (clojure.JS.def(clojure.core,"memoize",(function __clojure_core_fn_4049_memoize_4051(f_1){ +var mem_2; +return (((mem_2=clojure.core.atom.apply(null,[clojure.lang.PersistentArrayMap.EMPTY])), +clojure.JS.variadic(0,(function __clojure_core_fn_4049_memoize_4051_fn_4053(){ +var temp__3296__auto___2,e_3,ret_3,args_1=clojure.JS.rest_args(this,arguments,0); +return (((temp__3296__auto___2=clojure.core.find.apply(null,[clojure.core.deref.apply(null,[mem_2]),args_1])), +((temp__3296__auto___2)?(((e_3=temp__3296__auto___2), +clojure.core.val.apply(null,[e_3]))):(((ret_3=clojure.core.apply.apply(null,[f_1,args_1])), +clojure.core.swap_BANG_.apply(null,[mem_2,clojure.core.assoc,args_1,ret_3]), +ret_3)))))}))))})))}).apply(null,[]); +// Skipping: (defmacro condp "Takes a binary predicate, an expression, and a set of clauses.\n Each clause can take the form of either:\n \n test-expr result-expr\n\n test-expr :>> result-fn\n\n Note :>> is an ordinary keyword.\n\n For each clause, (pred test-expr expr) is evaluated. If it returns\n logical true, the clause is a match. If a binary clause matches, the\n result-expr is returned, if a ternary clause matches, its result-fn,\n which must be a unary function, is called with the result of the\n predicate as its argument, the result of that call being the return\n value of condp. A single default expression can follow the clauses,\n and its value will be returned if no clause matches. If no default\n expression is provided and no clause matches, an\n IllegalArgumentException is thrown." [pred expr & clauses] (let [gpred (gensym "pred__") gexpr (gensym "expr__") emit (fn emit [pred expr args] (let [[[a b c :as clause] more] (split-at (if (= :>> (second args)) 3 2) args) n (count clause)] (cond (= 0 n) (clojure.core/concat (clojure.core/list (quote throw)) (clojure.core/list (clojure.core/concat (clojure.core/list (quote java.lang.IllegalArgumentException.)) (clojure.core/list "No matching clause")))) (= 1 n) a (= 2 n) (clojure.core/concat (clojure.core/list (quote if)) (clojure.core/list (clojure.core/concat (clojure.core/list pred) (clojure.core/list a) (clojure.core/list expr))) (clojure.core/list b) (clojure.core/list (emit pred expr more))) :else (clojure.core/concat (clojure.core/list (quote clojure.core/if-let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list (quote p__4059__auto__)) (clojure.core/list (clojure.core/concat (clojure.core/list pred) (clojure.core/list a) (clojure.core/list expr)))))) (clojure.core/list (clojure.core/concat (clojure.core/list c) (clojure.core/list (quote p__4059__auto__)))) (clojure.core/list (emit pred expr more)))))) gres (gensym "res__")] (clojure.core/concat (clojure.core/list (quote clojure.core/let)) (clojure.core/list (clojure.core/apply clojure.core/vector (clojure.core/concat (clojure.core/list gpred) (clojure.core/list pred) (clojure.core/list gexpr) (clojure.core/list expr)))) (clojure.core/list (emit gpred gexpr clauses))))) + +//====== +//(load "core_proxy") +//--- +(function __clojure_core_fn_4077(){ +return (clojure.core.load.apply(null,["core_proxy"]))}).apply(null,[]); //====== -//(load "core-print") +//(load "core_print") //--- -(function __clojure_core_fn_3290(){ -return (clojure.core.load.apply(null,["core-print"]))}).apply(null,[]); +(function __clojure_core_fn_4080(){ +return (clojure.core.load.apply(null,["core_print"]))}).apply(null,[]); //====== //(load "genclass") //--- -(function __clojure_core_fn_3293(){ +(function __clojure_core_fn_4083(){ return (clojure.core.load.apply(null,["genclass"]))}).apply(null,[]); //====== //(in-ns (quote clojure.core)) //--- -(function __user_fn_3296(){ +(function __user_fn_4086(){ return (clojure.core.in_ns.apply(null,[clojure.core.symbol("clojure.core")]))}).apply(null,[]); //====== //(import (quote (java.io Writer))) //--- -(function __clojure_core_fn_3302(){ +(function __clojure_core_fn_4092(){ return (clojure.core.import_.apply(null,[clojure.JS.lit_list([clojure.core.symbol("java.io"),clojure.core.symbol("Writer")])]))}).apply(null,[]); //====== //(def *print-length* nil) //--- -(function __clojure_core_fn_3305(){ +(function __clojure_core_fn_4095(){ return (clojure.JS.def(clojure.core,"_STAR_print_length_STAR_",null))}).apply(null,[]); //====== //(def *print-level* nil) //--- -(function __clojure_core_fn_3308(){ +(function __clojure_core_fn_4098(){ return (clojure.JS.def(clojure.core,"_STAR_print_level_STAR_",null))}).apply(null,[]); //====== //(defn- print-sequential [begin print-one sep end sequence w] (binding [*print-level* (and (not *print-dup*) *print-level* (dec *print-level*))] (if (and *print-level* (neg? *print-level*)) (.write w "#") (do (.write w begin) (when-let [xs (seq sequence)] (if (and (not *print-dup*) *print-length*) (loop [[x & xs] xs print-length *print-length*] (if (zero? print-length) (.write w "...") (do (print-one x w) (when xs (.write w sep) (recur xs (dec print-length)))))) (loop [[x & xs] xs] (print-one x w) (when xs (.write w sep) (recur xs))))) (.write w end))))) //--- -(function __clojure_core_fn_3311(){ -return (clojure.JS.def(clojure.core,"print_sequential",(function __clojure_core_fn_3311_print_sequential_3313(begin_1,print_one_2,sep_3,end_4,sequence_5,w_6){ -var G__3320_11,print_length_21,x_19,and__410_8,xs_18,vec__3317_12,vec__3321_12,temp__2600_9,xs_14,x_13,print_length_15,xs_14,vec__3322_16,x_13,G__3320_15,G__3316_11,and__410_9,x_17,and__410_11,xs_20,print_length_17,vec__3318_18,and__410_7,G__3316_16,xs_10; -return (clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_print_level_STAR_,((and__410_7=clojure.core.not.apply(null,[clojure.core._STAR_print_dup_STAR_])), -((and__410_7)?(((and__410_8=clojure.core._STAR_print_level_STAR_), -((and__410_8)?(clojure.lang.Numbers.dec(clojure.core._STAR_print_level_STAR_)):(and__410_8)))):(and__410_7)))])), -(function __try(){try{var _rtn=(((((and__410_9=clojure.core._STAR_print_level_STAR_), -((and__410_9)?(clojure.lang.Numbers.isNeg(clojure.core._STAR_print_level_STAR_)):(and__410_9))))?((w_6).write("#")):((w_6).write(begin_1), -((temp__2600_9=clojure.core.seq.apply(null,[sequence_5])), -((temp__2600_9)?(((xs_10=temp__2600_9), -((((and__410_11=clojure.core.not.apply(null,[clojure.core._STAR_print_dup_STAR_])), -((and__410_11)?(clojure.core._STAR_print_length_STAR_):(and__410_11))))?(((G__3316_11=xs_10), -(vec__3317_12=G__3316_11), -(x_13=clojure.core.nth.apply(null,[vec__3317_12,(0),null])), -(xs_14=clojure.core.nthrest.apply(null,[vec__3317_12,(1)])), +(function __clojure_core_fn_4101(){ +return (clojure.JS.def(clojure.core,"print_sequential",(function __clojure_core_fn_4101_print_sequential_4103(begin_1,print_one_2,sep_3,end_4,sequence_5,w_6){ +var and__960__auto___9,vec__4107_12,xs_18,xs_14,G__4106_11,G__4110_15,temp__3312__auto___9,print_length_15,x_19,and__960__auto___8,x_13,vec__4112_16,G__4106_16,xs_14,print_length_21,vec__4111_12,vec__4108_18,and__960__auto___11,and__960__auto___7,xs_10,G__4110_11,print_length_17,x_17,x_13,xs_20; +return (clojure.lang.Var.pushThreadBindings(clojure.core.hash_map.apply(null,[clojure.core._var__STAR_print_level_STAR_,((and__960__auto___7=clojure.core.not.apply(null,[clojure.core._STAR_print_dup_STAR_])), +((and__960__auto___7)?(((and__960__auto___8=clojure.core._STAR_print_level_STAR_), +((and__960__auto___8)?(clojure.lang.Numbers.dec(clojure.core._STAR_print_level_STAR_)):(and__960__auto___8)))):(and__960__auto___7)))])), +(function __try(){try{var _rtn=(((((and__960__auto___9=clojure.core._STAR_print_level_STAR_), +((and__960__auto___9)?(clojure.lang.Numbers.isNeg(clojure.core._STAR_print_level_STAR_)):(and__960__auto___9))))?((w_6).write("#")):((w_6).write(begin_1), +((temp__3312__auto___9=clojure.core.seq.apply(null,[sequence_5])), +((temp__3312__auto___9)?(((xs_10=temp__3312__auto___9), +((((and__960__auto___11=clojure.core.not.apply(null,[clojure.core._STAR_print_dup_STAR_])), +((and__960__auto___11)?(clojure.core._STAR_print_length_STAR_):(and__960__auto___11))))?(((G__4106_11=xs_10), +(vec__4107_12=G__4106_11), +(x_13=clojure.core.nth.apply(null,[vec__4107_12,(0),null])), +(xs_14=clojure.core.nthrest.apply(null,[vec__4107_12,(1)])), (print_length_15=clojure.core._STAR_print_length_STAR_), -((function __loop(){var _rtn,_cnt;(G__3316_16=G__3316_11), +((function __loop(){var _rtn,_cnt;(G__4106_16=G__4106_11), (print_length_17=print_length_15);do{_cnt=0; -_rtn=((vec__3318_18=G__3316_16), -(x_19=clojure.core.nth.apply(null,[vec__3318_18,(0),null])), -(xs_20=clojure.core.nthrest.apply(null,[vec__3318_18,(1)])), +_rtn=((vec__4108_18=G__4106_16), +(x_19=clojure.core.nth.apply(null,[vec__4108_18,(0),null])), +(xs_20=clojure.core.nthrest.apply(null,[vec__4108_18,(1)])), (print_length_21=print_length_17), ((clojure.lang.Numbers.isZero(print_length_21))?((w_6).write("...")):(print_one_2.apply(null,[x_19,w_6]), ((xs_20)?((w_6).write(sep_3), -(_cnt=1,_rtn=[xs_20,clojure.lang.Numbers.dec(print_length_21)],G__3316_16=_rtn[0],print_length_17=_rtn[1])):(null)))))}while(_cnt);return _rtn;})()))):(((G__3320_11=xs_10), -(vec__3321_12=G__3320_11), -(x_13=clojure.core.nth.apply(null,[vec__3321_12,(0),null])), -(xs_14=clojure.core.nthrest.apply(null,[vec__3321_12,(1)])), -((function __loop(){var _rtn,_cnt;(G__3320_15=G__3320_11);do{_cnt=0; -_rtn=((vec__3322_16=G__3320_15), -(x_17=clojure.core.nth.apply(null,[vec__3322_16,(0),null])), -(xs_18=clojure.core.nthrest.apply(null,[vec__3322_16,(1)])), +(_cnt=1,_rtn=[xs_20,clojure.lang.Numbers.dec(print_length_21)],G__4106_16=_rtn[0],print_length_17=_rtn[1])):(null)))))}while(_cnt);return _rtn;})()))):(((G__4110_11=xs_10), +(vec__4111_12=G__4110_11), +(x_13=clojure.core.nth.apply(null,[vec__4111_12,(0),null])), +(xs_14=clojure.core.nthrest.apply(null,[vec__4111_12,(1)])), +((function __loop(){var _rtn,_cnt;(G__4110_15=G__4110_11);do{_cnt=0; +_rtn=((vec__4112_16=G__4110_15), +(x_17=clojure.core.nth.apply(null,[vec__4112_16,(0),null])), +(xs_18=clojure.core.nthrest.apply(null,[vec__4112_16,(1)])), print_one_2.apply(null,[x_17,w_6]), ((xs_18)?((w_6).write(sep_3), -(_cnt=1,_rtn=[xs_18],G__3320_15=_rtn[0])):(null)))}while(_cnt);return _rtn;})())))))):(null))), +(_cnt=1,_rtn=[xs_18],G__4110_15=_rtn[0])):(null)))}while(_cnt);return _rtn;})())))))):(null))), (w_6).write(end_4))))} finally{clojure.lang.Var.popThreadBindings()}return _rtn})())})))}).apply(null,[]); //====== //(defn- print-meta [o w] (when-let [m (meta o)] (when (and (pos? (count m)) (or *print-dup* (and *print-meta* *print-readably*))) (.write w "#^") (if (and (= (count m) 1) (:tag m)) (pr-on (:tag m) w) (pr-on m w)) (.write w " ")))) //--- -(function __clojure_core_fn_3325(){ -return (clojure.JS.def(clojure.core,"print_meta",(function __clojure_core_fn_3325_print_meta_3327(o_1,w_2){ -var and__410_7,temp__2600_3,m_4,and__410_5,and__410_5,or__424_6; -return (((temp__2600_3=clojure.core.meta.apply(null,[o_1])), -((temp__2600_3)?(((m_4=temp__2600_3), -((((and__410_5=clojure.lang.Numbers.isPos(clojure.core.count.apply(null,[m_4]))), -((and__410_5)?(((or__424_6=clojure.core._STAR_print_dup_STAR_), -((or__424_6)?(or__424_6):(((and__410_7=clojure.core._STAR_print_meta_STAR_), -((and__410_7)?(clojure.core._STAR_print_readably_STAR_):(and__410_7))))))):(and__410_5))))?((w_2).write("#^"), -((((and__410_5=clojure.lang.Util.equal(clojure.core.count.apply(null,[m_4]),(1))), -((and__410_5)?(clojure.core.keyword("","tag").apply(null,[m_4])):(and__410_5))))?(clojure.core.pr_on.apply(null,[clojure.core.keyword("","tag").apply(null,[m_4]),w_2])):(clojure.core.pr_on.apply(null,[m_4,w_2]))), +(function __clojure_core_fn_4120(){ +return (clojure.JS.def(clojure.core,"print_meta",(function __clojure_core_fn_4120_print_meta_4122(o_1,w_2){ +var temp__3312__auto___3,m_4,and__960__auto___5,or__974__auto___6,and__960__auto___7,and__960__auto___5; +return (((temp__3312__auto___3=clojure.core.meta.apply(null,[o_1])), +((temp__3312__auto___3)?(((m_4=temp__3312__auto___3), +((((and__960__auto___5=clojure.lang.Numbers.isPos(clojure.core.count.apply(null,[m_4]))), +((and__960__auto___5)?(((or__974__auto___6=clojure.core._STAR_print_dup_STAR_), +((or__974__auto___6)?(or__974__auto___6):(((and__960__auto___7=clojure.core._STAR_print_meta_STAR_), +((and__960__auto___7)?(clojure.core._STAR_print_readably_STAR_):(and__960__auto___7))))))):(and__960__auto___5))))?((w_2).write("#^"), +((((and__960__auto___5=clojure.lang.Util.equal(clojure.core.count.apply(null,[m_4]),(1))), +((and__960__auto___5)?(clojure.core.keyword("","tag").apply(null,[m_4])):(and__960__auto___5))))?(clojure.core.pr_on.apply(null,[clojure.core.keyword("","tag").apply(null,[m_4]),w_2])):(clojure.core.pr_on.apply(null,[m_4,w_2]))), (w_2).write(" ")):(null)))):(null))))})))}).apply(null,[]); //====== //(defmethod print-method nil [o w] (.write w "nil")) //--- -(function __clojure_core_fn_3331(){ -return ((clojure.core.print_method).addMethod(null,(function __clojure_core_fn_3331_fn_3333(o_1,w_2){ +(function __clojure_core_fn_4131(){ +return ((clojure.core.print_method).addMethod(null,(function __clojure_core_fn_4131_fn_4133(o_1,w_2){ return ((w_2).write("nil"))})))}).apply(null,[]); //====== //(defmethod print-dup nil [o w] (print-method o w)) //--- -(function __clojure_core_fn_3337(){ -return ((clojure.core.print_dup).addMethod(null,(function __clojure_core_fn_3337_fn_3339(o_1,w_2){ +(function __clojure_core_fn_4137(){ +return ((clojure.core.print_dup).addMethod(null,(function __clojure_core_fn_4137_fn_4139(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defn print-ctor [o print-args w] (.write w "#=(") (.write w (RT/className (class o))) (.write w ". ") (print-args o w) (.write w ")")) //--- -(function __clojure_core_fn_3343(){ -return (clojure.JS.def(clojure.core,"print_ctor",(function __clojure_core_fn_3343_print_ctor_3345(o_1,print_args_2,w_3){ +(function __clojure_core_fn_4143(){ +return (clojure.JS.def(clojure.core,"print_ctor",(function __clojure_core_fn_4143_print_ctor_4145(o_1,print_args_2,w_3){ return ((w_3).write("#=("), (w_3).write(clojure.lang.RT.className(clojure.core.class_.apply(null,[o_1]))), (w_3).write(". "), @@ -2925,8 +3073,8 @@ print_args_2.apply(null,[o_1,w_3]), //====== //(defmethod print-method :default [o w] (.write w "#<") (.write w (RT/simpleClassName (class o))) (.write w " ") (.write w (str o)) (.write w ">")) //--- -(function __clojure_core_fn_3349(){ -return ((clojure.core.print_method).addMethod(clojure.core.keyword("","default"),(function __clojure_core_fn_3349_fn_3351(o_1,w_2){ +(function __clojure_core_fn_4149(){ +return ((clojure.core.print_method).addMethod(clojure.core.keyword("","default"),(function __clojure_core_fn_4149_fn_4151(o_1,w_2){ return ((w_2).write("#<"), (w_2).write(clojure.lang.RT.simpleClassName(clojure.core.class_.apply(null,[o_1]))), (w_2).write(" "), @@ -2936,177 +3084,177 @@ return ((w_2).write("#<"), //====== //(defmethod print-method clojure.lang.Keyword [o w] (.write w (str o))) //--- -(function __clojure_core_fn_3355(){ -return ((clojure.core.print_method).addMethod(clojure.lang.Keyword,(function __clojure_core_fn_3355_fn_3357(o_1,w_2){ +(function __clojure_core_fn_4155(){ +return ((clojure.core.print_method).addMethod(clojure.lang.Keyword,(function __clojure_core_fn_4155_fn_4157(o_1,w_2){ return ((w_2).write(clojure.core.str.apply(null,[o_1])))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.Keyword [o w] (print-method o w)) //--- -(function __clojure_core_fn_3361(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.Keyword,(function __clojure_core_fn_3361_fn_3363(o_1,w_2){ +(function __clojure_core_fn_4161(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.Keyword,(function __clojure_core_fn_4161_fn_4163(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-method Number [o w] (.write w (str o))) //--- -(function __clojure_core_fn_3367(){ -return ((clojure.core.print_method).addMethod(java.lang.Number,(function __clojure_core_fn_3367_fn_3369(o_1,w_2){ +(function __clojure_core_fn_4167(){ +return ((clojure.core.print_method).addMethod(java.lang.Number,(function __clojure_core_fn_4167_fn_4169(o_1,w_2){ return ((w_2).write(clojure.core.str.apply(null,[o_1])))})))}).apply(null,[]); //====== //(defmethod print-dup Number [o w] (print-ctor o (fn [o w] (print-dup (str o) w)) w)) //--- -(function __clojure_core_fn_3373(){ -return ((clojure.core.print_dup).addMethod(java.lang.Number,(function __clojure_core_fn_3373_fn_3375(o_1,w_2){ -return (clojure.core.print_ctor.apply(null,[o_1,(function __clojure_core_fn_3373_fn_3375_fn_3377(o_1,w_2){ +(function __clojure_core_fn_4173(){ +return ((clojure.core.print_dup).addMethod(java.lang.Number,(function __clojure_core_fn_4173_fn_4175(o_1,w_2){ +return (clojure.core.print_ctor.apply(null,[o_1,(function __clojure_core_fn_4173_fn_4175_fn_4177(o_1,w_2){ return (clojure.core.print_dup.apply(null,[clojure.core.str.apply(null,[o_1]),w_2]))}),w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.AFn [o w] (print-ctor o (fn [o w]) w)) //--- -(function __clojure_core_fn_3382(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.AFn,(function __clojure_core_fn_3382_fn_3384(o_1,w_2){ -return (clojure.core.print_ctor.apply(null,[o_1,(function __clojure_core_fn_3382_fn_3384_fn_3386(o_1,w_2){ +(function __clojure_core_fn_4182(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.AFn,(function __clojure_core_fn_4182_fn_4184(o_1,w_2){ +return (clojure.core.print_ctor.apply(null,[o_1,(function __clojure_core_fn_4182_fn_4184_fn_4186(o_1,w_2){ return (null)}),w_2]))})))}).apply(null,[]); //====== //(prefer-method print-dup clojure.lang.IPersistentCollection clojure.lang.AFn) //--- -(function __clojure_core_fn_3391(){ -return ((clojure.core.print_dup).preferMethod(clojure.lang.IPersistentCollection,clojure.lang.AFn))}).apply(null,[]); +(function __clojure_core_fn_4191(){ +return (clojure.core.prefer_method.apply(null,[clojure.core.print_dup,clojure.lang.IPersistentCollection,clojure.lang.AFn]))}).apply(null,[]); //====== //(prefer-method print-dup java.util.Map clojure.lang.AFn) //--- -(function __clojure_core_fn_3394(){ -return ((clojure.core.print_dup).preferMethod(java.util.Map,clojure.lang.AFn))}).apply(null,[]); +(function __clojure_core_fn_4194(){ +return (clojure.core.prefer_method.apply(null,[clojure.core.print_dup,java.util.Map,clojure.lang.AFn]))}).apply(null,[]); //====== //(prefer-method print-dup java.util.Collection clojure.lang.AFn) //--- -(function __clojure_core_fn_3397(){ -return ((clojure.core.print_dup).preferMethod(java.util.Collection,clojure.lang.AFn))}).apply(null,[]); +(function __clojure_core_fn_4197(){ +return (clojure.core.prefer_method.apply(null,[clojure.core.print_dup,java.util.Collection,clojure.lang.AFn]))}).apply(null,[]); //====== //(defmethod print-method Boolean [o w] (.write w (str o))) //--- -(function __clojure_core_fn_3400(){ -return ((clojure.core.print_method).addMethod(java.lang.Boolean,(function __clojure_core_fn_3400_fn_3402(o_1,w_2){ +(function __clojure_core_fn_4200(){ +return ((clojure.core.print_method).addMethod(java.lang.Boolean,(function __clojure_core_fn_4200_fn_4202(o_1,w_2){ return ((w_2).write(clojure.core.str.apply(null,[o_1])))})))}).apply(null,[]); //====== //(defmethod print-dup Boolean [o w] (print-method o w)) //--- -(function __clojure_core_fn_3406(){ -return ((clojure.core.print_dup).addMethod(java.lang.Boolean,(function __clojure_core_fn_3406_fn_3408(o_1,w_2){ +(function __clojure_core_fn_4206(){ +return ((clojure.core.print_dup).addMethod(java.lang.Boolean,(function __clojure_core_fn_4206_fn_4208(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defn print-simple [o w] (print-meta o w) (.write w (str o))) //--- -(function __clojure_core_fn_3412(){ -return (clojure.JS.def(clojure.core,"print_simple",(function __clojure_core_fn_3412_print_simple_3414(o_1,w_2){ +(function __clojure_core_fn_4212(){ +return (clojure.JS.def(clojure.core,"print_simple",(function __clojure_core_fn_4212_print_simple_4214(o_1,w_2){ return (clojure.core.print_meta.apply(null,[o_1,w_2]), (w_2).write(clojure.core.str.apply(null,[o_1])))})))}).apply(null,[]); //====== //(defmethod print-method clojure.lang.Symbol [o w] (print-simple o w)) //--- -(function __clojure_core_fn_3418(){ -return ((clojure.core.print_method).addMethod(clojure.lang.Symbol,(function __clojure_core_fn_3418_fn_3420(o_1,w_2){ +(function __clojure_core_fn_4218(){ +return ((clojure.core.print_method).addMethod(clojure.lang.Symbol,(function __clojure_core_fn_4218_fn_4220(o_1,w_2){ return (clojure.core.print_simple.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.Symbol [o w] (print-method o w)) //--- -(function __clojure_core_fn_3424(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.Symbol,(function __clojure_core_fn_3424_fn_3426(o_1,w_2){ +(function __clojure_core_fn_4224(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.Symbol,(function __clojure_core_fn_4224_fn_4226(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-method clojure.lang.Var [o w] (print-simple o w)) //--- -(function __clojure_core_fn_3430(){ -return ((clojure.core.print_method).addMethod(clojure.lang.Var,(function __clojure_core_fn_3430_fn_3432(o_1,w_2){ +(function __clojure_core_fn_4230(){ +return ((clojure.core.print_method).addMethod(clojure.lang.Var,(function __clojure_core_fn_4230_fn_4232(o_1,w_2){ return (clojure.core.print_simple.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.Var [o w] (.write w (str "#=(var " (.name (.ns o)) "/" (.sym o) ")"))) //--- -(function __clojure_core_fn_3436(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.Var,(function __clojure_core_fn_3436_fn_3438(o_1,w_2){ +(function __clojure_core_fn_4236(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.Var,(function __clojure_core_fn_4236_fn_4238(o_1,w_2){ return ((w_2).write(clojure.core.str.apply(null,["#=(var ",clojure.JS.getOrRun(clojure.JS.getOrRun(o_1,"ns"),"name"),"/",clojure.JS.getOrRun(o_1,"sym"),")"])))})))}).apply(null,[]); //====== //(defmethod print-method clojure.lang.ISeq [o w] (print-meta o w) (print-sequential "(" pr-on " " ")" o w)) //--- -(function __clojure_core_fn_3442(){ -return ((clojure.core.print_method).addMethod(clojure.lang.ISeq,(function __clojure_core_fn_3442_fn_3444(o_1,w_2){ +(function __clojure_core_fn_4242(){ +return ((clojure.core.print_method).addMethod(clojure.lang.ISeq,(function __clojure_core_fn_4242_fn_4244(o_1,w_2){ return (clojure.core.print_meta.apply(null,[o_1,w_2]), clojure.core.print_sequential.apply(null,["(",clojure.core.pr_on," ",")",o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.ISeq [o w] (print-method o w)) //--- -(function __clojure_core_fn_3448(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.ISeq,(function __clojure_core_fn_3448_fn_3450(o_1,w_2){ +(function __clojure_core_fn_4248(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.ISeq,(function __clojure_core_fn_4248_fn_4250(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.IPersistentList [o w] (print-method o w)) //--- -(function __clojure_core_fn_3454(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.IPersistentList,(function __clojure_core_fn_3454_fn_3456(o_1,w_2){ +(function __clojure_core_fn_4254(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.IPersistentList,(function __clojure_core_fn_4254_fn_4256(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(prefer-method print-method clojure.lang.IPersistentList clojure.lang.ISeq) //--- -(function __clojure_core_fn_3460(){ -return ((clojure.core.print_method).preferMethod(clojure.lang.IPersistentList,clojure.lang.ISeq))}).apply(null,[]); +(function __clojure_core_fn_4260(){ +return (clojure.core.prefer_method.apply(null,[clojure.core.print_method,clojure.lang.IPersistentList,clojure.lang.ISeq]))}).apply(null,[]); //====== //(prefer-method print-dup clojure.lang.IPersistentList clojure.lang.ISeq) //--- -(function __clojure_core_fn_3463(){ -return ((clojure.core.print_dup).preferMethod(clojure.lang.IPersistentList,clojure.lang.ISeq))}).apply(null,[]); +(function __clojure_core_fn_4263(){ +return (clojure.core.prefer_method.apply(null,[clojure.core.print_dup,clojure.lang.IPersistentList,clojure.lang.ISeq]))}).apply(null,[]); //====== //(defmethod print-method clojure.lang.IPersistentList [o w] (print-meta o w) (print-sequential "(" print-method " " ")" o w)) //--- -(function __clojure_core_fn_3466(){ -return ((clojure.core.print_method).addMethod(clojure.lang.IPersistentList,(function __clojure_core_fn_3466_fn_3468(o_1,w_2){ +(function __clojure_core_fn_4266(){ +return ((clojure.core.print_method).addMethod(clojure.lang.IPersistentList,(function __clojure_core_fn_4266_fn_4268(o_1,w_2){ return (clojure.core.print_meta.apply(null,[o_1,w_2]), clojure.core.print_sequential.apply(null,["(",clojure.core.print_method," ",")",o_1,w_2]))})))}).apply(null,[]); //====== -//(defmethod print-method java.util.Collection [o w] (print-ctor o (fn* [p1__3472 p2__3473] (print-sequential "[" print-method " " "]" p1__3472 p2__3473)) w)) +//(defmethod print-method java.util.Collection [o w] (print-ctor o (fn* [p1__4272 p2__4273] (print-sequential "[" print-method " " "]" p1__4272 p2__4273)) w)) //--- -(function __clojure_core_fn_3474(){ -return ((clojure.core.print_method).addMethod(java.util.Collection,(function __clojure_core_fn_3474_fn_3476(o_1,w_2){ -return (clojure.core.print_ctor.apply(null,[o_1,(function __clojure_core_fn_3474_fn_3476_fn_3478(p1__3472_1,p2__3473_2){ -return (clojure.core.print_sequential.apply(null,["[",clojure.core.print_method," ","]",p1__3472_1,p2__3473_2]))}),w_2]))})))}).apply(null,[]); +(function __clojure_core_fn_4274(){ +return ((clojure.core.print_method).addMethod(java.util.Collection,(function __clojure_core_fn_4274_fn_4276(o_1,w_2){ +return (clojure.core.print_ctor.apply(null,[o_1,(function __clojure_core_fn_4274_fn_4276_fn_4278(p1__4272_1,p2__4273_2){ +return (clojure.core.print_sequential.apply(null,["[",clojure.core.print_method," ","]",p1__4272_1,p2__4273_2]))}),w_2]))})))}).apply(null,[]); //====== //(prefer-method print-method clojure.lang.IPersistentCollection java.util.Collection) //--- -(function __clojure_core_fn_3483(){ -return ((clojure.core.print_method).preferMethod(clojure.lang.IPersistentCollection,java.util.Collection))}).apply(null,[]); +(function __clojure_core_fn_4283(){ +return (clojure.core.prefer_method.apply(null,[clojure.core.print_method,clojure.lang.IPersistentCollection,java.util.Collection]))}).apply(null,[]); //====== -//(defmethod print-dup java.util.Collection [o w] (print-ctor o (fn* [p1__3486 p2__3487] (print-sequential "[" print-dup " " "]" p1__3486 p2__3487)) w)) +//(defmethod print-dup java.util.Collection [o w] (print-ctor o (fn* [p1__4286 p2__4287] (print-sequential "[" print-dup " " "]" p1__4286 p2__4287)) w)) //--- -(function __clojure_core_fn_3488(){ -return ((clojure.core.print_dup).addMethod(java.util.Collection,(function __clojure_core_fn_3488_fn_3490(o_1,w_2){ -return (clojure.core.print_ctor.apply(null,[o_1,(function __clojure_core_fn_3488_fn_3490_fn_3492(p1__3486_1,p2__3487_2){ -return (clojure.core.print_sequential.apply(null,["[",clojure.core.print_dup," ","]",p1__3486_1,p2__3487_2]))}),w_2]))})))}).apply(null,[]); +(function __clojure_core_fn_4288(){ +return ((clojure.core.print_dup).addMethod(java.util.Collection,(function __clojure_core_fn_4288_fn_4290(o_1,w_2){ +return (clojure.core.print_ctor.apply(null,[o_1,(function __clojure_core_fn_4288_fn_4290_fn_4292(p1__4286_1,p2__4287_2){ +return (clojure.core.print_sequential.apply(null,["[",clojure.core.print_dup," ","]",p1__4286_1,p2__4287_2]))}),w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.IPersistentCollection [o w] (print-meta o w) (.write w "#=(") (.write w (RT/className (class o))) (.write w "/create ") (print-sequential "[" print-dup " " "]" o w) (.write w ")")) //--- -(function __clojure_core_fn_3497(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.IPersistentCollection,(function __clojure_core_fn_3497_fn_3499(o_1,w_2){ +(function __clojure_core_fn_4297(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.IPersistentCollection,(function __clojure_core_fn_4297_fn_4299(o_1,w_2){ return (clojure.core.print_meta.apply(null,[o_1,w_2]), (w_2).write("#=("), (w_2).write(clojure.lang.RT.className(clojure.core.class_.apply(null,[o_1]))), @@ -3117,26 +3265,26 @@ clojure.core.print_sequential.apply(null,["[",clojure.core.print_dup," ","]",o_1 //====== //(prefer-method print-dup clojure.lang.IPersistentCollection java.util.Collection) //--- -(function __clojure_core_fn_3503(){ -return ((clojure.core.print_dup).preferMethod(clojure.lang.IPersistentCollection,java.util.Collection))}).apply(null,[]); +(function __clojure_core_fn_4303(){ +return (clojure.core.prefer_method.apply(null,[clojure.core.print_dup,clojure.lang.IPersistentCollection,java.util.Collection]))}).apply(null,[]); //====== -//(def char-escape-string {\" "\\\"", \backspace "\\b", \tab "\\t", \newline "\\n", \formfeed "\\f", \return "\\r", \\ "\\\\"}) +//(def char-escape-string {\newline "\\n", \tab "\\t", \return "\\r", \" "\\\"", \\ "\\\\", \formfeed "\\f", \backspace "\\b"}) //--- -(function __clojure_core_fn_3506(){ -return (clojure.JS.def(clojure.core,"char_escape_string",clojure.core.hash_map("\"","\\\"","\b","\\b","\t","\\t","\n","\\n","\f","\\f","\r","\\r","\\","\\\\")))}).apply(null,[]); +(function __clojure_core_fn_4306(){ +return (clojure.JS.def(clojure.core,"char_escape_string",clojure.core.hash_map("\n","\\n","\t","\\t","\r","\\r","\"","\\\"","\\","\\\\","\f","\\f","\b","\\b")))}).apply(null,[]); //====== //(defmethod print-method String [s w] (if (or *print-dup* *print-readably*) (do (.append w \") (dotimes [n (count s)] (let [c (.charAt s n) e (char-escape-string c)] (if e (.write w e) (.append w c)))) (.append w \")) (.write w s)) nil) //--- -(function __clojure_core_fn_3509(){ -return ((clojure.core.print_method).addMethod(java.lang.String,(function __clojure_core_fn_3509_fn_3511(s_1,w_2){ -var n__1481_3,c_5,or__424_3,e_6,n_4; -return (((((or__424_3=clojure.core._STAR_print_dup_STAR_), -((or__424_3)?(or__424_3):(clojure.core._STAR_print_readably_STAR_))))?((w_2).append("\""), -((n__1481_3=clojure.lang.RT.intCast(clojure.core.count.apply(null,[s_1]))), +(function __clojure_core_fn_4309(){ +return ((clojure.core.print_method).addMethod(java.lang.String,(function __clojure_core_fn_4309_fn_4311(s_1,w_2){ +var or__974__auto___3,n__2124__auto___3,n_4,c_5,e_6; +return (((((or__974__auto___3=clojure.core._STAR_print_dup_STAR_), +((or__974__auto___3)?(or__974__auto___3):(clojure.core._STAR_print_readably_STAR_))))?((w_2).append("\""), +((n__2124__auto___3=clojure.lang.RT.intCast(clojure.core.count.apply(null,[s_1]))), ((function __loop(){var _rtn,_cnt;(n_4=clojure.lang.RT.intCast((0)));do{_cnt=0; -_rtn=((clojure.lang.Numbers.lt(n_4,n__1481_3))?(((c_5=(s_1).charAt(n_4)), +_rtn=((clojure.lang.Numbers.lt(n_4,n__2124__auto___3))?(((c_5=(s_1).charAt(n_4)), (e_6=clojure.core.char_escape_string.apply(null,[c_5])), ((e_6)?((w_2).write(e_6)):((w_2).append(c_5)))), (_cnt=1,_rtn=[clojure.lang.Numbers.unchecked_inc(n_4)],n_4=_rtn[0])):(null))}while(_cnt);return _rtn;})())), @@ -3146,24 +3294,24 @@ null)})))}).apply(null,[]); //====== //(defmethod print-dup String [s w] (print-method s w)) //--- -(function __clojure_core_fn_3515(){ -return ((clojure.core.print_dup).addMethod(java.lang.String,(function __clojure_core_fn_3515_fn_3517(s_1,w_2){ +(function __clojure_core_fn_4317(){ +return ((clojure.core.print_dup).addMethod(java.lang.String,(function __clojure_core_fn_4317_fn_4319(s_1,w_2){ return (clojure.core.print_method.apply(null,[s_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-method clojure.lang.IPersistentVector [v w] (print-meta v w) (print-sequential "[" pr-on " " "]" v w)) //--- -(function __clojure_core_fn_3521(){ -return ((clojure.core.print_method).addMethod(clojure.lang.IPersistentVector,(function __clojure_core_fn_3521_fn_3523(v_1,w_2){ +(function __clojure_core_fn_4323(){ +return ((clojure.core.print_method).addMethod(clojure.lang.IPersistentVector,(function __clojure_core_fn_4323_fn_4325(v_1,w_2){ return (clojure.core.print_meta.apply(null,[v_1,w_2]), clojure.core.print_sequential.apply(null,["[",clojure.core.pr_on," ","]",v_1,w_2]))})))}).apply(null,[]); //====== //(defn- print-map [m print-one w] (print-sequential "{" (fn [e w] (do (print-one (key e) w) (.append w \space) (print-one (val e) w))) ", " "}" (seq m) w)) //--- -(function __clojure_core_fn_3527(){ -return (clojure.JS.def(clojure.core,"print_map",(function __clojure_core_fn_3527_print_map_3529(m_1,print_one_2,w_3){ -return (clojure.core.print_sequential.apply(null,["{",(function __clojure_core_fn_3527_print_map_3529_fn_3531(e_1,w_2){ +(function __clojure_core_fn_4329(){ +return (clojure.JS.def(clojure.core,"print_map",(function __clojure_core_fn_4329_print_map_4331(m_1,print_one_2,w_3){ +return (clojure.core.print_sequential.apply(null,["{",(function __clojure_core_fn_4329_print_map_4331_fn_4333(e_1,w_2){ return (print_one_2.apply(null,[clojure.core.key.apply(null,[e_1]),w_2]), (w_2).append(" "), print_one_2.apply(null,[clojure.core.val.apply(null,[e_1]),w_2]))}),", ","}",clojure.core.seq.apply(null,[m_1]),w_3]))})))}).apply(null,[]); @@ -3171,38 +3319,38 @@ print_one_2.apply(null,[clojure.core.val.apply(null,[e_1]),w_2]))}),", ","}",clo //====== //(defmethod print-method clojure.lang.IPersistentMap [m w] (print-meta m w) (print-map m pr-on w)) //--- -(function __clojure_core_fn_3536(){ -return ((clojure.core.print_method).addMethod(clojure.lang.IPersistentMap,(function __clojure_core_fn_3536_fn_3538(m_1,w_2){ +(function __clojure_core_fn_4338(){ +return ((clojure.core.print_method).addMethod(clojure.lang.IPersistentMap,(function __clojure_core_fn_4338_fn_4340(m_1,w_2){ return (clojure.core.print_meta.apply(null,[m_1,w_2]), clojure.core.print_map.apply(null,[m_1,clojure.core.pr_on,w_2]))})))}).apply(null,[]); //====== -//(defmethod print-method java.util.Map [m w] (print-ctor m (fn* [p1__3542 p2__3543] (print-map (seq p1__3542) print-method p2__3543)) w)) +//(defmethod print-method java.util.Map [m w] (print-ctor m (fn* [p1__4344 p2__4345] (print-map (seq p1__4344) print-method p2__4345)) w)) //--- -(function __clojure_core_fn_3544(){ -return ((clojure.core.print_method).addMethod(java.util.Map,(function __clojure_core_fn_3544_fn_3546(m_1,w_2){ -return (clojure.core.print_ctor.apply(null,[m_1,(function __clojure_core_fn_3544_fn_3546_fn_3548(p1__3542_1,p2__3543_2){ -return (clojure.core.print_map.apply(null,[clojure.core.seq.apply(null,[p1__3542_1]),clojure.core.print_method,p2__3543_2]))}),w_2]))})))}).apply(null,[]); +(function __clojure_core_fn_4346(){ +return ((clojure.core.print_method).addMethod(java.util.Map,(function __clojure_core_fn_4346_fn_4348(m_1,w_2){ +return (clojure.core.print_ctor.apply(null,[m_1,(function __clojure_core_fn_4346_fn_4348_fn_4350(p1__4344_1,p2__4345_2){ +return (clojure.core.print_map.apply(null,[clojure.core.seq.apply(null,[p1__4344_1]),clojure.core.print_method,p2__4345_2]))}),w_2]))})))}).apply(null,[]); //====== //(prefer-method print-method clojure.lang.IPersistentMap java.util.Map) //--- -(function __clojure_core_fn_3553(){ -return ((clojure.core.print_method).preferMethod(clojure.lang.IPersistentMap,java.util.Map))}).apply(null,[]); +(function __clojure_core_fn_4355(){ +return (clojure.core.prefer_method.apply(null,[clojure.core.print_method,clojure.lang.IPersistentMap,java.util.Map]))}).apply(null,[]); //====== -//(defmethod print-dup java.util.Map [m w] (print-ctor m (fn* [p1__3556 p2__3557] (print-map (seq p1__3556) print-dup p2__3557)) w)) +//(defmethod print-dup java.util.Map [m w] (print-ctor m (fn* [p1__4358 p2__4359] (print-map (seq p1__4358) print-dup p2__4359)) w)) //--- -(function __clojure_core_fn_3558(){ -return ((clojure.core.print_dup).addMethod(java.util.Map,(function __clojure_core_fn_3558_fn_3560(m_1,w_2){ -return (clojure.core.print_ctor.apply(null,[m_1,(function __clojure_core_fn_3558_fn_3560_fn_3562(p1__3556_1,p2__3557_2){ -return (clojure.core.print_map.apply(null,[clojure.core.seq.apply(null,[p1__3556_1]),clojure.core.print_dup,p2__3557_2]))}),w_2]))})))}).apply(null,[]); +(function __clojure_core_fn_4360(){ +return ((clojure.core.print_dup).addMethod(java.util.Map,(function __clojure_core_fn_4360_fn_4362(m_1,w_2){ +return (clojure.core.print_ctor.apply(null,[m_1,(function __clojure_core_fn_4360_fn_4362_fn_4364(p1__4358_1,p2__4359_2){ +return (clojure.core.print_map.apply(null,[clojure.core.seq.apply(null,[p1__4358_1]),clojure.core.print_dup,p2__4359_2]))}),w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.IPersistentMap [m w] (print-meta m w) (.write w "#=(") (.write w (RT/className (class m))) (.write w "/create ") (print-map m print-dup w) (.write w ")")) //--- -(function __clojure_core_fn_3567(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.IPersistentMap,(function __clojure_core_fn_3567_fn_3569(m_1,w_2){ +(function __clojure_core_fn_4369(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.IPersistentMap,(function __clojure_core_fn_4369_fn_4371(m_1,w_2){ return (clojure.core.print_meta.apply(null,[m_1,w_2]), (w_2).write("#=("), (w_2).write(clojure.lang.RT.className(clojure.core.class_.apply(null,[m_1]))), @@ -3213,39 +3361,39 @@ clojure.core.print_map.apply(null,[m_1,clojure.core.print_dup,w_2]), //====== //(prefer-method print-dup clojure.lang.IPersistentCollection java.util.Map) //--- -(function __clojure_core_fn_3573(){ -return ((clojure.core.print_dup).preferMethod(clojure.lang.IPersistentCollection,java.util.Map))}).apply(null,[]); +(function __clojure_core_fn_4375(){ +return (clojure.core.prefer_method.apply(null,[clojure.core.print_dup,clojure.lang.IPersistentCollection,java.util.Map]))}).apply(null,[]); //====== //(defmethod print-method clojure.lang.IPersistentSet [s w] (print-meta s w) (print-sequential "#{" pr-on " " "}" (seq s) w)) //--- -(function __clojure_core_fn_3576(){ -return ((clojure.core.print_method).addMethod(clojure.lang.IPersistentSet,(function __clojure_core_fn_3576_fn_3578(s_1,w_2){ +(function __clojure_core_fn_4378(){ +return ((clojure.core.print_method).addMethod(clojure.lang.IPersistentSet,(function __clojure_core_fn_4378_fn_4380(s_1,w_2){ return (clojure.core.print_meta.apply(null,[s_1,w_2]), clojure.core.print_sequential.apply(null,["#{",clojure.core.pr_on," ","}",clojure.core.seq.apply(null,[s_1]),w_2]))})))}).apply(null,[]); //====== -//(defmethod print-method java.util.Set [s w] (print-ctor s (fn* [p1__3582 p2__3583] (print-sequential "#{" print-method " " "}" (seq p1__3582) p2__3583)) w)) +//(defmethod print-method java.util.Set [s w] (print-ctor s (fn* [p1__4384 p2__4385] (print-sequential "#{" print-method " " "}" (seq p1__4384) p2__4385)) w)) //--- -(function __clojure_core_fn_3584(){ -return ((clojure.core.print_method).addMethod(java.util.Set,(function __clojure_core_fn_3584_fn_3586(s_1,w_2){ -return (clojure.core.print_ctor.apply(null,[s_1,(function __clojure_core_fn_3584_fn_3586_fn_3588(p1__3582_1,p2__3583_2){ -return (clojure.core.print_sequential.apply(null,["#{",clojure.core.print_method," ","}",clojure.core.seq.apply(null,[p1__3582_1]),p2__3583_2]))}),w_2]))})))}).apply(null,[]); +(function __clojure_core_fn_4386(){ +return ((clojure.core.print_method).addMethod(java.util.Set,(function __clojure_core_fn_4386_fn_4388(s_1,w_2){ +return (clojure.core.print_ctor.apply(null,[s_1,(function __clojure_core_fn_4386_fn_4388_fn_4390(p1__4384_1,p2__4385_2){ +return (clojure.core.print_sequential.apply(null,["#{",clojure.core.print_method," ","}",clojure.core.seq.apply(null,[p1__4384_1]),p2__4385_2]))}),w_2]))})))}).apply(null,[]); //====== -//(def char-name-string {\space "space", \backspace "backspace", \tab "tab", \newline "newline", \formfeed "formfeed", \return "return"}) +//(def char-name-string {\newline "newline", \tab "tab", \space "space", \backspace "backspace", \formfeed "formfeed", \return "return"}) //--- -(function __clojure_core_fn_3593(){ -return (clojure.JS.def(clojure.core,"char_name_string",clojure.core.hash_map(" ","space","\b","backspace","\t","tab","\n","newline","\f","formfeed","\r","return")))}).apply(null,[]); +(function __clojure_core_fn_4395(){ +return (clojure.JS.def(clojure.core,"char_name_string",clojure.core.hash_map("\n","newline","\t","tab"," ","space","\b","backspace","\f","formfeed","\r","return")))}).apply(null,[]); //====== //(defmethod print-method java.lang.Character [c w] (if (or *print-dup* *print-readably*) (do (.append w \\) (let [n (char-name-string c)] (if n (.write w n) (.append w c)))) (.append w c)) nil) //--- -(function __clojure_core_fn_3596(){ -return ((clojure.core.print_method).addMethod(java.lang.Character,(function __clojure_core_fn_3596_fn_3598(c_1,w_2){ -var or__424_3,n_3; -return (((((or__424_3=clojure.core._STAR_print_dup_STAR_), -((or__424_3)?(or__424_3):(clojure.core._STAR_print_readably_STAR_))))?((w_2).append("\\"), +(function __clojure_core_fn_4398(){ +return ((clojure.core.print_method).addMethod(java.lang.Character,(function __clojure_core_fn_4398_fn_4400(c_1,w_2){ +var or__974__auto___3,n_3; +return (((((or__974__auto___3=clojure.core._STAR_print_dup_STAR_), +((or__974__auto___3)?(or__974__auto___3):(clojure.core._STAR_print_readably_STAR_))))?((w_2).append("\\"), ((n_3=clojure.core.char_name_string.apply(null,[c_1])), ((n_3)?((w_2).write(n_3)):((w_2).append(c_1))))):((w_2).append(c_1))), null)})))}).apply(null,[]); @@ -3253,112 +3401,119 @@ null)})))}).apply(null,[]); //====== //(defmethod print-dup java.lang.Character [c w] (print-method c w)) //--- -(function __clojure_core_fn_3602(){ -return ((clojure.core.print_dup).addMethod(java.lang.Character,(function __clojure_core_fn_3602_fn_3604(c_1,w_2){ +(function __clojure_core_fn_4405(){ +return ((clojure.core.print_dup).addMethod(java.lang.Character,(function __clojure_core_fn_4405_fn_4407(c_1,w_2){ return (clojure.core.print_method.apply(null,[c_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup java.lang.Integer [o w] (print-method o w)) //--- -(function __clojure_core_fn_3608(){ -return ((clojure.core.print_dup).addMethod(java.lang.Integer,(function __clojure_core_fn_3608_fn_3610(o_1,w_2){ +(function __clojure_core_fn_4411(){ +return ((clojure.core.print_dup).addMethod(java.lang.Integer,(function __clojure_core_fn_4411_fn_4413(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup java.lang.Double [o w] (print-method o w)) //--- -(function __clojure_core_fn_3614(){ -return ((clojure.core.print_dup).addMethod(java.lang.Double,(function __clojure_core_fn_3614_fn_3616(o_1,w_2){ +(function __clojure_core_fn_4417(){ +return ((clojure.core.print_dup).addMethod(java.lang.Double,(function __clojure_core_fn_4417_fn_4419(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.Ratio [o w] (print-method o w)) //--- -(function __clojure_core_fn_3620(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.Ratio,(function __clojure_core_fn_3620_fn_3622(o_1,w_2){ +(function __clojure_core_fn_4423(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.Ratio,(function __clojure_core_fn_4423_fn_4425(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup java.math.BigDecimal [o w] (print-method o w)) //--- -(function __clojure_core_fn_3626(){ -return ((clojure.core.print_dup).addMethod(java.math.BigDecimal,(function __clojure_core_fn_3626_fn_3628(o_1,w_2){ +(function __clojure_core_fn_4429(){ +return ((clojure.core.print_dup).addMethod(java.math.BigDecimal,(function __clojure_core_fn_4429_fn_4431(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.PersistentHashMap [o w] (print-method o w)) //--- -(function __clojure_core_fn_3632(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.PersistentHashMap,(function __clojure_core_fn_3632_fn_3634(o_1,w_2){ +(function __clojure_core_fn_4435(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.PersistentHashMap,(function __clojure_core_fn_4435_fn_4437(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.PersistentHashSet [o w] (print-method o w)) //--- -(function __clojure_core_fn_3638(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.PersistentHashSet,(function __clojure_core_fn_3638_fn_3640(o_1,w_2){ +(function __clojure_core_fn_4441(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.PersistentHashSet,(function __clojure_core_fn_4441_fn_4443(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.PersistentVector [o w] (print-method o w)) //--- -(function __clojure_core_fn_3644(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.PersistentVector,(function __clojure_core_fn_3644_fn_3646(o_1,w_2){ +(function __clojure_core_fn_4447(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.PersistentVector,(function __clojure_core_fn_4447_fn_4449(o_1,w_2){ +return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); + +//====== +//(defmethod print-dup clojure.lang.LazilyPersistentVector [o w] (print-method o w)) +//--- +(function __clojure_core_fn_4453(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.LazilyPersistentVector,(function __clojure_core_fn_4453_fn_4455(o_1,w_2){ return (clojure.core.print_method.apply(null,[o_1,w_2]))})))}).apply(null,[]); -// Skipping: (def primitives-classnames {Double/TYPE "Double/TYPE", Character/TYPE "Character/TYPE", Byte/TYPE "Byte/TYPE", Boolean/TYPE "Boolean/TYPE", Short/TYPE "Short/TYPE", Float/TYPE "Float/TYPE", Long/TYPE "Long/TYPE", Integer/TYPE "Integer/TYPE"}) +// Skipping: (def primitives-classnames {Float/TYPE "Float/TYPE", Integer/TYPE "Integer/TYPE", Long/TYPE "Long/TYPE", Boolean/TYPE "Boolean/TYPE", Character/TYPE "Character/TYPE", Double/TYPE "Double/TYPE", Byte/TYPE "Byte/TYPE", Short/TYPE "Short/TYPE"}) // Skipping: (defmethod print-method Class [c w] (.write w (RT/className c))) // Skipping: (defmethod print-dup Class [c w] (cond (.isPrimitive c) (do (.write w "#=(identity ") (.write w (primitives-classnames c)) (.write w ")")) (.isArray c) (do (.write w "#=(java.lang.Class/forName \"") (.write w (RT/className c)) (.write w "\")")) :else (do (.write w "#=") (.write w (RT/className c))))) //====== //(defmethod print-method java.math.BigDecimal [b w] (.write w (str b)) (.write w "M")) //--- -(function __clojure_core_fn_3665(){ -return ((clojure.core.print_method).addMethod(java.math.BigDecimal,(function __clojure_core_fn_3665_fn_3667(b_1,w_2){ +(function __clojure_core_fn_4474(){ +return ((clojure.core.print_method).addMethod(java.math.BigDecimal,(function __clojure_core_fn_4474_fn_4476(b_1,w_2){ return ((w_2).write(clojure.core.str.apply(null,[b_1])), (w_2).write("M"))})))}).apply(null,[]); //====== //(defmethod print-method java.util.regex.Pattern [p w] (.write w "#\"") (loop [[c & r :as s] (seq (.pattern p)) qmode false] (when s (cond (= c \\) (let [[c2 & r2] r] (.append w \\) (.append w c2) (if qmode (recur r2 (not= c2 \E)) (recur r2 (= c2 \Q)))) (= c \") (do (if qmode (.write w "\\E\\\"\\Q") (.write w "\\\"")) (recur r qmode)) :else (do (.append w c) (recur r qmode))))) (.append w \")) //--- -(function __clojure_core_fn_3671(){ -return ((clojure.core.print_method).addMethod(java.util.regex.Pattern,(function __clojure_core_fn_3671_fn_3673(p_1,w_2){ -var r2_18,vec__3678_11,qmode_8,s_14,qmode_10,s_7,r_6,r_13,c2_17,c_5,c_12,G__3676_3,qmode_15,vec__3679_16,G__3676_9,vec__3677_4; +(function __clojure_core_fn_4480(){ +return ((clojure.core.print_method).addMethod(java.util.regex.Pattern,(function __clojure_core_fn_4480_fn_4482(p_1,w_2){ +var G__4485_9,qmode_8,c_5,s_14,s_7,vec__4486_4,vec__4488_16,G__4485_3,r2_18,r_6,vec__4487_11,c_12,qmode_15,qmode_10,c2_17,r_13; return ((w_2).write("#\""), -((G__3676_3=clojure.core.seq.apply(null,[(p_1).pattern()])), -(vec__3677_4=G__3676_3), -(c_5=clojure.core.nth.apply(null,[vec__3677_4,(0),null])), -(r_6=clojure.core.nthrest.apply(null,[vec__3677_4,(1)])), -(s_7=vec__3677_4), +((G__4485_3=clojure.core.seq.apply(null,[(p_1).pattern()])), +(vec__4486_4=G__4485_3), +(c_5=clojure.core.nth.apply(null,[vec__4486_4,(0),null])), +(r_6=clojure.core.nthrest.apply(null,[vec__4486_4,(1)])), +(s_7=vec__4486_4), (qmode_8=false), -((function __loop(){var _rtn,_cnt;(G__3676_9=G__3676_3), +((function __loop(){var _rtn,_cnt;(G__4485_9=G__4485_3), (qmode_10=qmode_8);do{_cnt=0; -_rtn=((vec__3678_11=G__3676_9), -(c_12=clojure.core.nth.apply(null,[vec__3678_11,(0),null])), -(r_13=clojure.core.nthrest.apply(null,[vec__3678_11,(1)])), -(s_14=vec__3678_11), +_rtn=((vec__4487_11=G__4485_9), +(c_12=clojure.core.nth.apply(null,[vec__4487_11,(0),null])), +(r_13=clojure.core.nthrest.apply(null,[vec__4487_11,(1)])), +(s_14=vec__4487_11), (qmode_15=qmode_10), -((s_14)?(((clojure.lang.Util.equal(c_12,"\\"))?(((vec__3679_16=r_13), -(c2_17=clojure.core.nth.apply(null,[vec__3679_16,(0),null])), -(r2_18=clojure.core.nthrest.apply(null,[vec__3679_16,(1)])), +((s_14)?(((clojure.lang.Util.equal(c_12,"\\"))?(((vec__4488_16=r_13), +(c2_17=clojure.core.nth.apply(null,[vec__4488_16,(0),null])), +(r2_18=clojure.core.nthrest.apply(null,[vec__4488_16,(1)])), (w_2).append("\\"), (w_2).append(c2_17), -((qmode_15)?((_cnt=1,_rtn=[r2_18,clojure.core.not_EQ_.apply(null,[c2_17,"E"])],G__3676_9=_rtn[0],qmode_10=_rtn[1])):((_cnt=1,_rtn=[r2_18,clojure.lang.Util.equal(c2_17,"Q")],G__3676_9=_rtn[0],qmode_10=_rtn[1]))))):(((clojure.lang.Util.equal(c_12,"\""))?(((qmode_15)?((w_2).write("\\E\\\"\\Q")):((w_2).write("\\\""))), -(_cnt=1,_rtn=[r_13,qmode_15],G__3676_9=_rtn[0],qmode_10=_rtn[1])):(((clojure.core.keyword("","else"))?((w_2).append(c_12), -(_cnt=1,_rtn=[r_13,qmode_15],G__3676_9=_rtn[0],qmode_10=_rtn[1])):(null))))))):(null)))}while(_cnt);return _rtn;})())), +((qmode_15)?((_cnt=1,_rtn=[r2_18,clojure.core.not_EQ_.apply(null,[c2_17,"E"])],G__4485_9=_rtn[0],qmode_10=_rtn[1])):((_cnt=1,_rtn=[r2_18,clojure.lang.Util.equal(c2_17,"Q")],G__4485_9=_rtn[0],qmode_10=_rtn[1]))))):(((clojure.lang.Util.equal(c_12,"\""))?(((qmode_15)?((w_2).write("\\E\\\"\\Q")):((w_2).write("\\\""))), +(_cnt=1,_rtn=[r_13,qmode_15],G__4485_9=_rtn[0],qmode_10=_rtn[1])):(((clojure.core.keyword("","else"))?((w_2).append(c_12), +(_cnt=1,_rtn=[r_13,qmode_15],G__4485_9=_rtn[0],qmode_10=_rtn[1])):(null))))))):(null)))}while(_cnt);return _rtn;})())), (w_2).append("\""))})))}).apply(null,[]); //====== //(defmethod print-dup java.util.regex.Pattern [p w] (print-method p w)) //--- -(function __clojure_core_fn_3682(){ -return ((clojure.core.print_dup).addMethod(java.util.regex.Pattern,(function __clojure_core_fn_3682_fn_3684(p_1,w_2){ +(function __clojure_core_fn_4491(){ +return ((clojure.core.print_dup).addMethod(java.util.regex.Pattern,(function __clojure_core_fn_4491_fn_4493(p_1,w_2){ return (clojure.core.print_method.apply(null,[p_1,w_2]))})))}).apply(null,[]); //====== //(defmethod print-dup clojure.lang.Namespace [n w] (.write w "#=(find-ns ") (print-dup (.name n) w) (.write w ")")) //--- -(function __clojure_core_fn_3688(){ -return ((clojure.core.print_dup).addMethod(clojure.lang.Namespace,(function __clojure_core_fn_3688_fn_3690(n_1,w_2){ +(function __clojure_core_fn_4497(){ +return ((clojure.core.print_dup).addMethod(clojure.lang.Namespace,(function __clojure_core_fn_4497_fn_4499(n_1,w_2){ return ((w_2).write("#=(find-ns "), clojure.core.print_dup.apply(null,[clojure.JS.getOrRun(n_1,"name"),w_2]), (w_2).write(")"))})))}).apply(null,[]); @@ -3366,5 +3521,5 @@ clojure.core.print_dup.apply(null,[clojure.JS.getOrRun(n_1,"name"),w_2]), //====== //(def print-initialized true) //--- -(function __clojure_core_fn_3694(){ +(function __clojure_core_fn_4503(){ return (clojure.JS.def(clojure.core,"print_initialized",true))}).apply(null,[]); diff --git a/clojurescript/repl/blank.gif b/clojurescript/src/clojure/contrib/clojurescript/repl/blank.gif Binary files differindex 7dd151aa..7dd151aa 100644 --- a/clojurescript/repl/blank.gif +++ b/clojurescript/src/clojure/contrib/clojurescript/repl/blank.gif diff --git a/clojurescript/repl/clojure-logo-anim-03.gif b/clojurescript/src/clojure/contrib/clojurescript/repl/clojure-logo-anim-03.gif Binary files differindex 47ceca66..47ceca66 100644 --- a/clojurescript/repl/clojure-logo-anim-03.gif +++ b/clojurescript/src/clojure/contrib/clojurescript/repl/clojure-logo-anim-03.gif diff --git a/clojurescript/repl/dots.png b/clojurescript/src/clojure/contrib/clojurescript/repl/dots.png Binary files differindex 545dbbf7..545dbbf7 100644 --- a/clojurescript/repl/dots.png +++ b/clojurescript/src/clojure/contrib/clojurescript/repl/dots.png diff --git a/clojurescript/repl/repl.cljs b/clojurescript/src/clojure/contrib/clojurescript/repl/repl.cljs index ce6eb450..ce6eb450 100644 --- a/clojurescript/repl/repl.cljs +++ b/clojurescript/src/clojure/contrib/clojurescript/repl/repl.cljs diff --git a/clojurescript/repl/repl.html b/clojurescript/src/clojure/contrib/clojurescript/repl/repl.html index 1a3a6285..1a3a6285 100644 --- a/clojurescript/repl/repl.html +++ b/clojurescript/src/clojure/contrib/clojurescript/repl/repl.html diff --git a/clojurescript/repl/repl.js b/clojurescript/src/clojure/contrib/clojurescript/repl/repl.js index 11f83d94..a3c47aa3 100644 --- a/clojurescript/repl/repl.js +++ b/clojurescript/src/clojure/contrib/clojurescript/repl/repl.js @@ -5,26 +5,26 @@ clojure.core.refer.apply(null,[clojure.core.symbol("clojure.core")]))}).apply(nu return (clojure.JS.def(jsrepl,"append_dom",null))}).apply(null,[]); (function(){ return (clojure.JS.def(jsrepl,"dom",(function(o_1){ -var sq__3428_7,vec__15_2,body_5,attrs_4,k_9,v_10,tag_3,vec__16_8,elem_6; -return (((clojure.core.coll_QMARK_.apply(null,[o_1]))?(((vec__15_2=o_1), -(tag_3=clojure.core.nth.apply(null,[vec__15_2,(0),null])), -(attrs_4=clojure.core.nth.apply(null,[vec__15_2,(1),null])), -(body_5=clojure.core.nthrest.apply(null,[vec__15_2,(2)])), +var sq__3769__auto___7,v_10,vec__546_8,elem_6,body_5,attrs_4,vec__545_2,k_9,tag_3; +return (((clojure.core.coll_QMARK_.apply(null,[o_1]))?(((vec__545_2=o_1), +(tag_3=clojure.core.nth.apply(null,[vec__545_2,(0),null])), +(attrs_4=clojure.core.nth.apply(null,[vec__545_2,(1),null])), +(body_5=clojure.core.nthrest.apply(null,[vec__545_2,(2)])), ((clojure.core.keyword_QMARK_.apply(null,[tag_3]))?(((elem_6=(clojure.JS.resolveVar("document",jsrepl)).createElement(clojure.core.name.apply(null,[tag_3]))), -((clojure.core.map_QMARK_.apply(null,[attrs_4]))?(((function(){var _rtn,_cnt;(sq__3428_7=clojure.core.seq.apply(null,[attrs_4]));do{_cnt=0; -_rtn=((sq__3428_7)?(((vec__16_8=clojure.core.first.apply(null,[sq__3428_7])), -(k_9=clojure.core.nth.apply(null,[vec__16_8,(0),null])), -(v_10=clojure.core.nth.apply(null,[vec__16_8,(1),null])), +((clojure.core.map_QMARK_.apply(null,[attrs_4]))?(((function(){var _rtn,_cnt;(sq__3769__auto___7=clojure.core.seq.apply(null,[attrs_4]));do{_cnt=0; +_rtn=((sq__3769__auto___7)?(((vec__546_8=clojure.core.first.apply(null,[sq__3769__auto___7])), +(k_9=clojure.core.nth.apply(null,[vec__546_8,(0),null])), +(v_10=clojure.core.nth.apply(null,[vec__546_8,(1),null])), ((true)?(((true)?(((v_10)?((elem_6).setAttribute(clojure.core.name.apply(null,[k_9]),v_10)):(null))):(null)), -(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__3428_7])],sq__3428_7=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})())):(null)), +(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__3769__auto___7])],sq__3769__auto___7=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})())):(null)), clojure.JS.lit_vector([jsrepl.append_dom.apply(null,[elem_6,((clojure.core.map_QMARK_.apply(null,[attrs_4]))?(body_5):(clojure.core.cons.apply(null,[attrs_4,body_5])))])]))):(clojure.core.mapcat.apply(null,[jsrepl.dom,o_1]))))):(((o_1)?(clojure.JS.lit_vector([(clojure.JS.resolveVar("document",jsrepl)).createTextNode(clojure.core.str.apply(null,[o_1]))])):(null)))))})))}).apply(null,[]); (function(){ return (clojure.JS.def(jsrepl,"append_dom",(function(parent_1,v_2){ -var sq__3428_3,i_4; -return (((function(){var _rtn,_cnt;(sq__3428_3=clojure.core.seq.apply(null,[jsrepl.dom.apply(null,[v_2])]));do{_cnt=0; -_rtn=((sq__3428_3)?(((i_4=clojure.core.first.apply(null,[sq__3428_3])), +var sq__3769__auto___3,i_4; +return (((function(){var _rtn,_cnt;(sq__3769__auto___3=clojure.core.seq.apply(null,[jsrepl.dom.apply(null,[v_2])]));do{_cnt=0; +_rtn=((sq__3769__auto___3)?(((i_4=clojure.core.first.apply(null,[sq__3769__auto___3])), ((true)?(((true)?((parent_1).appendChild(i_4)):(null)), -(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__3428_3])],sq__3428_3=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})()), +(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__3769__auto___3])],sq__3769__auto___3=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})()), parent_1)})))}).apply(null,[]); (function(){ return (clojure.JS.def(jsrepl,"elems",null))}).apply(null,[]); @@ -34,12 +34,12 @@ return (clojure.JS.def(jsrepl,"lastval",null))}).apply(null,[]); return (clojure.JS.def(jsrepl,"_STAR_print_class_STAR_",null))}).apply(null,[]); (function(){ return (clojure.JS.def(jsrepl,"repl_print",(function(text_1){ -var log_2,sq__3428_3,line_4; +var log_2,sq__3769__auto___3,line_4; return (((log_2=clojure.core.keyword("","log").apply(null,[jsrepl.elems])), -((function(){var _rtn,_cnt;(sq__3428_3=clojure.core.seq.apply(null,[(text_1).split((/\n/))]));do{_cnt=0; -_rtn=((sq__3428_3)?(((line_4=clojure.core.first.apply(null,[sq__3428_3])), +((function(){var _rtn,_cnt;(sq__3769__auto___3=clojure.core.seq.apply(null,[(text_1).split((/\n/))]));do{_cnt=0; +_rtn=((sq__3769__auto___3)?(((line_4=clojure.core.first.apply(null,[sq__3769__auto___3])), ((true)?(((true)?(jsrepl.append_dom.apply(null,[log_2,clojure.JS.lit_vector([clojure.core.keyword("","div"),clojure.core.hash_map(clojure.core.keyword("","class"),clojure.core.str.apply(null,["cg ",((jsrepl._STAR_print_class_STAR_)?(clojure.core.str.apply(null,[" ",jsrepl._STAR_print_class_STAR_])):(null))])),line_4])])):(null)), -(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__3428_3])],sq__3428_3=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})()), +(_cnt=1,_rtn=[clojure.core.rest.apply(null,[sq__3769__auto___3])],sq__3769__auto___3=_rtn[0])):(null)))):(null))}while(_cnt);return _rtn;})()), (log_2.scrollTop=clojure.JS.getOrRun(log_2,"scrollHeight"))))})))}).apply(null,[]); (function(){ return (clojure.JS.def(jsrepl,"postexpr",(function(){ @@ -69,20 +69,21 @@ clojure.core._var__STAR_e.set(e_1))})))}).apply(null,[]); return (clojure.core._var__STAR_print_length_STAR_.set((103)))}).apply(null,[]); (function(){ return ((clojure.JS.resolveVar("window",jsrepl).onload=(function(){ -var iter__3875_1; -return (jsrepl._var_elems.set(clojure.core.into.apply(null,[clojure.lang.PersistentHashMap.EMPTY,((iter__3875_1=(function(s__87_1){ -var n_2,iter__86_0=arguments.callee; -return (((clojure.core.seq.apply(null,[s__87_1]))?(((n_2=clojure.core.first.apply(null,[s__87_1])), -((true)?((new clojure.lang.LazyCons((function(G__89_1){switch(arguments.length){ +var iter__4265__auto___1; +return (jsrepl._var_elems.set(clojure.core.into.apply(null,[clojure.lang.PersistentArrayMap.EMPTY,((iter__4265__auto___1=(function(s__620_1){ +var _cnt,_rtn,n_2,iter__619_0=arguments.callee; +do{_cnt=0;_rtn=((clojure.core.seq.apply(null,[s__620_1]))?(((n_2=clojure.core.first.apply(null,[s__620_1])), +((true)?(((true)?((new clojure.lang.LazyCons((function(G__622_1){switch(arguments.length){ case 0:return (clojure.JS.lit_vector([clojure.core.keyword.apply(null,[n_2]),(clojure.JS.resolveVar("document",jsrepl)).getElementById(clojure.core.str.apply(null,[n_2]))]))} -return (iter__86_0.apply(null,[clojure.core.rest.apply(null,[s__87_1])]))})))):(null)))):(null)))})), -iter__3875_1.apply(null,[clojure.JS.lit_list([clojure.core.symbol("log"),clojure.core.symbol("input"),clojure.core.symbol("status"),clojure.core.symbol("scripts")])]))])), +return (iter__619_0.apply(null,[clojure.core.rest.apply(null,[s__620_1])]))})))):((_cnt=1,_rtn=[clojure.core.rest.apply(null,[s__620_1])],s__620_1=_rtn[0])))):(null)))):(null)) +}while(_cnt);return _rtn;})), +iter__4265__auto___1.apply(null,[clojure.JS.lit_list([clojure.core.symbol("log"),clojure.core.symbol("input"),clojure.core.symbol("status"),clojure.core.symbol("scripts")])]))])), (clojure.JS.resolveVar("window",jsrepl).print=jsrepl.repl_print), (clojure.core.keyword("","input").apply(null,[jsrepl.elems]).onkeypress=(function(e_1){ -var or__2827_2,e_2; -return (((e_2=((or__2827_2=e_1), -((or__2827_2)?(or__2827_2):(clojure.JS.resolveVar("event",jsrepl))))), +var or__3117__auto___2,e_2; +return (((e_2=((or__3117__auto___2=e_1), +((or__3117__auto___2)?(or__3117__auto___2):(clojure.JS.resolveVar("event",jsrepl))))), ((clojure.lang.Numbers.equiv(clojure.JS.getOrRun(e_2,"keyCode"),(13)))?((jsrepl.elems.apply(null,[clojure.core.keyword("","status")]).src="clojure-logo-anim-03.gif"), -jsrepl.append_dom.apply(null,[clojure.core.keyword("","scripts").apply(null,[jsrepl.elems]),clojure.JS.lit_vector([clojure.core.keyword("","script"),clojure.core.hash_map(clojure.core.keyword("","src"),clojure.core.str.apply(null,["http://clojurescript.n01se.net:8081/?",(clojure.JS.resolveVar("escape",jsrepl).apply(null,[clojure.JS.getOrRun(jsrepl.elems.apply(null,[clojure.core.keyword("","input")]),"value")])).replace((/\+/),"%2b")]))])])):(null))))})), +jsrepl.append_dom.apply(null,[clojure.core.keyword("","scripts").apply(null,[jsrepl.elems]),clojure.JS.lit_vector([clojure.core.keyword("","script"),clojure.core.hash_map(clojure.core.keyword("","src"),clojure.core.str.apply(null,["http://localhost:8081/?",(clojure.JS.resolveVar("escape",jsrepl).apply(null,[clojure.JS.getOrRun(jsrepl.elems.apply(null,[clojure.core.keyword("","input")]),"value")])).replace((/\+/),"%2b")]))])])):(null))))})), clojure.core.println.apply(null,["ClojureScript"]), clojure.JS.getOrRun(clojure.core.keyword("","input").apply(null,[jsrepl.elems]),"focus"))})))}).apply(null,[]); diff --git a/clojurescript/rt.js b/clojurescript/src/clojure/contrib/clojurescript/rt.js index 5eac7c36..480ee03b 100644 --- a/clojurescript/rt.js +++ b/clojurescript/src/clojure/contrib/clojurescript/rt.js @@ -1,7 +1,7 @@ -// Copyright (c) Chris Houser, Sep 2008. All rights reserved. +// Copyright (c) Chris Houser, Sep 2008 - Jan 2009. All rights reserved. // The use and distribution terms for this software are covered by the -// Common Public License 1.0 (http://opensource.org/licenses/cpl.php) -// which can be found in the file CPL.TXT at the root of this distribution. +// Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) +// 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. @@ -504,6 +504,7 @@ clojure.JS.defclass( clojure.JS, "String", { }); clojure.JS.definterface( clojure.lang, "IObj" ); +clojure.JS.definterface( clojure.lang, "IMeta" ); clojure.JS.defclass( clojure.lang, "Obj", { implement: [ clojure.lang.IObj ], @@ -1836,6 +1837,9 @@ clojure.JS.defclass( clojure.lang.PersistentHashMap, "HashCollisionNode", { } }); +// XXX dirty little hack until such time as PersistentArrayMap is ported +clojure.lang.PersistentArrayMap = clojure.lang.PersistentHashMap; + clojure.JS.definterface( clojure.lang, "IPersistentSet", [ clojure.lang.IPersistentCollection ] ); diff --git a/clojurescript/support-for-clojurescript.patch b/clojurescript/support-for-clojurescript.patch index c8618bf7..634c6b34 100644 --- a/clojurescript/support-for-clojurescript.patch +++ b/clojurescript/support-for-clojurescript.patch @@ -1,83 +1,14 @@ -commit 5b84f0b77a1e1b9cc443c64b66e6fbffaa6f17a4 +commit 3a3b1b4f8fad93e54cd3571010bacf787c6a77c8 Author: Chouser <chouser@n01se.net> -Date: Thu Nov 20 11:03:00 2008 -0500 +Date: Wed Dec 17 15:14:51 2008 -0500 ClojureScript support -diff --git a/src/clj/clojure/core-print.clj b/src/clj/clojure/core-print.clj -index 05c8abc..0f04558 100644 ---- a/src/clj/clojure/core-print.clj -+++ b/src/clj/clojure/core-print.clj -@@ -75,14 +75,14 @@ - - (defn print-ctor [o print-args #^Writer w] - (.write w "#=(") -- (.write w (.getName #^Class (class o))) -+ (.write w (RT/className (class o))) - (.write w ". ") - (print-args o w) - (.write w ")")) - - (defmethod print-method :default [o, #^Writer w] - (.write w "#<") -- (.write w (.getSimpleName (class o))) -+ (.write w (RT/simpleClassName (class o))) - (.write w " ") - (.write w (str o)) - (.write w ">")) -@@ -153,7 +153,7 @@ - (defmethod print-dup clojure.lang.IPersistentCollection [o, #^Writer w] - (print-meta o w) - (.write w "#=(") -- (.write w (.getName #^Class (class o))) -+ (.write w (RT/className (class o))) - (.write w "/create ") - (print-sequential "[" print-dup " " "]" o w) - (.write w ")")) -@@ -212,7 +212,7 @@ - (defmethod print-dup clojure.lang.IPersistentMap [m, #^Writer w] - (print-meta m w) - (.write w "#=(") -- (.write w (.getName (class m))) -+ (.write w (RT/className (class m))) - (.write w "/create ") - (print-map m print-dup w) - (.write w ")")) -@@ -268,7 +268,7 @@ - Short/TYPE "Short/TYPE"}) - - (defmethod print-method Class [#^Class c, #^Writer w] -- (.write w (.getName c))) -+ (.write w (RT/className c))) - - (defmethod print-dup Class [#^Class c, #^Writer w] - (cond -@@ -278,11 +278,11 @@ - (.write w ")")) - (.isArray c) (do - (.write w "#=(java.lang.Class/forName \"") -- (.write w (.getName c)) -+ (.write w (RT/className c)) - (.write w "\")")) - :else (do - (.write w "#=") -- (.write w (.getName c))))) -+ (.write w (RT/className c))))) - - (defmethod print-method java.math.BigDecimal [b, #^Writer w] - (.write w (str b)) -@@ -317,4 +317,4 @@ - (print-dup (.name n) w) - (.write w ")")) - --(def #^{:private true} print-initialized true) -\ No newline at end of file -+(def #^{:private true} print-initialized true) diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj -index 1957f4f..0831fee 100644 +index 5a4cef0..1812548 100644 --- a/src/clj/clojure/core.clj +++ b/src/clj/clojure/core.clj -@@ -319,7 +319,7 @@ +@@ -321,7 +321,7 @@ (if more (recur (. sb (append (str (first more)))) (rest more)) (str sb))) @@ -86,7 +17,7 @@ index 1957f4f..0831fee 100644 (defn symbol? -@@ -542,7 +542,7 @@ +@@ -553,7 +553,7 @@ {:inline (fn [x y] `(. clojure.lang.Numbers (add ~x ~y))) :inline-arities #{2}} ([] 0) @@ -95,7 +26,7 @@ index 1957f4f..0831fee 100644 ([x y] (. clojure.lang.Numbers (add x y))) ([x y & more] (reduce + (+ x y) more))) -@@ -552,7 +552,7 @@ +@@ -563,7 +563,7 @@ {:inline (fn [x y] `(. clojure.lang.Numbers (multiply ~x ~y))) :inline-arities #{2}} ([] 1) @@ -104,29 +35,23 @@ index 1957f4f..0831fee 100644 ([x y] (. clojure.lang.Numbers (multiply x y))) ([x y & more] (reduce * (* x y) more))) -@@ -1042,7 +1042,7 @@ - ([state] (new clojure.lang.Agent state)) - ([state validate-fn] (new clojure.lang.Agent state validate-fn))) - --(defn ! [& args] (throw (new Exception "! is now send. See also send-off"))) -+(defn ! [& args] (throw (clojure.lang.RT/makeException "! is now send. See also send-off"))) - - (defn send - "Dispatch an action to an agent. Returns the agent immediately. -@@ -1363,10 +1363,10 @@ +@@ -1478,12 +1478,12 @@ (defn range "Returns a lazy seq of nums from start (inclusive) to end (exclusive), by step, where start defaults to 0 and step to 1." -- ([end] (if (and (> end 0) (< end (. Integer MAX_VALUE))) -+ ([end] (if (and (> end 0) (< end clojure.lang.RT/IntegerMaxValue)) +- ([end] (if (and (> end 0) (<= end (. Integer MAX_VALUE))) ++ ([end] (if (and (> end 0) (<= end clojure.lang.RT/IntegerMaxValue)) (new clojure.lang.Range 0 end) (take end (iterate inc 0)))) -- ([start end] (if (and (< start end) (< end (. Integer MAX_VALUE))) -+ ([start end] (if (and (< start end) (< end clojure.lang.RT/IntegerMaxValue)) + ([start end] (if (and (< start end) +- (>= start (. Integer MIN_VALUE)) +- (<= end (. Integer MAX_VALUE))) ++ (>= start clojure.lang.RT/IntegerMinValue) ++ (<= end clojure.lang.RT/IntegerMaxValue)) (new clojure.lang.Range start end) (take (- end start) (iterate inc start)))) ([start end step] -@@ -1433,7 +1433,7 @@ +@@ -1550,7 +1550,7 @@ ([#^java.util.Comparator comp coll] (when (and coll (not (zero? (count coll)))) (let [a (to-array coll)] @@ -135,25 +60,25 @@ index 1957f4f..0831fee 100644 (seq a))))) (defn sort-by -@@ -1517,7 +1517,7 @@ - occurred." +@@ -1640,7 +1640,7 @@ [& agents] + (io! "await in transaction" (when *agent* - (throw (new Exception "Can't await in agent action"))) + (throw (clojure.lang.RT/makeException "Can't await in agent action"))) (let [latch (new java.util.concurrent.CountDownLatch (count agents)) count-down (fn [agent] (. latch (countDown)) agent)] (doseq [agent agents] -@@ -1536,7 +1536,7 @@ - to timeout, non-nil otherwise." +@@ -1660,7 +1660,7 @@ [timeout-ms & agents] - (when *agent* -- (throw (new Exception "Can't await in agent action"))) -+ (throw (clojure.lang.RT/makeException "Can't await in agent action"))) - (let [latch (new java.util.concurrent.CountDownLatch (count agents)) - count-down (fn [agent] (. latch (countDown)) agent)] - (doseq [agent agents] -@@ -1798,6 +1798,7 @@ + (io! "await-for in transaction" + (when *agent* +- (throw (new Exception "Can't await in agent action"))) ++ (throw (clojure.lang.RT/makeException "Can't await in agent action"))) + (let [latch (new java.util.concurrent.CountDownLatch (count agents)) + count-down (fn [agent] (. latch (countDown)) agent)] + (doseq [agent agents] +@@ -1984,6 +1984,7 @@ (import '(java.lang.reflect Array)) @@ -161,7 +86,7 @@ index 1957f4f..0831fee 100644 (defn alength "Returns the length of the Java array. Works on arrays of all -@@ -1817,7 +1818,7 @@ +@@ -2003,7 +2004,7 @@ {:inline (fn [a i] `(. clojure.lang.RT (aget ~a ~i))) :inline-arities #{2}} ([array idx] @@ -170,7 +95,7 @@ index 1957f4f..0831fee 100644 ([array idx & idxs] (apply aget (aget array idx) idxs))) -@@ -1827,7 +1828,7 @@ +@@ -2013,7 +2014,7 @@ {:inline (fn [a i v] `(. clojure.lang.RT (aset ~a ~i ~v))) :inline-arities #{3}} ([array idx val] @@ -179,7 +104,7 @@ index 1957f4f..0831fee 100644 val) ([array idx idx2 & idxv] (apply aset (aget array idx) idx2 idxv))) -@@ -1995,6 +1996,10 @@ +@@ -2170,6 +2171,10 @@ "Returns a set of the distinct elements of coll." [coll] (apply hash-set coll)) @@ -190,8 +115,8 @@ index 1957f4f..0831fee 100644 (defn #^{:private true} filter-key [keyfn pred amap] (loop [ret {} es (seq amap)] -@@ -2027,7 +2032,7 @@ - the-ns [x] +@@ -2205,7 +2210,7 @@ + [x] (if (instance? clojure.lang.Namespace x) x - (or (find-ns x) (throw (Exception. (str "No namespace: " x " found")))))) @@ -199,7 +124,7 @@ index 1957f4f..0831fee 100644 (defn ns-name "Returns the name of the namespace, a symbol." -@@ -2060,7 +2065,7 @@ +@@ -2238,7 +2243,7 @@ (defn ns-imports "Returns a map of the import mappings for the namespace." [ns] @@ -208,7 +133,7 @@ index 1957f4f..0831fee 100644 (defn refer "refers to all public vars of ns, subject to filters. -@@ -2078,7 +2083,8 @@ +@@ -2256,7 +2261,8 @@ to a symbol different from the var's name, in order to prevent clashes. Use :use in the ns macro in preference to calling this directly." [ns-sym & filters] @@ -218,7 +143,7 @@ index 1957f4f..0831fee 100644 fs (apply hash-map filters) nspublics (ns-publics ns) rename (or (:rename fs) {}) -@@ -2207,7 +2213,7 @@ +@@ -2388,7 +2394,7 @@ true) (= firstb :as) (pb ret (second bs) gvec) :else (if seen-rest? @@ -227,7 +152,7 @@ index 1957f4f..0831fee 100644 (recur (pb ret firstb (list `nth gvec n nil)) (inc n) (rest bs) -@@ -2238,7 +2244,7 @@ +@@ -2419,7 +2425,7 @@ (symbol? b) (-> bvec (conj b) (conj v)) (vector? b) (pvec bvec b v) (map? b) (pmap bvec b v) @@ -236,7 +161,7 @@ index 1957f4f..0831fee 100644 process-entry (fn [bvec b] (pb bvec (key b) (val b)))] (if (every? symbol? (keys bmap)) bindings -@@ -2385,7 +2391,7 @@ +@@ -2567,7 +2573,7 @@ StringWriter. Returns the string created by any nested printing calls." [& body] @@ -245,7 +170,7 @@ index 1957f4f..0831fee 100644 (binding [*out* s#] ~@body (str s#)))) -@@ -2431,7 +2437,7 @@ +@@ -2613,7 +2619,7 @@ logical true." [x] `(when-not ~x @@ -254,7 +179,7 @@ index 1957f4f..0831fee 100644 (defn test "test [v] finds fn at key :test in var metadata and calls it, -@@ -2503,7 +2509,7 @@ +@@ -2687,7 +2693,7 @@ (defn rand "Returns a random floating point number between 0 (inclusive) and 1 (exclusive)." @@ -263,7 +188,7 @@ index 1957f4f..0831fee 100644 ([n] (* n (rand)))) (defn rand-int -@@ -2613,7 +2619,7 @@ +@@ -2797,7 +2803,7 @@ "Reads the file named by f into a string and returns it." [#^String f] (with-open [r (new java.io.BufferedReader (new java.io.FileReader f))] @@ -272,7 +197,7 @@ index 1957f4f..0831fee 100644 (loop [c (. r (read))] (if (neg? c) (str sb) -@@ -2897,10 +2903,6 @@ +@@ -3081,10 +3087,6 @@ (send-off agt fill) (drain)))) @@ -283,7 +208,7 @@ index 1957f4f..0831fee 100644 (defn alter-var-root "Atomically alters the root binding of var v by applying f to its current value plus any args" -@@ -2986,7 +2988,7 @@ +@@ -3170,7 +3172,7 @@ relationships." ([tag] (descendants global-hierarchy tag)) ([h tag] (if (class? tag) @@ -292,7 +217,7 @@ index 1957f4f..0831fee 100644 (not-empty (get (:descendants h) tag))))) (defn derive -@@ -3013,9 +3015,9 @@ +@@ -3200,9 +3202,9 @@ (or (when-not (contains? (tp tag) parent) (when (contains? (ta tag) parent) @@ -304,7 +229,7 @@ index 1957f4f..0831fee 100644 {:parents (assoc (:parents h) tag (conj (get tp tag #{}) parent)) :ancestors (tf (:ancestors h) tag td parent ta) :descendants (tf (:descendants h) parent ta tag td)}) -@@ -3145,7 +3147,7 @@ +@@ -3343,7 +3345,7 @@ [pred fmt & args] (when pred (let [message (apply format fmt args) @@ -313,11 +238,73 @@ index 1957f4f..0831fee 100644 raw-trace (.getStackTrace exception) boring? #(not= (.getMethodName %) "doInvoke") trace (into-array (drop 2 (drop-while boring? raw-trace)))] +diff --git a/src/clj/clojure/core_print.clj b/src/clj/clojure/core_print.clj +index 4dc83cf..1d2274b 100644 +--- a/src/clj/clojure/core_print.clj ++++ b/src/clj/clojure/core_print.clj +@@ -75,14 +75,14 @@ + + (defn print-ctor [o print-args #^Writer w] + (.write w "#=(") +- (.write w (.getName #^Class (class o))) ++ (.write w (RT/className (class o))) + (.write w ". ") + (print-args o w) + (.write w ")")) + + (defmethod print-method :default [o, #^Writer w] + (.write w "#<") +- (.write w (.getSimpleName (class o))) ++ (.write w (RT/simpleClassName (class o))) + (.write w " ") + (.write w (str o)) + (.write w ">")) +@@ -153,7 +153,7 @@ + (defmethod print-dup clojure.lang.IPersistentCollection [o, #^Writer w] + (print-meta o w) + (.write w "#=(") +- (.write w (.getName #^Class (class o))) ++ (.write w (RT/className (class o))) + (.write w "/create ") + (print-sequential "[" print-dup " " "]" o w) + (.write w ")")) +@@ -212,7 +212,7 @@ + (defmethod print-dup clojure.lang.IPersistentMap [m, #^Writer w] + (print-meta m w) + (.write w "#=(") +- (.write w (.getName (class m))) ++ (.write w (RT/className (class m))) + (.write w "/create ") + (print-map m print-dup w) + (.write w ")")) +@@ -269,7 +269,7 @@ + Short/TYPE "Short/TYPE"}) + + (defmethod print-method Class [#^Class c, #^Writer w] +- (.write w (.getName c))) ++ (.write w (RT/className c))) + + (defmethod print-dup Class [#^Class c, #^Writer w] + (cond +@@ -279,11 +279,11 @@ + (.write w ")")) + (.isArray c) (do + (.write w "#=(java.lang.Class/forName \"") +- (.write w (.getName c)) ++ (.write w (RT/className c)) + (.write w "\")")) + :else (do + (.write w "#=") +- (.write w (.getName c))))) ++ (.write w (RT/className c))))) + + (defmethod print-method java.math.BigDecimal [b, #^Writer w] + (.write w (str b)) diff --git a/src/jvm/clojure/lang/Compiler.java b/src/jvm/clojure/lang/Compiler.java -index bbb5aff..d4dc231 100644 +index c180201..20a2bef 100644 --- a/src/jvm/clojure/lang/Compiler.java +++ b/src/jvm/clojure/lang/Compiler.java -@@ -201,7 +201,8 @@ static final public Var NEXT_LOCAL_NUM = Var.create(0); +@@ -202,7 +202,8 @@ static final public Var NEXT_LOCAL_NUM = Var.create(0); static final public Var RET_LOCAL_NUM = Var.create(); //DynamicClassLoader @@ -328,19 +315,20 @@ index bbb5aff..d4dc231 100644 public enum C{ STATEMENT, //value ignored diff --git a/src/jvm/clojure/lang/RT.java b/src/jvm/clojure/lang/RT.java -index f6139d1..fab9304 100644 +index 4954028..98981ea 100644 --- a/src/jvm/clojure/lang/RT.java +++ b/src/jvm/clojure/lang/RT.java -@@ -35,6 +35,8 @@ public class RT{ - static final public Boolean T = Boolean.TRUE;//Keyword.intern(Symbol.create(null, "t")); +@@ -32,6 +32,9 @@ static final public Boolean T = Boolean.TRUE;//Keyword.intern(Symbol.create(null static final public Boolean F = Boolean.FALSE;//Keyword.intern(Symbol.create(null, "t")); + static final public String LOADER_SUFFIX = "__init"; +static final public Integer IntegerMaxValue = Integer.MAX_VALUE; ++static final public Integer IntegerMinValue = Integer.MIN_VALUE; + //simple-symbol->class final static IPersistentMap DEFAULT_IMPORTS = map( // Symbol.create("RT"), "clojure.lang.RT", -@@ -1060,6 +1062,10 @@ static public double doubleCast(double x){ +@@ -963,6 +966,10 @@ static public double doubleCast(double x){ return x; } @@ -349,12 +337,12 @@ index f6139d1..fab9304 100644 +} + static public IPersistentMap map(Object... init){ - if(init != null && init.length == 2) - return new PersistentArrayMap(init); -@@ -1792,4 +1798,43 @@ static public int alength(Object xs){ - return Array.getLength(xs); - } - + if(init == null) + return PersistentArrayMap.EMPTY; +@@ -1707,4 +1714,43 @@ synchronized public static DynamicClassLoader getRootClassLoader() { + ROOT_CLASSLOADER = new DynamicClassLoader(); + return ROOT_CLASSLOADER; + } + +////////////// ClojureScript support ///////////////////////////////// + diff --git a/clojurescript/t01.cljs b/clojurescript/tests/t01.cljs index ac099bf5..ac099bf5 100644 --- a/clojurescript/t01.cljs +++ b/clojurescript/tests/t01.cljs diff --git a/clojurescript/t02.cljs b/clojurescript/tests/t02.cljs index 850a55c6..850a55c6 100644 --- a/clojurescript/t02.cljs +++ b/clojurescript/tests/t02.cljs diff --git a/clojurescript/t03.cljs b/clojurescript/tests/t03.cljs index 3937cfa7..3937cfa7 100644 --- a/clojurescript/t03.cljs +++ b/clojurescript/tests/t03.cljs diff --git a/clojurescript/t04.cljs b/clojurescript/tests/t04.cljs index e8e1463f..e8e1463f 100644 --- a/clojurescript/t04.cljs +++ b/clojurescript/tests/t04.cljs diff --git a/clojurescript/t05.js b/clojurescript/tests/t05.js index 3501723c..3501723c 100644 --- a/clojurescript/t05.js +++ b/clojurescript/tests/t05.js diff --git a/clojurescript/t06.cljs b/clojurescript/tests/t06.cljs index bfb06e8a..bfb06e8a 100644 --- a/clojurescript/t06.cljs +++ b/clojurescript/tests/t06.cljs |