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
(defmacro defnk | |
[name & fdecl] | |
(let [doc-string? (when (string? (first fdecl)) | |
(first fdecl)) | |
fdecl (if (string? (first fdecl)) | |
(next fdecl) | |
fdecl) | |
attr-map? (when (map? (first fdecl)) | |
(first fdecl)) | |
fdecl (if (map? (first fdecl)) |
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 counter.core | |
(:require [reagent.core :as r])) | |
;;;; Utils | |
(defn ratom? [a] | |
(= reagent.ratom/RAtom (type a))) | |
(defn make-state [state] |
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
#clojurescript-counter |
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 draw-ui [{:keys [label casing content]}] | |
(let [pad (Math/floor (/ (- (Math/max (count label) (count (or (:label content) ""))) | |
(+ 2 (Math/min (count label) (count (or (:label content) ""))))) | |
2))] | |
(println (str "|" (if (= :upper casing) | |
(.toUpperCase label) | |
(.toLowerCase label)) "|" \newline | |
"|" (reduce (fn [a b] (str a " ")) "" label) "|" \newline | |
(when content | |
(str "|" (apply str (repeat pad \space)) |
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 spec-test.virtual-time | |
(:require [clojure.spec :as s] | |
[clojure.spec.test :as st] | |
[clojure.spec.gen :as sgen])) | |
(deftype VirtualTime [time] | |
Object | |
(hashCode [_] | |
(hash time)) | |
(equals [this that] |
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 spec-test.virtual-time | |
(:require [clojure.spec :as s] | |
[clojure.spec.test :as st])) | |
(s/def ::virtual-time | |
(s/or | |
:positive-infinity #{:positive-infinity} | |
:negative-infinity #{:negative-infinity} | |
:number number?)) | |
(s/fdef vt-lt |
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 hash-set-bench | |
"A Benchmark I modified to Clojure from: | |
https://github.com/c-cube/hashset_benchs") | |
(defn iterNeighbors [f [i j]] | |
(f [(dec i) j]) | |
(f [(inc i) j]) | |
(f [i (dec j)]) | |
(f [i (inc j)])) |
NewerOlder