subscript(Int) -> Pointee
Access the
i
th element of the raw array pointed to by self
.
self
によって指し示される生の配列のi
番目の要素にアクセスします。
Pointee
instance referenced by self
.
self
によって参照されるPointee
インスタンスを回収または設定します。
Availability
Technology
var pointee: Pointee { get nonmutating set }
Autoreleasing
is assumed to reference a value with _
ownership semantics, like NSFoo **
declarations in ARC. Setting the pointee autoreleases the new value before trivially storing it in the referenced memory.
Autoreleasing
は、_
所有権意味論をもつ値を参照すると仮定されます、ARCにおけるNSFoo **
宣言のような。pointeeを設定することは、新しい値をオートリリースします、それをその参照されたメモリの中に自明に格納する前に。
Precondition: the pointee has been initialized with an instance of type Pointee
.
前提条件:pointeeが型Pointee
のインスタンスを使って初期化されていること。
subscript(Int) -> Pointee
i
th element of the raw array pointed to by self
.
self
によって指し示される生の配列のi
番目の要素にアクセスします。