Class

NSMutableIndexSet

An object representing a mutable collection of unique integer values that bridges to IndexSet; use NSMutableIndexSet when you need reference semantics or other Foundation-specific behavior. 特有な整数値の可変コレクションを表しているオブジェクト、それはIndexSetにブリッジします;NSMutableIndexSetをあなたが参照意味論または他のFoundation特有の挙動を必要とする場合に使ってください。

Declaration 宣言

class NSMutableIndexSet : NSIndexSet

Overview 概要

The NSMutableIndexSet class represents a mutable collection of unique unsigned integers, known as indexes because of the way they are used. This collection is referred to as a mutable index set. The inclusive range of valid indexes is 0...(NSNotFound - 1); trying to use indexes outside this range is invalid. NSMutableIndexSetクラスは、それらが使われる方法からインデックスとして知られる、それぞれが特有な符号なし整数からなる可変のコレクションを表します。このコレクションは、可変インデックス集合と呼ばれます。有効なインデックスの前後を含む範囲は、0...(NSNotFound - 1)です;インデックスをこの範囲の外側で使おうと試みることは無効です。

The values in a mutable index set are always sorted, so the order in which values are added is irrelevant. 可変インデックス集合の中の値は、常にソートされます、なので値が加えられる順番は無関係です。

Do not subclass the NSMutableIndexSet class. NSMutableIndexSetクラスのサブクラスを作らないでください。

Topics 話題

Adding Indexes インデックスを加える

Removing Indexes インデックスを取り除く

Shifting Index Groups インデックスグループをずらす

Relationships 関係

Inherits From 継承元

See Also 参照

Using Reference Types 参照型を使用する