Return Value 戻り値
The instance referenced by this pointer. このポインタによって参照されるインスタンス。
Availability
Technology
func move() -> Pointee
The instance referenced by this pointer. このポインタによって参照されるインスタンス。
Calling the move()
method on a pointer p
that references memory of type T
is equivalent to the following code, aside from any cost and incidental side effects of copying and destroying the value:
move()
メソッドを、型T
のメモリを参照するポインタp
上で呼び出すことは、その値のコピーおよび破棄のあらゆるコストと付随する副作用を除いて、以下のコードと同等です。
The memory referenced by this pointer must be initialized. After calling move()
, the memory is uninitialized.
このポインタによって参照されるメモリは、初期化されなければなりません。move()
の呼び出しの後、メモリは初期化されない状態です。