func contains(Any) -> Bool
Returns a Boolean value that indicates whether a given object is present in the ordered set.
あるブール値を返します、与えられたオブジェクトが順序集合の中に存在するかどうかを指し示します。
func enumerateObjects (at: IndexSet, options: NSEnumerationOptions, using: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Void)
Executes a given block using the objects in the ordered set at the specified indexes.
与えられたブロックを順序集合の中のオブジェクトそれらを使って、指定されたインデックスそれらで実行します。
func enumerateObjects ((Any, Int, UnsafeMutablePointer<ObjCBool>) -> Void)
Executes a given block using each object in the ordered set.
与えられたブロックを順序集合の中の各オブジェクトを使って実行します。
func enumerateObjects (options: NSEnumerationOptions, using: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Void)
Executes a given block using each object in the set, using the specified enumeration options.
与えられたブロックを集合の中の各オブジェクトを使って実行します、指定された列挙オプションを使います。
var firstObject : Any?
The first object in the ordered set.
順序集合の中の最初のオブジェクト。
var lastObject : Any?
The last object in the ordered set.
順序集合の中の最後のオブジェクト。
func object(at: Int) -> Any
Returns the object at the specified index of the set.
集合の指定されたインデックスでのオブジェクトを返します。
subscript(Int) -> Any
Returns the object at the specified index of the set.
集合の指定されたインデックスでのオブジェクトを返します。
func index(of: Any) -> Int
Returns the index of the specified object.
指定されたオブジェクトのインデックスを返します。
func index(of: Any, inSortedRange : NSRange, options: NSBinarySearchingOptions, usingComparator : (Any, Any) -> ComparisonResult) -> Int
Returns the index, within a specified range, of an object compared with elements in the ordered set using a given NSComparator block.
順序集合の中の要素とある与えられたNSComparatorブロックを使って比較された、指定された範囲内での、あるオブジェクトのインデックスを返します。
func index(ofObjectAt : IndexSet, options: NSEnumerationOptions, passingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
Returns the index, from a given set of indexes, of the object in the ordered set that passes a test in a given block for a given set of enumeration options.
順序集合の中のオブジェクトの、ある与えられたインデックス集合からの、インデックスを返します、それは与えられたブロックの中のテストをある与えられた列挙オプションの集合に対して合格するものです。
func index(ofObjectPassingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
Returns the index of the object in the ordered set that passes a test in a given block.
順序集合の中のオブジェクトのインデックスを返します、それは与えられたブロックの中のテストに合格するものです。
func index(NSEnumerationOptions, ofObjectPassingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
Returns the index of an object in the ordered set that passes a test in a given block for a given set of enumeration options.
順序集合の中のあるオブジェクトのインデックスを返します、それは与えられたブロックの中のテストをある与えられた列挙オプションの集合に対して合格したものです。
func indexes(ofObjectsAt : IndexSet, options: NSEnumerationOptions, passingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
Returns the index, from a given set of indexes, of the object in the ordered set that passes a test in a given block for a given set of enumeration options.
順序集合の中のオブジェクトの、ある与えられたインデックス集合からの、インデックスを返します、それは与えられたブロックの中のテストをある与えられた列挙オプションの集合に対して合格するものです。
func indexes(ofObjectsPassingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
Returns the index of the object in the ordered set that passes a test in a given block.
順序集合の中のオブジェクトのインデックスを返します、それは与えられたブロックの中のテストに合格するものです。
func indexes(options: NSEnumerationOptions, ofObjectsPassingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
Returns the index of an object in the ordered set that passes a test in a given block for a given set of enumeration options.
順序集合の中のあるオブジェクトのインデックスを返します、それは与えられたブロックの中のテストをある与えられた列挙オプションの集合に対して合格したものです。
func objectEnumerator () -> NSEnumerator
Returns an enumerator object that lets you access each object in the ordered set.
あなたに順序集合の各オブジェクトにアクセスさせる列挙子オブジェクトを返します。
func reverseObjectEnumerator () -> NSEnumerator
Returns an enumerator object that lets you access each object in the ordered set.
あなたに順序集合の各オブジェクトにアクセスさせる列挙子オブジェクトを返します。
var reversed: NSOrderedSet
An ordered set in the reverse order.
ある順序列挙、逆順で。