- addObject:
Appends a given object to the end of the mutable ordered set, if it is not already a member.
与えられたオブジェクトを可変の順序集合の終わりに追加します、もしそれがまだメンバーでないならば。
- addObjects:count:
Appends the given number of objects from a given C array to the end of the mutable ordered set.
与えられた数のオブジェクトをある与えられたC配列からこの可変の順序集合の終わりに追加します。
- addObjectsFromArray:
Appends to the end of the mutable ordered set each object contained in a given array that is not already a member.
可変の順序集合の終わりへある与えられた配列に含まれる各オブジェクトでまだメンバでないものを追加します。
- insertObject:atIndex:
Inserts the given object at the specified index of the mutable ordered set, if it is not already a member.
与えられたオブジェクトを可変の順序集合の指定されたインデックスで挿入します、もしそれがまだメンバでないならば。
- setObject:atIndexedSubscript:
Replaces the given object at the specified index of the mutable ordered set.
可変順序集合のこの指定されたインデックスで、この与えられたオブジェクトを置き換えます。
- insertObjects:atIndexes:
Inserts the objects in the array at the specified indexes.
配列の中のオブジェクトを指定されたインデックスで挿入します。
- removeObjectAtIndex:
Removes a the object at the specified index from the mutable ordered set.
あるオブジェクトを指定されたインデックスでこの可変の順序集合から取り除きます。
- removeObjectsAtIndexes:
Removes the objects at the specified indexes from the mutable ordered set.
これらオブジェクトを指定されたインデックスでこの可変の順序集合から取り除きます。
- removeObjectsInArray:
Removes the objects in the array from the mutable ordered set.
配列の中のオブジェクトそれらをこの可変の順序集合から取り除きます。
- removeObjectsInRange:
Removes from the mutable ordered set each of the objects within a given range.
可変の順序集合からある与えられた範囲内のオブジェクトのそれぞれを取り除きます。
- removeAllObjects
Removes all the objects from the mutable ordered set.
全てのオブジェクトをこの可変の順序集合から取り除きます。
- replaceObjectAtIndex:withObject:
Replaces the object at the specified index with the new object.
オブジェクトをこの指定されたインデックスでこの新しいオブジェクトと置き換えます。
- replaceObjectsAtIndexes:withObjects:
Replaces the objects at the specified indexes with the new objects.
オブジェクトそれらをこれら指定されたインデックスでこれら新しいオブジェクトと置き換えます。
- replaceObjectsInRange:withObjects:count:
Replaces the objects in the receiving mutable ordered set at the range with the specified number of objects from a given C array.
受け手側の可変の順序集合の中の指定された位置でのオブジェクトを、ある与えられたC配列からの指定された数のオブジェクトで置き換えます。
- setObject:atIndex:
Appends or replaces the object at the specified index.
オブジェクトを指定されたインデックスで追加または置き換えます。
- moveObjectsAtIndexes:toIndex:
Moves the objects at the specified indexes to the new location.
指定されたインデックスでのオブジェクトそれらを新しい位置へ移動します。
- exchangeObjectAtIndex:withObjectAtIndex:
Exchanges the object at the specified index with the object at the other index.
指定されたインデックスでのオブジェクトを他のインデックスでのオブジェクトと交換します。
- filterUsingPredicate:
Evaluates a given predicate against the mutable ordered set’s content and leaves only objects that match.
与えられた述部を可変の順序集合のもつ内容と照らし合わせて評価して、合致するオブジェクトのみを残します。