▲ | Someone 3 days ago | |||||||
Why would
suffer more from this than
? In both cases, libraries will only clash if both define a function with the same name taking an A and a B. The only difference is that it is called + in the former case, and plus in the latter. | ||||||||
▲ | mojifwisi 2 days ago | parent [-] | |||||||
It's syntactically more straightforward to resolve the issue of clashing definitions through namespacing with functions compared to operators. The following is pretty standard:
Whereas this is more awkward:
| ||||||||
|