Why there is no documentation for `merge`

BTW this is an important clue: it means that the name merge refers to a function defined in Main (i.e. your code), instead of the name from Base. This is called shadowing, i.e. your name is shadowing that of the name from Base. If you do ?Base.merge you can get the documentation for Base.merge.

edit: Scooped by Gunnar :slight_smile:

10 Likes