(excluded-word? word)
checks if word is excluded from indexing
(excluded-word? "and") => true
checks if word is excluded from indexing (excluded-word? "and") => true
(expand-hyphenated-words word-seq)
split hyphenated words
(expand-hyphenated-words ["hello-world"]) => ["hello-world" "hello" "world"]
split hyphenated words (expand-hyphenated-words ["hello-world"]) => ["hello-world" "hello" "world"]
(remove-excluded-words word-seq)
remove excluded words
remove excluded words
(stems phrase)
(stems phrase stemmer-func)
classifies text into word stems
(stems "The lazy brown fox jumped over") => ["lazi" "brown" "fox" "jump" "over"]
classifies text into word stems (stems "The lazy brown fox jumped over") => ["lazi" "brown" "fox" "jump" "over"]
(tokenise txt)
makes tokens from text
(tokenise "The lazy brown fox jumped over") => ["lazy" "brown" "fox" "jumped" "over"]
makes tokens from text (tokenise "The lazy brown fox jumped over") => ["lazy" "brown" "fox" "jumped" "over"]
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close