(case-insensitive-filtering-fn search-string)
Table row filtering function that filters case insensitive.
Searching for john
would also return John
.
The function accepts a search string and returns a single-argument function that takes in an input. Input should be coerceable to a string.
Table row filtering function that filters case insensitive. Searching for `john` would also return `John`. The function accepts a search string and returns a single-argument function that takes in an input. Input should be coerceable to a string.
(case-sensitive-filtering-fn search-string)
Table row filtering function that filters case sensitive.
Searching for john
would NOT return John
.
The function accepts a search string and returns a single-argument function that takes in an input. Input should be coerceable to a string.
Table row filtering function that filters case sensitive. Searching for `john` would NOT return `John`. The function accepts a search string and returns a single-argument function that takes in an input. Input should be coerceable to a string.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close