var count: Int
var firstObject : Any?
var lastObject : Any?
func object(at: Int) -> Any
subscript(Int) -> Any
func objects(at: IndexSet) -> [Any]
func objectEnumerator () -> NSEnumerator
func reverseObjectEnumerator () -> NSEnumerator
Availability 有効性
Technology
func contains(_ anObject: Any) -> Bool
anObject
An object to look for in the array. 配列において捜すことになるオブジェクト。
true
if an
is present in the array, otherwise false
.
true
が配列に存在するならばan
、そうでないならばfalse
。
Starting at index 0
, each element of the array is checked for equality with an
until a match is found or the end of the array is reached. Objects are considered equal if is
returns true
.
インデックス0
で始めることは、配列の各要素がan
との同等性を、合致するものが見つけられるか配列の終わりに到達するまで、調べられます。オブジェクトは、is
がtrue
を返すならば等しいとみなされます。
To determine if the array contains a particular instance of an object, you can test for identity rather than equality by calling the index
method and comparing the return value to NSNot
.
配列があるオブジェクトの特定のインスタンスを含むかどうか判定するには、あなたは同等性ではなく同一性についてテストすることが、index
メソッドを呼び出して戻り値をNSNot
と比較することで行えます。
var count: Int
var firstObject : Any?
var lastObject : Any?
func object(at: Int) -> Any
subscript(Int) -> Any
func objects(at: IndexSet) -> [Any]
func objectEnumerator () -> NSEnumerator
func reverseObjectEnumerator () -> NSEnumerator
func indexOfObjectIdentical (to: Any) -> Int
func index(of: Any) -> Int