Function show_notes::e006::internal_module::a_private_module_fn
source ยท fn a_private_module_fn()
Expand description
Another module function, demonstrating module-private function status.
Since this function is private to the module, it is inaccessible to
external callers (see below in use_modules_internal()
). However, it is
accessible as normal to other functions within its own module, and thus
can be called by a_public_module_fn()
.