Description
The best practices recommend:
"Any supporting code should be put in an
internal
folder at the top level of the toolbox folder to make it clear that these functions are not intended for end users. If you have a lot of internal functions, consider creating subfolders to group them logically."
Since folder names don't show up in programmatic interfaces, there are no hints to an end user that functions in internal aren't meant for them. So I don't think this standard achieves the desired objective.
I would expect the recommendation to be to use a private folder so it is functionally off the path. For more complex toolboxes that need to call internal functions/classes from code in multiple folders, we could recommend +internal, or better yet, +arithmetic+internal.