(pluralize num singular & [plural])
Return a pluralized phrase, appending an s to the singular form if no plural is provided. For example: (pluralize 5 "month") => "5 months" (pluralize 1 "month") => "1 month" (pluralize 1 "radius" "radii") => "1 radius" (pluralize 9 "radius" "radii") => "9 radii"
Return a pluralized phrase, appending an s to the singular form if no plural is provided. For example: (pluralize 5 "month") => "5 months" (pluralize 1 "month") => "1 month" (pluralize 1 "radius" "radii") => "1 radius" (pluralize 9 "radius" "radii") => "9 radii"
(substring-after delim)
Find the part of the string s which comes after the last instance of delim.
Find the part of the string s which comes after the last instance of delim.
(substring-before delim)
Find the part of the string s which comes before the first instance of delim.
Find the part of the string s which comes before the first instance of delim.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close