Inline documentation system.
doc wraps def or provide for metadata. help for REPL lookup. apropos for search.
docAttach documentation metadata to a definition, provide, or bare symbol.
Three forms: (doc (def name val) meta… desc), (doc (provide name syms) meta… desc), (doc name meta… desc)
Meta forms: (param name TYPE desc), (returns TYPE desc), (example expr result), (see name), (note text)
noteSection marker for documentation grouping. No-op at runtime.
Parameters:
STRING — Section descriptionhelpLook up documentation in the REPL.
(help) shows overview. (help name) shows function or module docs. (help modules) lists all modules.
aproposSearch documentation by name substring.
Parameters:
STRING — Substring to search formodulesList all known modules with load status and descriptions.