Scala Tutorialsを読む 27 Mutable Collections Operations

27 Mutable Collections Operations

ムータブルコレクション演算

http://scalatutorials.com/tour/interactive_tour_of_scala_mutable_collections_operations.html

Mutable collections allow to add / remove a single / multple items while modifying the collection itself

ムータブルなコレクションは1つあるいは複数のアイテムで追加 / 削除の操作で更新出来ます。

the methods +=, +==, -=, -== are actually defined in the mutable collections

+=, +==, -=, -== メソッドはムータブルなコレクションに実際に定義されています。

See Also opens in new page

新しいページを開いて参照

  • BufferLike