Module :: impls_index
Several of macros to put each function under a named macro to index every function in a class.
It encourages writing better code, having index of components stripped of details of implementation is very important for comprehension of the code and ability to see the big picture.
Basic use-case
use *;
impls1!
;
index!
assert_eq!;
/* print : f1() : 13 */
To add to your project
Try out from the repository
git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/impls_index_trivial
cargo run