taoensso.encore
Extended core library for Clojure/Script that emphasizes:
* Cross-platform API
* Flexibility
* Performance
* Backwards compatibility
This lib's mostly for my own use and for advanced users that feel
comfortable reading this source. Not providing much beginner-oriented
documentation for this, sorry.
Common naming conventions used across my libs:
**foo** - Dynamic var
foo! - Fn with side-effects, or that should otherwise be used cautiously
foo? - Truthy val or fn that returns truthy val
foo!? - Fn that has side-effects (or requires caution) and that return
a truthy val. Note: !?, not ?!
foo$ - Fn that's notably expensive to compute (e.g. hits db)
foo_ - Derefable val (e.g. atom, volatile, delay, etc.)
foo__ - Derefable in a derefable (e.g. delay in an atom), etc.
_ - Unnamed val
_foo - Named but unused val
?foo - Optional val (emphasize that val may be nil)
foo* - A variation of `foo` (e.g. `foo*` macro vs `foo` fn)
foo' - ''
-foo - Public implementation detail or intermediate (e.g. uncoerced) val
>foo - Val "to foo" (e.g. >sender, >host), or fn to put/coerce/transform
<foo - Val "from foo" (e.g. <sender, <host), or fn to take/coerce/transform
->foo - Fn to put/coerce/transform
Type affixes may be used for clarity:
<prefix>-<name> - m-users, v-users, n-users, etc. (also nusers when unambiguous)
<name>-<postfix> - users-map, users-vec, user-count, etc.
Regarding name heirarchy:
When there's a significant num of syms with a meaningful hierarchy,
prefer names with descending hierarchy to emphasize structure and
related groups/functionality, e.g.:
`user-add`, `user-remove`, `user-mod` vs
`add-user`, `remove-user`, `mod-user`, etc.
Commit message tags (in priority order):
[wip] - Work-in-progress (still under development)
[mod] - Modify behaviour (=> breaking), [mod!], [mod!!], etc. for attention
[fix] - Fix broken behaviour (=> usu. non-breaking)
[new] - Add new behaviour (=> non-breaking)
[doc] - Documentation changes besides those better labelled as [mod], [fix], or [new]
[nop] - Other non-breaking changes (to implementation details, non-code changes, etc.)
[x] [y] - Single commit with multiple tags (in priority order), try avoid
Example commit messages:
v1.0.0 (2022-01-27) ; Tagged release
[new] [#122] Add new feature x (@contributor)
Version numbers:
Ver tables: X.Y.Z (without backticks)
Min ver: vX.Y.Z+
Elsewhere: vX.Y.Z
-cond
macro
cljs
(-cond throw? & clauses)
a-utf8-str
cljs
Example UTF-8 string for tests, etc.
abbreviate-ns
cljs
added in Encore v3.68.0 (2023-09-25)
(abbreviate-ns x)
(abbreviate-ns n-full x)
Give any nameable type (string, keyword, symbol), returns the same
type with at most `n-full` (default 1) unabbreviated namespace parts.
Example:
(abbreviate-ns 0 :foo.bar/baz) => :f.b/baz
(abbreviate-ns 1 'foo.bar/baz) => 'f.bar/baz
(abbreviate-ns 2 "foo.bar/baz") => "foo.bar/baz"
after-timeout
macro
cljs
(after-timeout msecs & body)
Alpha, subject to change.
Returns a TimeoutFuture that will execute body after timeout.
Body must be non-blocking or cheap.
ajax-call
cljs
added in Encore v3.74.0 (2023-11-06)
(ajax-call url {:keys [method params headers timeout-ms resp-type with-credentials? xhr-pool xhr-cb-fn xhr-timeout-ms], :as opts, :or {method :get, timeout-ms 10000, resp-type :auto, xhr-pool default-xhr-pool_, xhr-timeout-ms 2500}} callback-fn)
Queues a lightweight Ajax call with Google Closure's `goog.net.XhrIo` and
returns nil, or the resulting `goog.net.XhrIo` instance if one was
immediately available from the XHR pool:
(ajax-call
"http://localhost:8080/my-post-route" ; Endpoint URL
{:method :post ; ∈ #{:get :post :put}
:resp-type :text ; ∈ #{:auto :edn :json :xml :text}
:params {:username "Rich Hickey" :type "Awesome"} ; Request params
:headers {"Content-Type" "text/plain"} ; Request headers
:timeout-ms 7000
:with-credentials? false ; Enable if using CORS (requires xhr v2+)
:xhr-pool my-xhr-pool ; Optional `goog.net.XhrIoPool` instance or delay
:xhr-cb-fn (fn [xhr]) ; Optional fn to call with `XhrIo` from pool when available
:xhr-timeout-ms 2500 ; Optional max msecs to wait on pool for `XhrIo`
}
(fn ajax-callback-fn [resp-map]
(let [{:keys [success? ?status ?error ?content ?content-type]} resp-map]
;; ?status ; ∈ #{nil 200 404 ...}, non-nil iff server responded
;; ?error ; ∈ #{nil <http-error-status-code> <exception> :timeout
:abort :http-error :exception :xhr-pool-depleted}
(js/alert (str "Ajax response: " resp-map)))))
approx==
cljs
(approx== x y)
(approx== signf x y)
as-?email
cljs
(as-?email ?s)
(as-?email max-len ?s)
as-?float
cljs
(as-?float x)
as-?inst
cljs
added in Encore v3.98.0 (2024-04-08)
(as-?inst x)
Returns given ?arg as platform instant (`java.time.Instant` or `js/Date`), or nil.
as-?nat-float
cljs
(as-?nat-float x)
as-?nat-int
cljs
(as-?nat-int x)
as-?nblank
cljs
(as-?nblank x)
as-?nblank-trim
cljs
(as-?nblank-trim x)
as-?nemail
cljs
(as-?nemail ?s)
(as-?nemail max-len ?s)
as-?nempty-str
cljs
(as-?nempty-str x)
as-?nzero
cljs
(as-?nzero x)
as-?pos-float
cljs
(as-?pos-float x)
as-?pos-int
cljs
(as-?pos-int x)
as-?qname
cljs
(as-?qname x)
as-?udt
cljs
(as-?udt x)
Returns given ?arg as (pos/neg) milliseconds since Unix epoch, or nil.
as-email
cljs
(as-email x)
(as-email n x)
as-nat-float
cljs
(as-nat-float x)
as-nat-int
cljs
(as-nat-int x)
as-nblank
cljs
(as-nblank x)
as-nblank-trim
cljs
(as-nblank-trim x)
as-nemail
cljs
(as-nemail x)
(as-nemail n x)
as-nempty-str
cljs
(as-nempty-str x)
as-pnum-complement
cljs
(as-pnum-complement x)
as-pos-float
cljs
(as-pos-float x)
as-pos-int
cljs
(as-pos-int x)
assert-min-encore-version
macro
cljs
(assert-min-encore-version min-version)
Version check for dependency conflicts, etc.
assoc-nx
cljs
(assoc-nx m k v)
(assoc-nx m m-kvs)
(assoc-nx m k v & kvs)
Assocs each kv to given ?map iff its key doesn't already exist.
assoc-some
cljs
(assoc-some m k v)
(assoc-some m m-kvs)
(assoc-some m k v & kvs)
Assocs each kv to given ?map iff its value is not nil.
assoc-when
cljs
(assoc-when m k v)
(assoc-when m m-kvs)
(assoc-when m k v & kvs)
Assocs each kv to given ?map iff its val is truthy.
bench
macro
cljs
(bench nlaps opts & body)
binding
macro
cljs
added in Encore v3.98.0 (2024-04-08)
(binding bindings & body)
For Clj: faster version of `core/binding`.
For Cljs: identical to `core/binding`.
cache
cljs
added in Encore v3.36.0 (2022-11-18)
(cache f)
(cache {:keys [size ttl-ms gc-every], :as opts} f)
Returns a cached version of given referentially transparent function `f`.
Like `core/memoize` but:
- Often faster, depending on options.
- Prevents race conditions on writes.
- Supports cache invalidation by prepending args with:
- `:cache/del` ; Delete cached item for subsequent args, returns nil.
- `:cache/fresh` ; Renew cached item for subsequent args, returns new val.
- Supports options:
- `ttl-ms` ; Expire cached items after <this> many msecs.
- `size` ; Restrict cache size to <this> many items at the next garbage
; collection (GC).
- `gc-every` ; Run garbage collection (GC) approximately once every
; <this> many calls to cached fn. If unspecified, GC rate
; will be determined automatically based on `size`.
See also `defn-cached`, `fmemoize`, `memoize-last`.
call-after-timeout
cljs
(call-after-timeout msecs f)
(call-after-timeout impl_ msecs f)
Alpha, subject to change.
Returns a TimeoutFuture that will execute `f` after given msecs.
Does NOT do any automatic binding conveyance.
Performance depends on the provided timer implementation (`impl_`).
The default implementation offers O(logn) add, O(1) cancel, O(1) tick.
See `ITimeoutImpl` for extending to arbitrary timer implementations.
case-eval
macro
cljs
(case-eval expr & clauses)
Like `case` but test expressions are evaluated for their compile-time value.
case-insensitive-str=
cljs
added in Encore v3.25.0 (2022-10-13)
(case-insensitive-str= s1 s2)
Returns true iff given strings are equal, ignoring case.
catching
macro
cljs
(catching expr)
(catching error-type expr)
Terse, cross-platform (try* expr (catch :all _)).
See also `try*` for more flexibility.
catching-rf
cljs
added in Encore v3.32.0 (2022-11-07)
(catching-rf rf)
(catching-rf error-fn rf)
Returns wrapper around given reducing function `rf` so that if `rf`
throws, (error-fn <thrown-error> <contextual-data>) will be called.
The default `error-fn` will rethrow the original error, wrapped in
extra contextual information to aid debugging.
See also `catching-xform`.
chan?
cljs
(chan? x)
Returns true iff given a `clojure.core.async` channel.
chance
cljs
(chance prob)
Returns true with given probability ∈ ℝ[0,1].
check-all
macro
cljs
(check-all test)
(check-all test & more)
Returns all logical false/throwing expressions (ids/forms), or nil.
check-some
macro
cljs
(check-some test & more)
(check-some test)
Returns first logical false/throwing expression (id/form), or nil.
clamp
cljs
(clamp nmin nmax n)
clamp*
macro
cljs
(clamp* nmin nmax n)
clamp-float
cljs
(clamp-float nmin nmax n)
clamp-int
cljs
(clamp-int nmin nmax n)
comp-middleware
cljs
added in Encore v3.106.0 (2024-05-01)
(comp-middleware fs)
(comp-middleware f1 f2)
(comp-middleware f1 f2 f3)
(comp-middleware f1 f2 f3 & fs)
Returns a single (composite) unary fn that applies all given unary fns
sequentially (left->right!: f1, f2, ...). If any given fn returns nil, the
returned composite fn immediately returns nil:
((comp-middleware inc #(* % 2) inc) 1) => 5 ; (inc (* (inc 1) 2))
((comp-middleware inc (fn [_] nil) (fn [_] (throw (Exception. "Never thrown!")))) 1) => nil
Useful for composing Ring-style middleware fns.
compile-if
macro
cljs
(compile-if test then)
(compile-if test then else)
Evaluates `test`. If it returns logical true (and doesn't throw), expands
to `then`, otherwise expands to `else`.
compile-when
macro
cljs
(compile-when test & body)
cond
macro
cljs
(cond & clauses)
Supersets `core/cond` functionality. Like `core/cond` but supports implicit
final `else` clause, and special clause keywords for advanced behaviour:
(cond
:let [x "x"] ; Establish let binding/s for remaining forms
:binding [*x* "x"] ; Establish dynamic binding/s for remaining forms
:do (println (str "x value: " x)) ; Eval expr for side-effects
:if-let [y "y"
z nil]
"y and z were both truthy"
:if-some [y "y"
z nil]
"y and z were both non-nil")
`:let` support inspired by <https://github.com/Engelberg/better-cond>.
Simple, flexible way to eliminate deeply-nested control flow code.
cond!
macro
cljs
(cond! & clauses)
Like `cond` but throws on non-match like `case` and `condp`.
conj-some
cljs
(conj-some)
(conj-some coll)
(conj-some coll x)
(conj-some coll x & more)
Conjoins each non-nil value.
conj-when
cljs
(conj-when)
(conj-when coll)
(conj-when coll x)
(conj-when coll x & more)
Conjoins each truthy value.
const-str=
cljs
(const-str= s1 s2)
Constant-time string equality checker.
Useful to prevent timing attacks, etc.
contains-in?
cljs
(contains-in? coll ks k)
(contains-in? coll ks)
convey-reduced
cljs
(convey-reduced x)
count-words
cljs
(count-words s)
counter
cljs
(counter)
(counter init)
Returns a fast atomic `Counter` with `init` initial integer value with:
- @counter => Return current val
- (counter) => Add 1 and return old val
- (counter n) => Add n and return old val
- (counter action n) => Experimental, action ∈
{:add :set :set-get :get-set :get-add :add-get}.
declare-remote
macro
cljs
(declare-remote & syms)
Declares given ns-qualified symbols, preserving metadata.
Clj only. Useful for circular dependencies.
def*
macro
cljs
added in Encore v3.67.0 (2023-09-08)
(def* sym & args)
Like `core/def` but supports attrs map.
defalias
macro
cljs
(defalias src)
(defalias alias src)
(defalias alias src alias-attrs)
(defalias alias src alias-attrs alias-body)
Defines a local alias for the var identified by given qualified
source symbol: (defalias my-map clojure.core/map), etc.
Source var's metadata will be preserved (docstring, arglists, etc.).
Changes to Clj source var's value will also be applied to alias.
See also `defaliases`.
defaliases
macro
cljs
added in Encore v3.58.0 (2023-04-09)
(defaliases {:keys [alias src attrs body]} ...)
Bulk version of `defalias`.
Takes source symbols or {:keys [alias src attrs body]} maps:
(defaliases
{:alias my-map, :src map, :attrs {:doc "My `map` alias"}}
{:alias my-vec, :src vec, :attrs {:doc "My `vec` alias"}})
default-timeout-impl_
cljs
Simple one-timeout timeout implementation provided by platform timer.
O(logn) add, O(1) cancel, O(1) tick. Fns must be non-blocking or cheap.
Similar efficiency to core.async timers (binary heap vs DelayQueue).
defn-cached
macro
cljs
added in Encore v3.36.0 (2022-11-18)
(defn-cached sym cache-opts & body)
Defines a cached function.
Like (def <sym> (cache <cache-opts> <body...>)), but preserves
:arglists (arity) metadata as with `defn`:
(defn-cached ^:private my-fn {:ttl-ms 500}
"Does something interesting, caches resultes for 500 msecs"
[n]
(rand-int n))
defonce
macro
cljs
(defonce sym & args)
Like `core/defonce` but supports docstring and attrs map.
defstub
macro
cljs
(defstub stub-sym)
Experimental, subject to change without notice!!
Declares a stub var that can be initialized from any namespace with
`unstub-<stub-name>`.
Decouples a var's declaration (location) and its initialization (value).
Useful for defining vars in a shared ns from elsewhere (e.g. a private
or cyclic ns).
deprecated
macro
cljs
(deprecated & body)
Elides body when `taoensso.elide-deprecated` JVM property or
`TAOENSSO_ELIDE_DEPRECATED` environment variable is ∈ #{"true" "TRUE"}.
derefable?
cljs
(derefable? x)
dissoc-in
cljs
(dissoc-in m ks dissoc-k)
(dissoc-in m ks dissoc-k & more)
(dissoc-in m ks)
distinct-elements?
cljs
(distinct-elements? x)
doto-cond
macro
cljs
(doto-cond [sym x] & clauses)
Cross between `doto`, `cond->` and `as->`.
editable?
cljs
(editable? x)
ensure-set
cljs
(ensure-set x)
ensure-vec
cljs
(ensure-vec x)
error?
cljs
(error? x)
Returns true iff given platform error (`Throwable` or `js/Error`).
ex-cause
cljs
added in Encore v3.41.0 (2022-12-03)
(ex-cause x)
Same as `core/ex-cause` (added in Clojure v1.10).
ex-data
cljs
added in Encore v3.98.0 (2024-04-08)
(ex-data x)
Same as `core/ex-data` (added in Clojure v1.4).
ex-message
cljs
added in Encore v3.41.0 (2022-12-03)
(ex-message x)
Same as `core/ex-message` (added in Clojure v1.10).
ex-root
cljs
added in Encore v3.98.0 (2024-04-08)
(ex-root x)
Returns root cause of given platform error.
exp-backoff
cljs
(exp-backoff n-attempt)
(exp-backoff n-attempt {:keys [min max factor], :or {factor 1000}})
Returns binary exponential backoff value for n<=36.
explode-keyword
cljs
(explode-keyword k)
filter-keys
cljs
(filter-keys key-pred m)
Returns given ?map, retaining only keys for which (key-pred <key>) is truthy.
filter-vals
cljs
(filter-vals val-pred m)
Returns given ?map, retaining only keys for which (val-pred <val>) is truthy.
finite-num?
cljs
(finite-num? x)
Returns true iff given a number (of standard type) that is:
finite (excl. NaN and infinities).
float?
cljs
(float? x)
Returns true iff given a number (of standard type) that is:
a fixed-precision floating-point (incl. NaN and infinities).
fmemoize
cljs
(fmemoize f)
For Clj: fastest possible memoize. Non-racey, 0-7 arity only.
For Cljs: same as `core/memoize`.
force-ref
cljs
(force-ref x)
force-var
cljs
(force-var x)
future*
macro
cljs
added in Encore v3.72.0 (2023-10-24)
(future* form)
(future* executor-service form)
Experimental, subject to change without notice!
Like `future` but supports use of given custom
`java.util.concurrent.ExecutorService`.
Will default to using JVM 21+ virtual threads when possible,
otherwise an unbounded fixed daemon thread pool.
See also `future-call`, `virtual-executor`, `pool-executor`.
get*
macro
cljs
added in Encore v3.82.0 (2024-02-23)
(get* m k)
(get* m k not-found)
(get* m k1 k2 not-found)
(get* m k1 k2 k3 not-found)
Macro version of `get` that:
1. Avoids unnecessary evaluation of `not-found`.
Useful when `not-found` is expensive or contains side-effects.
2. Supports multiple prioritized keys (k1, k2, etc.). Returns val for
first key that exists in map. Useful for key aliases or fallbacks.
Equivalent to:
(cond
(contains? m k1) (get m k1)
(contains? m k2) (get m k2)
...
:else not-found)
get-env
macro
cljs
added in Encore v3.75.0 (2024-01-29)
(get-env {:keys [as default return], :or {as :str, return :value}} spec)
Flexible cross-platform util to return an environmental config value.
Given an id (const keyword/string) or vector of desc-priority alternative
ids, parse and return the first of the following that exists:
- JVM property value for id
- Environment variable value for id
- Classpath resource content for id
Ids may include optional segment in `<>` tag (e.g. `<.edn>`).
Ids may include `<.?platform.?>` tag for auto replacement:
`<.platform>` => ".clj" / ".cljs"
`<platform->` => "clj-" / "cljs-", etc.
Search order: desc by combined [alt-index platform(y/n) optional(y/n)].
So (get-env {:as :edn} [:my-app/alt1<.platform><.edn> :my-app/alt2])
will parse and return the first of the following that exists:
1. Alt1 +platform +optional (optional .edn suffix)
1a. `my-app.alt1.clj.edn` JVM property value
1b. `MY_APP_ALT1_CLJ_EDN` environment variable value
1c. `my-app.alt1.clj.edn` classpath resource content
2. Alt1 +platform -optional (optional .edn suffix)
2a. `my-app.alt1.clj` JVM property value
2b. `MY_APP_ALT1_CLJ` environment variable value
2c. `my-app.alt1.clj` classpath resource content
3. Alt1 -platform +optional (optional .edn suffix)
3a. `my-app.alt1.edn` JVM property value
3b. `MY_APP_ALT1_EDN` environment variable value
3c. `my-app.alt1.edn` classpath resource content
4. Alt1 -platform -optional (optional .edn suffix)
4a. `my-app.alt1` JVM property value
4b. `MY_APP_ALT1` environment variable value
4c. `my-app.alt1` classpath resource content
5. Alt2
5a. `my-app.alt2` JVM property value
5b. `MY_APP_ALT2` environment variable value
5c. `my-app.alt2` classpath resource content
Options:
`:as` - Parse found value as given type ∈ #{:str :bool :edn} (default `:str`).
`:default` - Fallback to return unparsed if no value found during search (default `nil`).
`:return` - Return type ∈ #{:value :map :explain} (default `:value`).
For Cljs: resulting config value must be something that can be safely
embedded in code during macro expansion!
Advanced: if resulting config value is a single top-level symbol, it will
be evaluated during macro expansion.
TIP!: Use the {:return :explain} option in tests or at the REPL to
verify/inspect resulting config value, config source, and specific
search order of prop/env/res ids.
get-truss-data
cljs
(get-truss-data)
Returns current value of dynamic assertion data.
get-win-loc
cljs
(get-win-loc)
Returns current window location as
{:keys [href protocol hostname host pathname search hash]}.
get1
cljs
added in Encore v3.67.0 (2023-09-08)
(get1 m k)
(get1 m k not-found)
(get1 m k1 k2 not-found)
(get1 m k1 k2 k3 not-found)
Like `get` but returns val for first key that exists in map.
Useful for key aliases or fallbacks. See also `get*`.
have
macro
cljs
(have x)
(have pred (:in) x)
(have pred (:in) x & more-xs)
Takes a (fn pred [x]) => truthy, and >=1 vals.
Tests pred against each val,trapping errors.
If any pred test fails, throws a detailed `ExceptionInfo`.
Otherwise returns input val/s for convenient inline-use/binding.
Respects `*assert*`, so tests can be elided from production if desired
(meaning zero runtime cost).
Provides a small, simple, flexible feature subset to alternative tools like
clojure.spec, core.typed, prismatic/schema, etc.
Examples:
(defn my-trim [x] (str/trim (have string? x)))
;; Attach arb optional info to violations using `:data`:
(have string? x
:data {:my-arbitrary-debug-info "foo"})
;; Assert inside collections using `:in`:
(have string? :in ["foo" "bar"])
Regarding use within other macros:
Due to CLJ-865, callsite info like line number of outer macro
will be lost. See `keep-callsite` for workaround.
See also `have?`, `have!`.
have!
macro
cljs
(have! x)
(have! pred (:in) x)
(have! pred (:in) x & more-xs)
Like `have` but ignores `*assert*` value (so can never be elided!).
Useful for important conditions in production (e.g. security checks).
have!?
macro
cljs
(have!? x)
(have!? pred (:in) x)
(have!? pred (:in) x & more-xs)
Returns `true` on successful tests, and ignores `*assert*` value
(so can never be elided!).
**WARNING**: Do NOT use in `:pre`/`:post` conditions since those always
respect `*assert*`, contradicting the intention of the bang (`!`) here.
have-core-async?
cljs
Is `clojure.core.async` present (not necessarily loaded)?
have?
macro
cljs
(have? x)
(have? pred (:in) x)
(have? pred (:in) x & more-xs)
Like `have` but returns `true` on successful tests.
Handy for `:pre`/`:post` conditions. Compare:
((fn my-fn [] {:post [(have nil? %)]} nil)) ; {:post [nil ]} FAILS
((fn my-fn [] {:post [(have? nil? %)]} nil)) ; {:post [true]} passes as intended
identical-kw?
macro
cljs
added in Encore v3.67.0 (2023-09-08)
(identical-kw? x y)
Returns true iff two keywords are identical.
Portable and maximally fast.
For Clj this expands to: `(identical? x y)`
For Cljs this expands to: `(keyword-identical? x y)`
if-clj
macro
cljs
(if-clj then & [else])
if-cljs
macro
cljs
(if-cljs then & [else])
if-let
macro
cljs
(if-let bindings then)
(if-let bindings then else)
Supersets `core/if-let` functionality. Like `core/if-let` but supports multiple
bindings, and unconditional bindings with `:let`:
(if-let [x (rand-nth [:x1 :x2 false nil ]) ; Bind truthy x, or -> `else`
:let [y (rand-nth [:y1 :y2 false nil x ])] ; Bind any y
z (rand-nth [:z1 :z2 false nil x y]) ; Bind truthy z, or -> `else`
]
[:then-clause x y z]
[:else-clause])
if-not
macro
cljs
(if-not test-or-bindings then)
(if-not test-or-bindings then else)
Supersets `core/if-not` functionality.
Same as `encore/if-let` with `then` `and `else` forms swapped.
if-some
macro
cljs
(if-some bindings then)
(if-some bindings then else)
Supersets `core/if-some` functionality. Like `core/if-some` but supports multiple
bindings, and unconditional bindings with `:let`:
(if-some [x (rand-nth [:x1 :x2 false nil ]) ; Bind non-nil x, or -> `else`
:let [y (rand-nth [:y1 :y2 false nil x ])] ; Bind any y
z (rand-nth [:z1 :z2 false nil x y]) ; Bind non-nil z, or -> `else`
]
[:then-clause x y z]
[:else-clause])
inst->udt
cljs
added in Encore v3.98.0 (2024-04-08)
(inst->udt inst)
Returns given `js/Date` as milliseconds since Unix epoch.
inst?
cljs
(inst? x)
Returns true iff given platform instant (`java.time.Instant` or `js/Date`).
instance!
macro
cljs
added in Encore v3.51.0 (2023-03-13)
(instance! class arg)
(instance! class arg {:keys [msg context param ...]})
(instance! class arg & {:keys [msg context param ...]})
If (instance? class arg) is true, returns arg.
Otherwise throws runtime `ExceptionInfo` with `unexpected-arg!`.
See `unexpected-arg!` for more info.
int?
cljs
(int? x)
Returns true iff given a number (of standard type) that is:
a fixed-precision integer.
interleave-all
cljs
(interleave-all)
(interleave-all c1)
(interleave-all c1 c2)
(interleave-all c1 c2 & colls)
Like `interleave` but includes all items (i.e. stops when the longest
rather than shortest coll has been consumed).
into!
cljs
(into! to!)
(into! to! from)
(into! to! xform from)
Like `into` but assumes `to!` is a transient, and doesn't call
`persist!` when done. Useful as a performance optimization in some cases.
into-all
cljs
(into-all to from)
(into-all to from & more)
Like `into` but supports multiple "from"s.
into-str
cljs
(into-str & xs)
Simple Hiccup-like string templating to complement Tempura.
invert-map
cljs
(invert-map m)
Returns given ?map with keys and vals inverted, dropping non-unique vals!
invert-map!
cljs
added in Encore v3.121.0 (2024-09-25)
(invert-map! m)
Like `invert-map` but throws on non-unique vals.
is!
cljs
(is! x)
(is! pred x)
(is! pred x data)
Lightweight `have!` that provides less diagnostic info.
ITimeoutFuture
protocol
cljs
members
tf-cancel!
(tf-cancel! _)
Returns true iff the timeout was successfully cancelled (i.e. was previously pending).
tf-poll
(tf-poll _)
Returns :timeout/pending, :timeout/cancelled, or the timeout's completed result.
tf-done?
(tf-done? _)
Returns true iff the timeout is not pending (i.e. has a completed result or is cancelled).
tf-state
(tf-state _)
Returns a map of timeout's public state.
tf-pending?
(tf-pending? _)
Returns true iff the timeout is pending.
tf-cancelled?
(tf-cancelled? _)
Returns true iff the timeout is cancelled.
ITimeoutImpl
protocol
cljs
members
-schedule-timeout
(-schedule-timeout _ msecs f)
keep-callsite
macro
cljs
added in Encore v3.61.0 (2023-07-07)
(keep-callsite form)
The long-standing CLJ-865 means that it's not possible for an inner
macro to access the `&form` metadata of a wrapping outer macro. This
means that wrapped macros lose calsite info, etc.
This util offers a workaround for macro authors:
(defmacro inner [] (meta &form))
(defmacro outer [] (keep-callsite `(inner)))
(outer) => {:keys [line column ...]}
keys-by
cljs
(keys-by f coll)
Returns {(f x) x} ?map for xs in `coll`.
ks-nnil?
cljs
(ks-nnil? ks m)
lazy-seq?
cljs
(lazy-seq? x)
map-entry
cljs
added in Encore v3.75.0 (2024-01-29)
(map-entry k v)
Returns a `MapEntry` with given key and value.
map-keys
cljs
(map-keys key-fn m)
Returns given ?map with (key-fn <key>) keys.
map-vals
cljs
(map-vals val-fn m)
Returns given ?map with (val-fn <val>) vals.
mapply
cljs
(mapply f & args)
Like `apply` but calls `seq-kvs` on final arg.
matching-error
cljs
added in Encore v3.70.0 (2023-10-17)
(matching-error err)
(matching-error kind err)
(matching-error kind pattern err)
Given a platform error and criteria, returns the error if it matches
all criteria. Otherwise returns nil.
`kind` may be:
- A predicate function, (fn match? [x]) -> bool
- A class (e.g. `ArithmeticException`, `AssertionError`, etc.)
- `:all` => any platform error (Throwable or js/Error, etc.)
- `:common` => common platform error (Exception or js/Error)
- `:ex-info` => an `IExceptionInfo` as created by `ex-info`
- A set of `kind`s as above, at least one of which must match
`pattern` may be:
- A string or Regex against which `ex-message` must match
- A map against which `ex-data` must match using `submap?`
- A set of `pattern`s as above, at least one of which must match
When an error with (nested) causes doesn't match, a match will be attempted
against its (nested) causes.
Low-level util, see also `throws`, `throws?`.
max*
macro
cljs
(max* n1 n2)
memoize
cljs
(memoize f)
(memoize ttl-ms f)
(memoize size ttl-ms f)
Alternative way to call `cache`, provided mostly for back compatibility.
See `cache` docstring for details.
memoize-last
cljs
(memoize-last f)
Like `core/memoize` but only caches the given fn's latest input.
Speeds repeated fn calls with the same arguments.
Great for ReactJS render fn caching, etc.
merge
cljs
(merge)
(merge m1)
(merge m1 m2)
(merge m1 m2 m3)
(merge m1 m2 m3 & more)
Like `core/merge` but:
- Supports `:merge/dissoc` vals.
- Often faster, with much better worst-case performance.
merge-keywords
cljs
(merge-keywords ks)
(merge-keywords ks omit-slash?)
merge-nx
cljs
added in Encore v3.128.0 (2024-10-30)
(merge-nx)
(merge-nx m1)
(merge-nx m1 m2)
(merge-nx m1 m2 m3)
(merge-nx m1 m2 m3 & more)
Like `core/merge` but:
- Preserves existing values, e.g. (merge-nx <user-opts> <defaults>).
- Supports `:merge/dissoc` vals.
- Often faster, with much better worst-case performance.
merge-url-with-query-string
cljs
(merge-url-with-query-string url m)
merge-with
cljs
(merge-with f)
(merge-with f m1)
(merge-with f m1 m2)
(merge-with f m1 m2 m3)
(merge-with f m1 m2 m3 & more)
Like `core/merge-with` but:
- Supports `:merge/dissoc` vals.
- Often faster, with much better worst-case performance.
min*
macro
cljs
(min* n1 n2)
ms
cljs
(ms {:keys [years months weeks days hours mins secs msecs ms]})
(ms k1 v1)
(ms k1 v1 k2 v2)
(ms k1 v1 k2 v2 & more)
Returns ~number of milliseconds in period defined by given args.
ms->secs
cljs
(ms->secs ms)
msecs
macro
cljs
(msecs opts)
(msecs & {:as opts, :keys [years months weeks days hours mins secs msecs ms]})
name-filter
cljs
added in Encore v3.67.0 (2023-09-08)
(name-filter spec)
Given filter `spec`, returns a compiled (fn match? [x]) that:
- Takes a string, keyword, symbol, or namespace.
- Returns true iff input matches spec.
Useful for efficiently filtering namespaces, class names, id kws, etc.
Spec may be:
- A namespace to match exactly
- A regex pattern to match
- A str/kw/sym to match, with "*" and "(.*)" as wildcards:
"foo.*" will match "foo.bar"
"foo(.*)" will match "foo.bar" and "foo"
If you need literal "*"s, use #"\*" regex instead.
- A set/vector of the above to match any
- A map, {:allow <spec> :disallow <spec>} with specs as the above:
If present, `:allow` spec MUST match, AND
If present, `:disallow` spec MUST NOT match.
Spec examples:
*ns*, #{}, "*", "foo.bar", "foo.bar.*", "foo.bar(.*)",
#{"foo" "bar.*"}, #"(foo1|foo2)\.bar",
{:allow #{"foo" "bar.*"} :disallow #{"foo.*.bar.*"}}.
name-with-attrs
cljs
(name-with-attrs sym args)
(name-with-attrs sym args attrs-merge)
Given a symbol and args, returns [<name-with-attrs-meta> <args> <attrs>]
with support for `defn` style `?docstring` and `?attrs-map`.
nameable?
cljs
(nameable? x)
nanoid
cljs
(nanoid)
(nanoid len)
(nanoid prefer-secure? len)
Returns a random "Nano ID" of given length, Ref. <https://github.com/ai/nanoid>.
Faster, variable-length version of (rand-id-fn {:chars :nanoid}).
126 bits of entropy with default length (21).
See also `uuid-str`, `rand-id-fn`.
nat-float?
cljs
(nat-float? x)
nblank-str?
cljs
(nblank-str? x)
neg-float?
cljs
(neg-float? x)
nempty-str?
cljs
(nempty-str? x)
nested-merge
cljs
(nested-merge)
(nested-merge m1)
(nested-merge m1 m2)
(nested-merge m1 m2 m3)
(nested-merge m1 m2 m3 & more)
Like `core/merge` but:
- Recursively merges nested maps.
- Supports `:merge/dissoc` vals.
- Often faster, with much better worst-case performance.
nested-merge-with
cljs
(nested-merge-with f)
(nested-merge-with f m1)
(nested-merge-with f m1 m2)
(nested-merge-with f m1 m2 m3)
(nested-merge-with f m1 m2 m3 & more)
Like `core/merge-with` but:
- Recursively merges nested maps.
- Supports `:merge/dissoc` vals.
- Often faster, with much better worst-case performance.
new-object
macro
cljs
(new-object)
newline
cljs
added in Encore v3.68.0 (2023-09-25)
newlines
cljs
added in Encore v3.68.0 (2023-09-25)
nnil
cljs
(nnil)
(nnil x)
(nnil x y)
(nnil x y z)
(nnil x y z & more)
Returns first non-nil arg, or nil.
node-paths
cljs
(node-paths m)
(node-paths node-pred m)
(node-paths node-pred m basis)
norm-word-breaks
cljs
(norm-word-breaks s)
Converts all word breaks of any form and length (including line breaks of any
form, tabs, spaces, etc.) to a single regular space.
not-empty-coll
cljs
(not-empty-coll x)
now-dt
cljs
(now-dt)
Returns current system instant as `js/Date`.
now-inst
cljs
added in Encore v3.66.0 (2023-08-23)
(now-inst)
Returns current system instant as `js/Date`.
now-nano
cljs
Returns current value of best-resolution time source as nanoseconds.
now-udt
cljs
(now-udt)
Returns current system insant as milliseconds since Unix epoch.
nzero-num?
cljs
(nzero-num? x)
oget
cljs
(oget k)
(oget o k)
(oget o k not-found)
Like `get` for JS objects.
oget-in
cljs
(oget-in ks)
(oget-in o ks)
(oget-in o ks not-found)
Like `get-in` for JS objects.
or-some
macro
cljs
added in Encore v3.67.0 (2023-09-08)
(or-some)
(or-some x)
(or-some x & next)
Like `or`, but returns the first non-nil form (may be falsey).
oset
cljs
(oset o k v)
Like `assoc` for JS objects.
oset-in
cljs
(oset-in o ks v)
Experimental, subject to change without notice.
Like `assoc-in` for JS objects.
parse-js-int
cljs
(parse-js-int s)
parse-query-params
cljs
(parse-query-params s & [keywordize? encoding])
Based on `ring-codec/form-decode`.
parse-version
cljs
(parse-version x)
pnum-complement
cljs
(pnum-complement pnum)
pnum?
cljs
(pnum? x)
Returns true iff given number in unsigned unit proportion interval ∈ℝ[0,1].
pos-float?
cljs
(pos-float? x)
pr
cljs
added in Encore v3.98.0 (2024-04-08)
pr-edn
cljs
(pr-edn x)
Prints given arg to an edn string readable with `read-edn`.
pr-json
cljs
added in Encore v3.98.0 (2024-04-08)
(pr-json x)
Returns given Cljs argument as JSON string.
pred
cljs
added in Encore v3.75.0 (2024-01-29)
(pred pred-fn)
Experimental, subject to change without notice.
Wraps given predicate fn to return `Pred` for use with `submap?`, etc.
Arity of predicate fn depends on context in which it'll be used.
See also `pred-fn`.
pred-fn
cljs
added in Encore v3.75.0 (2024-01-29)
(pred-fn pred)
Experimental, subject to change without notice.
Returns unwrapped predicate fn when given `Pred`, otherwise returns nil.
See also `pred`.
preserve-reduced
cljs
(preserve-reduced rf)
Public version of `core/preserving-reduced`.
print
cljs
added in Encore v3.98.0 (2024-04-08)
Identical to `core/print`.
println
cljs
added in Encore v3.98.0 (2024-04-08)
Identical to `core/println`.
prn
cljs
added in Encore v3.98.0 (2024-04-08)
pull-val!
cljs
(pull-val! atom_ k)
(pull-val! atom_ k not-found)
Removes and returns value mapped to key:
(let [a (atom {:k :v})]
[(pull-val! a :k) @a]) => [:v {}]
qb
macro
cljs
(qb spec form & more)
(qb spec form)
Simple util to benchmark/compare runtime of given form/s.
Runs sets of laps for each given form, recording the total runtime of each set.
Returns the the total runtime in msecs of the fastest set of laps for each form.
(quick-bench [<num-sets> <num-laps>] <form1> <form2> <...>) =>
[<total runtime msecs of fastest set of laps for form1>
<total runtime msecs of fastest set of laps for form2>
<...>]
Total number of runs for each form is: `num-sets` * `num-laps`
If omitted, the default `num-sets` is 6 (to include warmup):
(quick-bench <num-laps> <form1> <form2> <...>)
Example (comparing runtime of `first` and `nth` against vector):
(let [v [:a]] (quick-bench 1e6 (first v) (nth v 0))) => [67.43 39.05]
qualified-ident?
cljs
(qualified-ident? x)
qualified-keyword?
cljs
(qualified-keyword? x)
qualified-symbol?
cljs
(qualified-symbol? x)
queue
cljs
(queue coll)
(queue)
Returns a new `PersistentQueue`.
queue*
cljs
(queue* & items)
Returns a new `PersistentQueue` given items.
queue?
cljs
(queue? x)
Returns true iff given a `PersistentQueue`.
quick-bench
macro
cljs
(quick-bench spec form & more)
(quick-bench spec form)
Simple util to benchmark/compare runtime of given form/s.
Runs sets of laps for each given form, recording the total runtime of each set.
Returns the the total runtime in msecs of the fastest set of laps for each form.
(quick-bench [<num-sets> <num-laps>] <form1> <form2> <...>) =>
[<total runtime msecs of fastest set of laps for form1>
<total runtime msecs of fastest set of laps for form2>
<...>]
Total number of runs for each form is: `num-sets` * `num-laps`
If omitted, the default `num-sets` is 6 (to include warmup):
(quick-bench <num-laps> <form1> <form2> <...>)
Example (comparing runtime of `first` and `nth` against vector):
(let [v [:a]] (quick-bench 1e6 (first v) (nth v 0))) => [67.43 39.05]
rand-bytes
cljs
added in Encore v3.115.0 (2024-08-18)
(rand-bytes prefer-secure? size)
Returns a random byte array of given size.
rand-id-fn
cljs
added in Encore v3.75.0 (2024-01-29)
(rand-id-fn {:keys [chars len rand-bytes-fn], :or {chars :nanoid, len 21, rand-bytes-fn (partial rand-bytes true)}})
Returns a (fn rand-id []) that returns random id strings.
Options include:
`:chars` - ∈ #{<string> :nanoid :alphanumeric :no-look-alikes ...}
`:len` - Length of id strings to generate
`:rand-bytes-fn` - Optional (fn [size]) to return random byte array of given size
See also `uuid-str`, `nano-id`.
rate-limiter
cljs
(rate-limiter spec)
(rate-limiter opts spec)
Takes a spec of form
[ [<n-max-reqs> <msecs-window>] ...] or ; Unnamed limits
{<limit-id> [<n-max-reqs> <msecs-window>]} ; Named limits
and returns stateful (fn a-rate-limiter [] [req-id] [command req-id]).
Call the returned limiter fn with a request id (any Clojure value!) to
enforce limits independently for each id.
For example, (limiter-fn <ip-address-string>) will return:
- Falsey when allowed (all limits pass for given IP), or
- Truthy when disallowed (any limits fail for given IP):
[<worst-limit-id> <worst-backoff-msecs> {<limit-id> <backoff-msecs>}]
Or call the returned limiter fn with an extra command argument:
(limiter-fn :rl/peek <req-id) - Check limits WITHOUT incrementing count
(limiter-fn :rl/reset <req-id) - Reset all limits for given req-id
rcompare
cljs
(rcompare x y)
re-pattern?
cljs
(re-pattern? x)
read-edn
cljs
(read-edn s)
(read-edn opts s)
Reads given edn string to return a Clj/s value.
read-json
cljs
added in Encore v3.98.0 (2024-04-08)
(read-json s)
(read-json kw-keys? s)
Reads given JSON string to return a Cljs value.
reassoc-some
cljs
(reassoc-some m k v)
(reassoc-some m m-kvs)
(reassoc-some m k v & kvs)
Assocs each kv to given ?map if its value is nil, otherwise dissocs it.
reduce-indexed
cljs
(reduce-indexed rf init coll)
Like `reduce` but takes (rf [acc idx in]) with idx as in `map-indexed`.
As `reduce-kv` against vector coll, but works on any seqable coll type.
reduce-interleave-all
cljs
added in Encore v3.66.0 (2023-08-23)
(reduce-interleave-all rf init colls)
Reduces sequence of elements interleaved from given `colls`.
(reduce-interleave-all conj [] [[:a :b] [1 2 3]]) => [:a 1 :b 2 3]
reduce-kvs
cljs
(reduce-kvs rf init kvs)
Like `reduce-kv` but takes a flat sequence of kv pairs.
reduce-multi
cljs
added in Encore v3.66.0 (2023-08-23)
(reduce-multi rf init coll)
(reduce-multi rf1 init1 rf2 init2 coll)
(reduce-multi rf1 init1 rf2 init2 rf3 init3 coll)
Like `reduce` but supports separate simultaneous accumulators
as a micro-optimization when reducing a large collection multiple
times.
reduce-n
cljs
(reduce-n rf init end)
(reduce-n rf init start end)
(reduce-n rf init start end step)
No longer useful with Clojure 1.7+, just use (reduce f init (range ...)).
reduce-obj
cljs
(reduce-obj f init o)
Like `reduce-kv` but for JavaScript objects.
reduce-top
cljs
(reduce-top n rf init coll)
(reduce-top n keyfn rf init coll)
(reduce-top n keyfn cmp rf init coll)
Reduces the top `n` items from `coll` of N items.
Clj impln is O(N.logn) vs O(N.logN) for (take n (sort-by ...)).
reduce-zip
cljs
added in Encore v3.33.0 (2022-11-15)
(reduce-zip rf init xs ys)
(reduce-zip rf init xs ys not-found)
Reduces given sequential xs and ys as pairs (e.g. key-val pairs).
Calls (rf acc x y) for each sequential pair.
Useful, among other things, as a more flexible version of `zipmap`.
remove-keys
cljs
(remove-keys key-pred m)
Returns given ?map, removing keys for which (key-pred <key>) is truthy.
remove-vals
cljs
(remove-vals val-pred m)
Returns given ?map, removing keys for which (val-pred <val>) is truthy.
rename-keys
cljs
(rename-keys replacements m)
Returns a map like the one given, replacing keys using
given {<old-new> <new-key>} replacements. O(min(n_replacements, n_m)).
repeatedly-into
cljs
(repeatedly-into coll n f)
Like `repeatedly` but faster and `conj`s items into given collection.
reset!?
cljs
(reset!? atom_ val)
Atomically swaps value of `atom_` to `val` and returns
true iff the atom's value changed. See also `reset-in!?`.
reset-in!
cljs
(reset-in! atom_ val)
(reset-in! atom_ ks val)
(reset-in! atom_ ks not-found val)
Like `reset!` but supports `update-in` semantics, returns <old-key-val>.
reset-in!?
cljs
(reset-in!? atom_ val)
(reset-in!? atom_ ks val)
(reset-in!? atom_ ks not-found val)
Like `reset-in!` but returns true iff the atom's value changed.
reset-val!
cljs
(reset-val! atom_ k val)
(reset-val! atom_ k not-found val)
Like `reset-in!` but optimized for single-key case.
reset-val!?
cljs
(reset-val!? atom_ k new-val)
Like `reset-in!?` but optimized for single-key case.
revery-kv?
cljs
(revery-kv? pred coll)
revery?
cljs
(revery? pred coll)
(revery? xform pred coll)
rfirst
cljs
(rfirst pred coll)
(rfirst xform pred coll)
rfirst-kv
cljs
(rfirst-kv pred coll)
rnum?
cljs
(rnum? x)
Returns true iff given number in signed unit proportion interval ∈ℝ[-1,1].
rolling-counter
cljs
(rolling-counter msecs)
Experimental, subject to change without notice.
Returns a RollingCounter that you can:
- Invoke to increment count in last `msecs` window and return RollingCounter.
- Deref to return count in last `msecs` window.
rolling-vector
cljs
added in Encore v3.45.0 (2022-12-13)
(rolling-vector nmax)
(rolling-vector nmax {:keys [gc-every init-val], :or {gc-every 16000.0}})
Returns a stateful fn of 2 arities:
[ ] => Returns current sub/vector in O(1).
[x] => Adds `x` to right of sub/vector, maintaining length <= `nmax`.
Returns current sub/vector.
Useful for maintaining limited-length histories, etc.
See also `rolling-list` (Clj only).
round
cljs
(round n)
(round a1 a2)
(round a1 a2 a3)
General purpose rounding util.
Returns given number `n` rounded according to given options:
- `kind` - ∈ #{:round :floor :ceil :trunc} (default `:round`)
- `precision` - Number of decimal places to include (default `nil` => none)
roundn
cljs
(roundn precision n)
rsome
cljs
(rsome pred coll)
(rsome xform pred coll)
rsome-kv
cljs
(rsome-kv pred coll)
run-kv!
cljs
(run-kv! proc m)
run-kvs!
cljs
(run-kvs! proc kvs)
run-obj!
cljs
(run-obj! proc obj)
satisfies!
macro
cljs
added in Encore v3.51.0 (2023-03-13)
(satisfies! protocol arg)
(satisfies! protocol arg {:keys [msg context param ...]})
(satisfies! protocol arg & {:keys [msg context param ...]})
If (satisfies? protocol arg) is true, returns arg.
Otherwise throws runtime `ExceptionInfo` with `unexpected-arg!`.
See `unexpected-arg!` for more info.
satisfies?
macro
cljs
added in Encore v3.75.0 (2024-01-29)
(satisfies? protocol x)
Faster `satisfies?` to work around CLJ-1814 until a proper upstream fix.
May cache, so possibly inappropriate for dynamic work.
sb-append
cljs
(sb-append str-builder x)
(sb-append str-builder x & more)
Appends given string/s to given string builder. See also `str-builder.`
sb-length
cljs
added in Encore v3.107.0 (2024-05-05)
(sb-length sb)
Returns given string builder's current length (character count).
secs
cljs
(secs opts)
(secs k1 v1)
(secs k1 v1 k2 v2)
(secs k1 v1 k2 v2 & more)
Returns ~number of seconds in period defined by given args.
secs->ms
cljs
(secs->ms secs)
select-nested-keys
cljs
added in Encore v3.34.0 (2022-11-16)
(select-nested-keys src-map key-spec)
Like `select-keys` but supports nested key spec:
(select-nested-keys
{:a :A :b :B :c {:c1 :C1 :c2 :C2} :d :D} ; `src-map`
[:a {:c [:c1], :d [:d1 :d2]}]) ; `key-spec`
=> {:a :A, :c {:c1 :C1}, :d :D}
Note that as with the `{:d [:d1 :d2]}` spec in the example above,
if spec expects a nested map but the actual value is not a map,
the actual value will be included in output as-is.
Has the same behaviour as `select-keys` when `key-spec` is a
simple vector of keys.
seq-kvs
cljs
(seq-kvs {:a :A}) => (:a :A).
set-var-root!
macro
cljs
added in Encore v3.75.0 (2024-01-29)
(set-var-root! var-sym root-val)
Sets root binding (value) of the var identified by given symbol, and returns
the new value. Cross-platform. See also `update-var-root!`.
simple-ident?
cljs
(simple-ident? x)
simple-keyword?
cljs
(simple-keyword? x)
simple-symbol?
cljs
(simple-symbol? x)
some=
cljs
(some= x y)
(some= x y & more)
some?
cljs
(some? x)
Same as `core/some?` (added in Clojure v1.6).
sortv
cljs
(sortv coll)
(sortv comparator coll)
(sortv ?keyfn comparator coll)
Like `core/sort` but:
- Returns a vector.
- `comparator` can be `:asc`, `:desc`, or an arbitrary comparator.
- An optional `keyfn` may be provided, as in `core/sort-by`.
str-?index
cljs
(str-?index s substr)
(str-?index s substr start-idx)
(str-?index s substr start-idx last?)
Returns (first/last) ?index of substring if it exists within given string.
str-builder
cljs
(str-builder)
(str-builder init)
Returns a new stateful string builder:
- `java.lang.StringBuilder` for Clj
- `goog.string.StringBuffer` for Cljs
See also `sb-append`.
str-builder?
cljs
(str-builder? x)
str-contains?
cljs
(str-contains? s substr)
str-ends-with?
cljs
(str-ends-with? s substr)
str-join
cljs
(str-join xs)
(str-join separator xs)
(str-join separator xform xs)
Faster generalization of `clojure.string/join` with transducer support.
str-join-once
cljs
(str-join-once separator coll)
Like `string/join` but skips nils and duplicate separators.
str-replace
cljs
(str-replace s match replacement)
str-rf
cljs
(str-rf)
(str-rf acc)
(str-rf acc in)
String builder reducing fn.
str-starts-with?
cljs
(str-starts-with? s substr)
submap?
cljs
(submap? m sub)
Returns true iff `sub` is a (possibly nested) submap of `m`,
i.e. iff every (nested) value in `sub` has the same (nested) value in `m`.
Uses stack recursion so supports only limited nesting.
submaps?
cljs
added in Encore v3.98.0 (2024-04-08)
(submaps? maps subs)
Experimental, subject to change without notice.
Returns true iff `sub_i` is a (possibly nested) submap of `m_i`.
Uses `submap?`.
substr
cljs
added in Encore v3.126.0 (2024-10-23)
(substr s start-idx)
(substr s start-idx end-idx)
(substr s kind start end)
Returns a non-empty sub-string, or nil.
Like `subs` but:
- Doesn't throw when out-of-bounds (clips to bounds).
- Returns nil rather than an empty string.
- When given `:by-len` kind (4-arity case):
- `start` may be -ive (=> index from right of string).
- `end` is desired string length, or `:max`.
subvec
cljs
added in Encore v3.126.0 (2024-10-23)
(subvec v start-idx)
(subvec v start-idx end-idx)
(subvec v kind start end)
Returns a non-empty sub-vector, or nil.
Like `core/subvec` but:
- Doesn't throw when out-of-bounds (clips to bounds).
- Returns nil rather than an empty vector.
- When given `:by-len` kind (4-arity case):
- `start` may be -ive (=> index from right of vector).
- `end` is desired vector length, or `:max`.
swap-in!
cljs
(swap-in! atom_ f)
(swap-in! atom_ ks f)
(swap-in! atom_ ks not-found f)
Like `swap!` but supports `update-in` semantics and `swapped`.
Returns <new-key-val> or <swapped-return-val>:
(swap-in! (atom {:k1 {:k2 5}}) [:k1 :k2] inc) => 6
(swap-in! (atom {:k1 {:k2 5}}) [:k1 :k2]
(fn [old] (swapped (inc old) old))) => 5
swap-val!
cljs
(swap-val! atom_ k f)
(swap-val! atom_ k not-found f)
Like `swap-in!` but optimized for single-key case:
(swap-val! (atom {:k 5}) :k inc) => 6
(swap-val! (atom {:k 5}) :k
(fn [old] (swapped (inc old) old))) => 5
swapped
cljs
(swapped new-val return-val)
For use within the swap functions of `swap-in!` and `swap-val!`.
Allows the easy decoupling of new and returned values. Compare:
(let [a (atom 0)] [(core/swap! a (fn [old] (inc old) )) @a]) [1 1] ; new=1, return=1
(let [a (atom 0)] [(swap-in! a (fn [old] (swapped (inc old) old))) @a]) [0 1] ; new=1, return=0
Faster and much more flexible than `core/swap-vals!`, etc.
Especially useful when combined with the `update-in` semantics of `swap-in!`, etc.
swapped?
cljs
(swapped? x)
Returns true iff given `Swapped` argument.
test-fixtures
cljs
added in Encore v3.31.0 (2022-10-27)
(test-fixtures fixtures-map)
Given a {:before ?(fn []) :after ?(fn [])} map, returns cross-platform
test fixtures for use by both `clojure.test` and `cljs.test`:
(let [f (test-fixtures {:before (fn [] (test-setup))})]
(clojure.test/use-fixtures :once f)
(cljs.test/use-fixtures :once f))
thread-local
macro
cljs
added in Encore v3.48.0 (2023-01-25)
(thread-local & body)
Given a body that returns an initial value for the current thread,
returns a `ThreadLocal` proxy that can be derefed to get the current
thread's current value.
Commonly used to achieve thread safety during Java interop.
In the common case, `body` will be a call to some Java constructor
that returns a non-thread-safe instance.
Example:
(def thread-local-simple-date-format_
"Deref to return a thread-local `SimpleDateFormat`"
(thread-local (SimpleDateFormat. "yyyy-MM-dd")))
(.format @thread-local-simple-date-format_ (Date.)) => "2023-01-24"
NB: don't pass the derefed value to other threads!
thread-local-proxy
macro
cljs
(thread-local-proxy & body)
Low-level, see `thread-local` instead.
throws
macro
cljs
added in Encore v3.31.0 (2022-10-27)
(throws form)
(throws kind form)
(throws kind pattern form)
Evals `form` and if it throws an error that matches given criteria using
`matching-error`, returns the matching error. Otherwise returns nil.
See also `matching-error`, `throws?`.
throws?
macro
cljs
added in Encore v3.31.0 (2022-10-27)
(throws? form)
(throws? kind form)
(throws? kind pattern form)
Evals `form` and if it throws an error that matches given criteria using
`matching-error`, returns true. Otherwise returns false.
Useful for unit tests, e.g.:
(is (throws? {:a :b} (throw (ex-info "Test" {:a :b :c :d}))))
See also `matching-error`, `throws`.
time-ms
macro
cljs
(time-ms & body)
Returns number of milliseconds it took to execute body.
time-ns
macro
cljs
(time-ns & body)
Returns number of nanoseconds it took to execute body.
timeout-future?
cljs
(timeout-future? x)
top
cljs
(top n coll)
(top n keyfn coll)
(top n keyfn cmp coll)
Returns a sorted vector of the top `n` items from `coll` using `reduce-top`.
top-into
cljs
(top-into to n coll)
(top-into to n keyfn coll)
(top-into to n keyfn cmp coll)
Conjoins the top `n` items from `coll` into `to` using `reduce-top`.
transient?
cljs
(transient? x)
try*
macro
cljs
added in Encore v3.67.0 (2023-09-08)
(try* expr* catch-clauses* ?finally-clause)
Like `try`, but `catch` clause class may be:
`:ex-info` - Catches only `ExceptionInfo`
`:common` - Catches `js/Error` (Cljs), `Exception` (Clj)
`:all` - Catches `:default` (Cljs), `Throwable` (Clj)
`:all-but-critical` - Catches `:default` (Cljs), `Exception` and `AssertionError` (Clj)
Addresses CLJ-1293 and the fact that `AssertionError`s are typically NON-critical
(so desirable to catch, in contrast to other `Error` classes).
udt->inst
cljs
added in Encore v3.98.0 (2024-04-08)
(udt->inst msecs-since-epoch)
Returns given milliseconds since Unix epoch as `js/Date`.
unexpected-arg!
cljs
added in Encore v3.51.0 (2023-03-13)
(unexpected-arg! arg)
(unexpected-arg! arg opts)
(unexpected-arg! arg k1 v1)
(unexpected-arg! arg k1 v1 k2 v2)
(unexpected-arg! arg k1 v1 k2 v2 k3 v3)
(unexpected-arg! arg k1 v1 k2 v2 k3 v3 k4 v4)
Throws runtime `ExceptionInfo` to indicate an unexpected argument.
Takes optional kvs for merging into exception's data map.
(let [mode :unexpected]
(case mode
:read (do <...>)
:write (do <...>)
(unexpected-arg! mode
{:context `my-function
:param 'mode
:expected #{:read :write}}))) =>
Unexpected argument: :unexpected
{:arg {:value :unexpected, :type clojure.lang.Keyword},
:context 'taoensso.encore/my-function
:param 'mode
:expected #{:read :write}}
See also `bad-arg!`.
update!
cljs
(update! m k f)
update-in
cljs
(update-in m ks f)
(update-in m ks not-found f)
Like `core/update-in` but:.
- Empty ks will return (f m), not act like [nil] ks.
- Adds support for `not-found`.
- Adds support for special return vals: `:update/dissoc`, `:update/abort`.
update-var-root!
macro
cljs
added in Encore v3.68.0 (2023-09-25)
(update-var-root! var-sym update-fn)
Updates root binding (value) of the var identified by given symbol, and returns
the new value:
(update-var-root! my-var (fn [old-root-val] <new-root-val>)) => <new-root-val>
Similar to `alter-var-root` but cross-platform and takes a symbol rather than a var.
See also `set-var-root!`.
url-decode
cljs
(url-decode s & [encoding])
url-encode
cljs
(url-encode s)
uuid
cljs
added in Encore v3.75.0 (2024-01-29)
(uuid)
For Clj: returns a random `java.util.UUID`.
For Cljs: returns a random UUID string.
Uses strong randomness when possible.
See also `uuid-str`, `nanoid`, `rand-id-fn`.
uuid-str
cljs
(uuid-str max-len)
(uuid-str)
Returns a random UUID string of given length (max 36).
Uses strong randomness when possible. See also `uuid`, `nanoid`, `rand-id-fn`.
vinterleave-all
cljs
added in Encore v3.66.0 (2023-08-23) for !=2 arities
(vinterleave-all colls)
(vinterleave-all c1 c2)
(vinterleave-all c1 c2 c3)
(vinterleave-all c1 c2 c3 & colls)
Like `interleave`, but:
- Returns a vector rather than lazy seq (=> greedy).
- Includes all items (i.e. stops when the longest rather than
shortest coll has been consumed).
Single-arity version takes a coll of colls.
vsplit-first
cljs
(vsplit-first v)
vsplit-last
cljs
(vsplit-last v)
when
macro
cljs
(when test-or-bindings & body)
Supersets `core/when` and `core/when-let` functionality. When `test-or-bindings` is
a vector, same as `encore/when-let`. Otherwise same as `core/when`.
when-let
macro
cljs
(when-let bindings & body)
Supersets `core/when-let` functionality. Like `core/when-let` but supports multiple
bindings, and unconditional bindings with `:let`:
(when-let [x (rand-nth [:x1 :x2 false nil ]) ; Bind truthy x, or -> nil
:let [y (rand-nth [:y1 :y2 false nil x ])] ; Bind any y
z (rand-nth [:z1 :z2 false nil x y]) ; Bind truthy z, or -> nil
]
[:body x y z])
when-not
macro
cljs
(when-not test-or-bindings & body)
Supersets `core/when-not` functionality.
Same as `encore/if-let` with `body` as `else` form.
when-some
macro
cljs
(when-some test-or-bindings & body)
Supersets `core/when-some` functionality. Like `core/when-some` but supports multiple
bindings, and unconditional bindings with `:let`:
(when-some [x (rand-nth [:x1 :x2 false nil ]) ; Bind non-nil x, or -> `else`
:let [y (rand-nth [:y1 :y2 false nil x ])] ; Bind any y
z (rand-nth [:z1 :z2 false nil x y]) ; Bind non-nil z, or -> `else`
]
[:body x y z])
with-truss-data
macro
cljs
(with-truss-data data & body)
Executes body with dynamic assertion data bound to given value.
This data will be included in any violation errors thrown by body.
xdistinct
cljs
(xdistinct)
(xdistinct keyfn)
Returns a stateful transducer like (core/distinct) that supports an optional
key function. Retains only items with distinct (keyfn <item>).
zero-num?
cljs
(zero-num? x)