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!

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

I believe it's because import scalaz._; import Scalaz._ imports all members from the scalaz package and from the scalaz.Scalaz object.

If you will just import import scalaz.Scalaz._, then you only import members from the scalaz.Scalaz object.

link|improve this answer
4  
In the first case, also from the scalaz package object. – Alexey Romanov Oct 19 '11 at 17:26
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.

link|improve this answer
Thanks! This is great additional information to take into consideration. – Jay Taylor Oct 20 '11 at 18:48
Specific elements of a full import can be disabled with the following mechansim: import com.foo.{unwanted => _, _}, and "unwanted" will not be brought in. – Jay Taylor Oct 20 '11 at 18:51
why I really love Scala is because it has tons of great features I needn't learn until the time comes. @pyrony thanks for the tip! – CheatEx Oct 20 '11 at 19:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.