Remix.run Logo
Someone 3 months ago

Why would

  a + b
suffer more from this than

  plus(a,b)
? 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.