Order-preserving-set
This commit is contained in:
parent
ab44e355f6
commit
3baa7c12a5
3 changed files with 25 additions and 9 deletions
|
|
@ -46,10 +46,10 @@
|
|||
;; TODO: candidate for moving to adl-support.core
|
||||
[form request]
|
||||
`(if-valid-user
|
||||
~form
|
||||
~request
|
||||
{:status 403
|
||||
:body (json/write-str "You must be logged in to do that")}))
|
||||
~form
|
||||
~request
|
||||
{:status 403
|
||||
:body (json/write-str "You must be logged in to do that")}))
|
||||
|
||||
|
||||
(defmacro with-params-or-error
|
||||
|
|
@ -64,9 +64,6 @@
|
|||
:body (json/write-str (str "The following params are required: " ~required))}))
|
||||
|
||||
|
||||
;; (with-params-or-error (/ 1 0) {:a 1 :b 2} #{:a :b :c})
|
||||
;; (with-params-or-error "hello" {:a 1 :b 2} #{:a :b })
|
||||
|
||||
(defmacro do-or-server-fail
|
||||
"Evaluate this `form`; if it succeeds, return an HTTP response with this
|
||||
status code and the JSON-formatted result as body; if it fails, return an
|
||||
|
|
@ -78,6 +75,5 @@
|
|||
{:status ~status
|
||||
:body (:result r#)}
|
||||
{:status 500
|
||||
:body r#})))
|
||||
|
||||
:body r#})))
|
||||
|
||||
|
|
|
|||
|
|
@ -658,3 +658,17 @@
|
|||
0
|
||||
(expt 10 v)))
|
||||
(catch Exception _ 0)))
|
||||
|
||||
|
||||
(defn order-preserving-set
|
||||
"The Clojure `set` function does not preserve the order in which elements are
|
||||
passed to it. This function is like `set`, except
|
||||
1. It returns a list, not a hashset, and
|
||||
2. It is order-preserving."
|
||||
[collection]
|
||||
(loop [lhs (list (first collection))
|
||||
rhs (rest collection)]
|
||||
(cond
|
||||
(empty? rhs) (reverse lhs)
|
||||
(some #(= (first rhs) %) lhs) (recur lhs (rest rhs))
|
||||
true (recur (cons (first rhs) lhs) (rest rhs)))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue