func add(Any)
Appends a given object to the end of the mutable ordered set, if it is not already a member.
与えられたオブジェクトを可変の順序集合の終わりに追加します、もしそれがまだメンバーでないならば。
func add(UnsafePointer<AnyObject>?, count: Int)
Appends the given number of objects from a given C array to the end of the mutable ordered set.
与えられた数のオブジェクトをある与えられたC配列からこの可変の順序集合の終わりに追加します。
func addObjects (from: [Any])
Appends to the end of the mutable ordered set each object contained in a given array that is not already a member.
可変の順序集合の終わりへある与えられた配列に含まれる各オブジェクトでまだメンバでないものを追加します。
func insert(Any, at: Int)
Inserts the given object at the specified index of the mutable ordered set, if it is not already a member.
与えられたオブジェクトを可変の順序集合の指定されたインデックスで挿入します、もしそれがまだメンバでないならば。
func remove(Any)
Removes a given object from the mutable ordered set.
ある与えられたオブジェクトを可変の順序集合から取り除きます。
func removeObject (at: Int)
Removes a the object at the specified index from the mutable ordered set.
あるオブジェクトを指定されたインデックスでこの可変の順序集合から取り除きます。
func removeObjects (at: IndexSet)
Removes the objects at the specified indexes from the mutable ordered set.
これらオブジェクトを指定されたインデックスでこの可変の順序集合から取り除きます。
func removeObjects (in: [Any])
Removes the objects in the array from the mutable ordered set.
配列の中のオブジェクトそれらをこの可変の順序集合から取り除きます。
func removeObjects (in: NSRange)
Removes from the mutable ordered set each of the objects within a given range.
可変の順序集合からある与えられた範囲内のオブジェクトのそれぞれを取り除きます。
func removeAllObjects ()
Removes all the objects from the mutable ordered set.
全てのオブジェクトをこの可変の順序集合から取り除きます。
func replaceObject (at: Int, with: Any)
Replaces the object at the specified index with the new object.
オブジェクトをこの指定されたインデックスでこの新しいオブジェクトと置き換えます。
func replaceObjects (at: IndexSet, with: [Any])
Replaces the objects at the specified indexes with the new objects.
オブジェクトそれらをこれら指定されたインデックスでこれら新しいオブジェクトと置き換えます。
func replaceObjects (in: NSRange, with: UnsafePointer<AnyObject>?, count: Int)
Replaces the objects in the receiving mutable ordered set at the range with the specified number of objects from a given C array.
受け手側の可変の順序集合の中の指定された位置でのオブジェクトを、ある与えられたC配列からの指定された数のオブジェクトで置き換えます。
func setObject (Any, at: Int)
Appends or replaces the object at the specified index.
オブジェクトを指定されたインデックスで追加または置き換えます。
func moveObjects (at: IndexSet, to: Int)
Moves the objects at the specified indexes to the new location.
指定されたインデックスでのオブジェクトそれらを新しい位置へ移動します。
func exchangeObject (at: Int, withObjectAt : Int)
Exchanges the object at the specified index with the object at the other index.
指定されたインデックスでのオブジェクトを他のインデックスでのオブジェクトと交換します。
func filter(using: NSPredicate)
Evaluates a given predicate against the mutable ordered set’s content and leaves only objects that match.
与えられた述部を可変の順序集合のもつ内容と照らし合わせて評価して、合致するオブジェクトのみを残します。