(ascii-alphabetics? value)
Returns true if the provided value is a string containing one or more characters in the set [a-zA-Z], else returns false.
Returns true if the provided value is a string containing one or more characters in the set [a-zA-Z], else returns false.
(ascii-alphanumerics? value)
Returns true if the provided value is a string containing one or more characters in the set [a-zA-Z0-9], else returns false.
Returns true if the provided value is a string containing one or more characters in the set [a-zA-Z0-9], else returns false.
(ascii-digits? value)
Returns true if the provided value is a string containing zero or more characters in the set [0-9], else returns false.
Returns true if the provided value is a string containing zero or more characters in the set [0-9], else returns false.
(blank? value)
Returns true if the provided value is an empty string or a string containing only whitespace characters, else returns false.
Returns true if the provided value is an empty string or a string containing only whitespace characters, else returns false.
(lowercase-ascii-alphabetics? value)
Returns true if the provided value is a string containing one or more characters in the set [a-z], else returns false.
Returns true if the provided value is a string containing one or more characters in the set [a-z], else returns false.
(lowercase-ascii-alphanumerics? value)
Returns true if the provided value is a string containing one or more characters in the set [a-z0-9], else returns false.
Returns true if the provided value is a string containing one or more characters in the set [a-z0-9], else returns false.
(not-blank? value)
Returns true if the provided value is a string containing non-whitespace characters, else returns false.
Returns true if the provided value is a string containing non-whitespace characters, else returns false.
(string? value)
Returns true if the provided value is a string, else returns false.
Returns true if the provided value is a string, else returns false.
(uppercase-ascii-alphabetics? value)
Returns true if the provided value is a string containing one or more characters in the set [A-Z], else returns false.
Returns true if the provided value is a string containing one or more characters in the set [A-Z], else returns false.
(uppercase-ascii-alphanumerics? value)
Returns true if the provided value is a string containing one or more characters in the set [A-Z0-9], else returns false.
Returns true if the provided value is a string containing one or more characters in the set [A-Z0-9], else returns false.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close