init(object: Any)
Creates and returns an array containing a given object.
1つの与えられたオブジェクトを含んでいる配列を作成して返します。
Availability 有効性
Technology
convenience init(objects: UnsafePointer
<AnyObject>,
count cnt: Int
)
objects
A C array of objects. オブジェクトのC配列。
count
The number of values from the objects
C array to include in the new array. This number will be the count of the new array—it must not be negative or greater than the number of elements in objects
.
objects
C配列から新しい配列の中に含めることになる値の数。この数は、新しい配列の総数になります—それは負であったりobjects
の中の要素の数を上回ったりしてははなりません。
A new array including the first count
objects from objects
.
objects
から最初のcount
個のオブジェクトを含んでいる新しい配列。
Elements are added to the new array in the same order they appear in objects
, up to but not including index count
. For example:
要素は、それらがobjects
において現れるのと同じ順序で、インデックスcount
まで、しかしそれを含めずに、新しい配列に加えられます。例えば:
init(object: Any)
- getObjects(_:range:)
aBuffer
.
この配列に含まれるオブジェクトで、指定された範囲内に収まるものへの参照をaBuffer
にコピーします。