當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala collection.IterableOnce用法及代碼示例


用法 一

trait IterableOnce[+A]

集合的模板特征,可以隻遍曆一次,也可以遍曆一次或多次。

注意:IterableOnce 不擴展 IterableOnceOps 。這與 collections 庫的一般設計不同,後者使用以下模式:

trait Seq extends Iterable with SeqOps
trait SeqOps extends IterableOps

trait IndexedSeq extends Seq with IndexedSeqOps
trait IndexedSeqOps extends SeqOps

目標是提供一個沒有任何順序操作的最小接口。這允許第三方擴展(如 Scala 並行集合)在IterableOnce 級別集成,而不會繼承不需要的實現。

伴生:

object

源碼:

IterableOnce.scala

用法 二

object IterableOnce

伴生:

class

源碼:

IterableOnce.scala

相關用法


注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 collection.IterableOnce。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。