- Learn Scala Programming
- Slava Schmidt
- 72字
- 2021-06-10 19:35:41
SortedMap
SortedMap is similar to SortedSet. It has a two implementations, a mutable and immutable TreeMap, and provides a few methods defined in terms of SortedOps such as:
- Subcollection retrieval: iteratorFrom, keysIteratorFrom, valuesIteratorFrom, and rangeTo give us a way to get elements of the map as an iterator.
- Element retrieval: firstKey, lastKey, minAfter, and maxBefore allow us to retrieve an element that satisfies some ordering condition.
推薦閱讀
- Clojure Programming Cookbook
- Learning Scala Programming
- 數據庫系統原理及MySQL應用教程(第2版)
- Apache ZooKeeper Essentials
- Elastic Stack應用寶典
- 微信小程序開發解析
- JavaScript動態網頁開發詳解
- 深入淺出Serverless:技術原理與應用實踐
- Clojure Reactive Programming
- 低代碼平臺開發實踐:基于React
- OpenCV 3 Blueprints
- Python預測分析與機器學習
- MySQL數據庫教程(視頻指導版)
- Flutter從0基礎到App上線
- Spring Microservices