实际上默认情况下存在从 Some[X] 到 GenTraversableOnce[X] 的隐式转换。这在 REPL 中测试非常简单
scala> implicitly[Function[Some[Int],GenTraversableOnce[Int]]]
res1: Some[Int] => scala.collection.GenTraversableOnce[Int] = <function1>
scala> implicitly[Some[Int] => GenTraversableOnce[Int]] // alternative syntax
res2: Some[Int] => scala.collection.GenTraversableOnce[Int] = <function1>
实际上这是在对象选项中定义的。内部 scala 包:
object Option {
/** An implicit conversion that converts an option to an iterable value
*/
implicit def option2Iterable[A](xo: Option[A]): Iterable[A] = xo.toList
/** An Option factory which creates Some(x) if the argument is not null,
* and None if it is null.
*
* @param x the value
* @return Some(value) if value != null, None if value == null
*/
def apply[A](x: A): Option[A] = if (x == null) None else Some(x)
/** An Option factory which returns `None` in a manner consistent with
* the collections hierarchy.
*/
def empty[A] : Option[A] = None
}
option2Iterable 正是您正在寻找的。您还可以看到为什么在您的 REPL 中进行测试时,您会看到 GenTraversableOnce 的实现是一个列表。
如果您正在寻找无需您执行任何操作即可自动导入的隐式转换(例如您可以在 REPL 中看到的隐式转换),您必须查看: