(in-bitset? bitset s idx)
Inlined check on whether the code point at idx
in s
can be found
in bitset
.
Inlined check on whether the code point at `idx` in `s` can be found in `bitset`.
(recur-if pred & exprs)
Perform a recursion only when pred
evaluates to true
; otherwise,
return false
and do not recur.
Perform a recursion only when `pred` evaluates to `true`; otherwise, return `false` and do not recur.
(unicode-bitset code-point-ranges)
Instantiate a java.util.BitSet
instance and add set all bits
at or (inclusive) between the ranges in code-point-ranges
.
Instantiate a `java.util.BitSet` instance and add set all bits at or (inclusive) between the ranges in `code-point-ranges`.
(valid-bnode-symbol? bnode-sym)
Is bnode-sym
a symbol that starts with _
and has zero or more
trailing chars?
Is `bnode-sym` a symbol that starts with `_` and has zero or more trailing chars?
(valid-iri-string? s)
Is x
a wrapped (i.e. starts with <
and ends with >
) IRI?
Note that x
can be an otherwise non-IRI (e.g. <foo>
).
Is `x` a wrapped (i.e. starts with `<` and ends with `>`) IRI? Note that `x` can be an otherwise non-IRI (e.g. `<foo>`).
(valid-iri-string?* s)
Is x
an IRI string? Note that x
can be an otherwise non-IRI
(e.g. <foo>
).
Is `x` an IRI string? Note that `x` can be an otherwise non-IRI (e.g. `<foo>`).
(valid-lang-map-literal? lang-map)
Is lang-map
a singleton map between a language tag and valid string?
Is `lang-map` a singleton map between a language tag and valid string?
(valid-prefix-iri-keyword? k)
Is k
a potentially namespaced keyword?
Is `k` a potentially namespaced keyword?
(valid-prefix-keyword? k)
Is k
a valid SPARQL prefix keyword?
Is `k` a valid SPARQL prefix keyword?
(valid-string-literal? str-lit)
Is str-lit
a string and does not contains unescaped "
, \
, \n
,
nor \r
? (This filtering is to avoid SPARQL injection attacks.)
Is `str-lit` a string and does not contains unescaped `"`, `\`, `\n`, nor `\r`? (This filtering is to avoid SPARQL injection attacks.)
(valid-var-symbol? var-sym)
Is var-sym
a symbol that starts with ?
?
Is `var-sym` a symbol that starts with `?`?
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close