While working on purescript-batteries, I ran into a collision between Math.log and Control.Monad.Eff.Console.log. I think people are more likely to mean Console.log than Math.log when they just say log. And since Math.log is the natural logarithm, it can unambiguously be called ln, avoiding the collision.
Obviously this isn't a problem with this package per se. I could (and may) address this in purescript-batteries. But I wanted to open an issue here for discussion.
While working on purescript-batteries, I ran into a collision between
Math.log
andControl.Monad.Eff.Console.log
. I think people are more likely to meanConsole.log
thanMath.log
when they just saylog
. And sinceMath.log
is the natural logarithm, it can unambiguously be calledln
, avoiding the collision.Obviously this isn't a problem with this package per se. I could (and may) address this in purescript-batteries. But I wanted to open an issue here for discussion.