_PointerType

protocol _PointerType

A stdlib-internal protocol modeled by the intrinsic pointer types, UnsafeMutablePointer, UnsafePointer, and AutoreleasingUnsafeMutablePointer.

Inheritance View Protocol Hierarchy →
Import import Swift

Initializers

init(_:) Required

Construct a pointer from a raw value.

Declaration

init(_ _rawValue: Builtin.RawPointer)

Instance Variables

var _rawValue: Builtin.RawPointer Required

The underlying raw pointer value.

Declaration

var _rawValue: Builtin.RawPointer { get }