Do any of you know why examples from Scalaz always use this import technique:
import scalaz._
import Scalaz._
rather than:
import scalaz.Scalaz._
? I'm trying to understand what the reasoning behind the preference is.
Thanks!
|
feedback
|
|
I believe it's because If you will just import | |||||
feedback
|
|
import scalaz._ imports all [type]classes from the core package. import Scalaz._ imports implicits which make all these classes useful. Like conversions from standard collections to MA and getting Option wrapper and so on. So you can use one without another. I believe this is a conscious design decision to allow us survive any kind of implicit-related issues, like this one. | |||||||
feedback
|