- Learn Scala Programming
- Slava Schmidt
- 130字
- 2021-06-10 19:35:40
IterableFactory
trait IterableFactory[+CC[_]] is a base trait for companion objects for specific collections which provides a number of operations to create a specific collection with the type specified by the CC type constructor; this is sometimes called target-type driven building because the type of the source collection is ignored. Most of the companion objects in the collection library extend this trait, which makes it possible to use them in places where IterableFactory is expected.
As this is the main abstraction that allows to build a collection from scratch, it is useful to know which methods it supplies. All of them return CC[A]. The following table contains a short summary:

Arguably, IterableFactory provides a lot of different possibilities to create a collection of a desired type.
- scikit-learn Cookbook
- C語言程序設(shè)計案例教程
- SoapUI Cookbook
- PyTorch自動駕駛視覺感知算法實(shí)戰(zhàn)
- C#編程入門指南(上下冊)
- Python Deep Learning
- VMware vSphere 6.7虛擬化架構(gòu)實(shí)戰(zhàn)指南
- OpenResty完全開發(fā)指南:構(gòu)建百萬級別并發(fā)的Web應(yīng)用
- C專家編程
- Android嵌入式系統(tǒng)程序開發(fā)(基于Cortex-A8)
- 零基礎(chǔ)學(xué)編程系列(全5冊)
- Jakarta EE Cookbook
- Extending Docker
- Cinder:Begin Creative Coding
- Laravel 5.x Cookbook