Liking cljdoc? Tell your friends :D

quil.helpers.docs

Functions for filtering/displaying docs in REPL and generating wiki pages.

Functions for filtering/displaying docs in REPL and generating wiki pages.
raw docstring

all-category-mapclj

(all-category-map fn-metas)

Build map idx -> (sub)category. Basically it is merge of category map and all subcategories maps.

Build map idx -> (sub)category. Basically it is merge of category map and all subcategories maps.
sourceraw docstring

fields-as-sorted-setclj

(fields-as-sorted-set fn-metas field)

Make sorted set of all possible values for given field from metas. Example: metas [{:name 1} {:name 2} {:name nil} {:name 2} {:name 3}], field :name will return #{1 2 3}.

Make sorted set of all possible values for given field from metas.
Example: metas [{:name 1} {:name 2} {:name nil} {:name 2} {:name 3}], field :name
will return #{1 2 3}.
sourceraw docstring

(link-to-processing-reference fn-meta)

Builds a link to processing page about the function. If meta has :processing-link key, value will be returned, otherwise method will try to build the link based on processing-name if it is not nil. It processing-name is nil, returns nil.

Builds a link to processing page about the function.
If meta has :processing-link key, value will be returned,
otherwise method will try to build the link based on processing-name
if it is not nil. It processing-name is nil, returns nil.
sourceraw docstring

matching-processing-methodsclj

(matching-processing-methods fn-metas orig-name)

Takes a string representing the start of a method name in the original Processing API and returns a map of orig/new-name pairs

Takes a string representing the start of a method name in the
original Processing API and returns a map of orig/new-name pairs
sourceraw docstring

pprint-wrapped-linesclj

(pprint-wrapped-lines words
                      &
                      {:keys [fromcolumn width] :or {fromcolumn 0 width 80}})

Pretty print words across several lines by wrapping lines at word boundary.

Pretty print words across several lines by wrapping lines at word boundary.
sourceraw docstring

sorted-category-mapclj

(sorted-category-map fn-metas)

Builds map idx -> category. Indices are 1, 2, 3, ... Category is a map with keys :name, :fns, :subcategories. See subcategory-map for format of subcategory.

Builds map idx -> category. Indices are 1, 2, 3, ...
Category is a map with keys :name, :fns, :subcategories.
See subcategory-map for format of subcategory.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close