Ensure that all internal functions are named with a dot (like .myInternalFunction).
At the moment some are with and some without dot. Good to harmonize.
Make sure that only those functions are exported that are really needed by users. This will simplify maintenance and documentation and the overall user experience.
Ensure that all internal functions are named with a dot (like
.myInternalFunction
).At the moment some are with and some without dot. Good to harmonize.
Make sure that only those functions are exported that are really needed by users. This will simplify maintenance and documentation and the overall user experience.