static var machVirtualMemory : NSPointerFunctions.Options
Use Mach memory.
Machメモリを使います。
static var mallocMemory : NSPointerFunctions.Options
Use
free()
on removal, calloc()
on copy in.
free()
を除去で、calloc()
をコピーインでは使ってください。
static var opaqueMemory : NSPointerFunctions.Options
Take no action when pointers are deleted.
ポインタが消去されるときに何も動作を起こしません。
static var strongMemory : NSPointerFunctions.Options
Use strong write-barriers to backing store; use garbage-collected memory on copy-in.
強い書き込み防壁を補助記憶装置に対して使ってください;ガベージコレクションされるメモリをコピーインでは使ってください。
let NSMapTableStrongMemory : NSPointerFunctions.Options
Equivalent to
strongMemory
.
strongMemory
に等しいです。
let NSMapTableWeakMemory : NSPointerFunctions.Options
Equivalent to
weakMemory
.
weakMemory
と同等。