我已经看到了一些可以解决您正在寻找的方法的方法。查看
导入定义
https://github.com/mongodb/casbah/blob/master/casbah-core/src/main/scala/Implicits.scala
这种方法的小例子:
object Imports extends Imports with commons.Imports with query.Imports with query.dsl.FluidQueryBarewordOps
object BaseImports extends BaseImports with commons.BaseImports with query.BaseImports
object TypeImports extends TypeImports with commons.TypeImports with query.TypeImports
trait Imports extends BaseImports with TypeImports with Implicits
@SuppressWarnings(Array("deprecation"))
trait BaseImports {
// ...
val WriteConcern = com.mongodb.casbah.WriteConcern
// More here ...
}
trait TypeImports {
// ...
type WriteConcern = com.mongodb.WriteConcern
// ...
}
使用的进口
https://github.com/mongodb/casbah/blob/master/casbah-core/src/main/scala/MongoClient.scala
当他们使用这个导入对象时,它会为您解锁所有类型别名。例如,WriteConcern
import com.mongodb.casbah.Imports._
// ...
def setWriteConcern(concern: WriteConcern): Unit = underlying.setWriteConcern(concern)
本质上,他们将所有导入包装到一个公共 Import 对象中,然后只需使用 import com.mycompany.Imports._
Doobie 做了类似的事情,大多数最终用户只是import doobie.imports._
https://github.com/tpolecat/doobie/blob/series/0.3.x/yax/core/src/main/scala/doobie/imports.scala
同样,来自此模式的示例:
object imports extends ToDoobieCatchSqlOps with ToDoobieCatchableOps {
/**
* Alias for `doobie.free.connection`.
* @group Free Module Aliases
*/
val FC = doobie.free.connection
/**
* Alias for `doobie.free.statement`.
* @group Free Module Aliases
*/
val FS = doobie.free.statement
// More here ...
}
这种方法在包对象样式之间的主要区别在于您可以更好地控制导入的内容/时间。我已经使用了这两种模式,通常是我需要跨内部包的常用实用程序方法的包对象。对于库,特别是我的代码的用户,我可以将某些隐式定义附加到doobie
上面提到的导入对象,这将为使用单个导入的用户解锁 DSL 语法。