This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn thread-and | |
"Call each of the fs on a separate thread. Return logical | |
conjunction of the results. Short-circuit (and cancel the calls | |
to remaining fs) on first falsey value returned." | |
[& fs] | |
(let [futs-and-cs | |
(doall (for [f fs] | |
(let [c (chan)] | |
[(future (>!! c (f))) c])))] | |
(loop [futs-and-cs futs-and-cs] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use 'clojure.core.async) | |
(def output (atom [])) | |
(defn producer [ctrl k] | |
(go (loop [i 0] | |
(when-let [c (<! ctrl)] | |
(>! c [k i]) | |
(>! ctrl c) | |
(recur (inc i)))))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; for now, consumer starts producer | |
;; -- must make sure that output chan already on comm-chan before producer starts | |
(defn producer [comm-chan] | |
(go (loop [] | |
(if-let [c (<! comm-chan)] | |
(do | |
(>! c (rand)) | |
(>! comm-chan c) | |
(recur)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; [1 2 3] -> [1 [2 [3]]] | |
(defn f [xs] | |
(if (next xs) | |
[(first xs) (vec (f (next xs)))] | |
(vec xs))) | |
(defn g [v] | |
(reduce (fn [acc x] | |
[x acc]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn same-fringe | |
"http://c2.com/cgi/wiki?SameFringeProblem" | |
[t1 t2] | |
(letfn [(walk [t c] | |
(go (if (seq? t) | |
(doseq [t' t] | |
(<! (walk t' c))) | |
(>! c t))))] | |
(let [c1 (chan) | |
c2 (chan)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns timings) | |
(defn -main [] | |
(println ";;; satisfies?") | |
(println "(satisfies? ISeq (list 1 2 3))") | |
(let [coll (list 1 2 3)] (time (dotimes [_ 10000000] (satisfies? ISeq coll)))) | |
(println "(satisfies? ISeq [1 2 3])") | |
(let [coll [1 2 3]] (time (dotimes [_ 10000000] (satisfies? ISeq coll)))) | |
(println) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn merge-sorted [comparator & xss] | |
(let [xss (into-array Object (remove empty? xss)) | |
pq (java.util.PriorityQueue. | |
(count xss) #(comparator (val %1) (val %2)))] | |
(dotimes [i (count xss)] | |
(let [xs (aget xss i)] | |
(.add pq (pair i (first xs))) | |
(aset xss i (next xs)))) | |
((fn go [] | |
(lazy-seq |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function c(a){throw a;}var g=!0,k=null,l=!1;function aa(){return function(a){return a}}function m(a){return function(){return this[a]}}function n(a){return function(){return a}}var o,ba=this; | |
function q(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var d=Object.prototype.toString.call(a);if("[object Window]"==d)return"object";if("[object Array]"==d||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==d||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null"; | |
else if("function"==b&&"undefined"==typeof a.call)return"object";return b}function r(a){return void 0!==a}function ca(a){return"string"==typeof a}function da(a){return a[ea]||(a[ea]=++fa)}var ea="closure_uid_"+Math.floor(2147483648*Math.random()).toString(36),fa=0;function s(a,b){var d=a.split( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function c(a){throw a;}var g=!0,k=null,l=!1;function aa(){return function(a){return a}}function m(a){return function(){return this[a]}}function n(a){return function(){return a}}var o,ba=this; | |
function q(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var d=Object.prototype.toString.call(a);if("[object Window]"==d)return"object";if("[object Array]"==d||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==d||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null"; | |
else if("function"==b&&"undefined"==typeof a.call)return"object";return b}function s(a){return void 0!==a}function ca(a){return"string"==typeof a}function da(a){return a[ea]||(a[ea]=++fa)}var ea="closure_uid_"+Math.floor(2147483648*Math.random()).toString(36),fa=0;function t(a,b){var d=a.split( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; See the inspirational SO question: http://stackoverflow.com/questions/3346382 | |
;;; My old Gist with my first take on this: https://gist.github.com/492764 | |
;;; Don Jackson's Gist based on the above: https://gist.github.com/1846993 | |
;;; Licence: EPLv1, the same as Clojure | |
(in-ns 'clojure.tools.trace) | |
(defn trace-var | |
"If the specified Var holds an IFn and is not marked as a macro, its |