Overview 概要
Collections that conform to Mutable
gain the ability to change the value of their elements. This example shows how you can modify one of the names in an array of students.
Mutable
に準拠するコレクションは、それらの要素の値を変更する能力を獲得します。この例が示すのは、どうやってあなたが学生らの配列の中の名前の1つを修正できるかです。
In addition to changing the value of an individual element, you can also change the values of a slice of elements in a mutable collection. For example, you can sort part of a mutable collection by calling the mutable sort()
method on a subscripted subsequence. Here’s an example that sorts the first half of an array of integers:
ある一個の要素の値を変えることに加えて、あなたはまた可変コレクションの要素のスライスに属するいくらかの値を変更することもできます。例えば、あなたはある可変コレクションの一部分をソートすることが可変sort()
メソッドを添え字で指定した下位シーケンス上で行えます。ここにある例があります、それは整数からなるある配列の前半分をソートします:
The Mutable
protocol allows changing the values of a collection’s elements but not the length of the collection itself. For operations that require adding or removing elements, see the Range
protocol instead.
Mutable
プロトコルは、コレクションのもつ要素の値の変更を可能にします、しかしコレクション自体の長さはそうではありません。要素の追加や削除を要求する演算に対しては、Range
プロトコルを代わりに見てください。
Conforming to the MutableCollection Protocol MutableCollectionプロトコルに準拠する
To add conformance to the Mutable
protocol to your own custom collection, upgrade your type’s subscript to support both read and write access.
Mutable
プロトコルへの準拠をあなた独自のあつらえのコレクションに加えるには、あなたの型のもつ添え字を更新して読み書きアクセス両方をサポートするようにしてください。
A value stored into a subscript of a Mutable
instance must subsequently be accessible at that same position. That is, for a mutable collection instance a
, index i
, and value x
, the two sets of assignments in the following code sample must be equivalent:
Mutable
インスタンスのある添え字へと格納される値は、その後にその同じ位置でアクセス可能でなければなりません。すなわち、ある可変コレクションインスタンスa
、インデックスi
、そして値x
に対して、以下のコード見本における2組の代入は同等なものでなければなりません: