has_docstring
Notedocblock
has_docstring(module_name::Module; recursive::Bool=false) -> FunctionCreate a selector that matches symbols with documentation.
When recursive=true, the set of documented symbols includes those from direct and nested submodules (see _documented_bindings).
Example
selector = has_docstring(MyModule)
selector(:documented_func) # true if has docstring
selector(:undocumented_func) # false