View source code
Display the source code in dmd/ob.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

Enum dmd.ob.PtrState

Pointer variable states:

enum PtrState : ubyte { ... }

Initial state is not known; ignore for now

Undefined not in a usable state

T* p = void;

Owner mutable pointer

T* p = initializer;

Borrowed scope mutable pointer, borrowed from [p]

T* p = initializer; scope T* b = p;

Readonly scope const pointer, copied from [p]

T* p = initializer; scope const(T)* cp = p;

Enum members

NameDescription

Examples

T* p = initializer; // p is owner T** pp = &p; // pp borrows from p

T* p = initialize; // p is owner T* q = p; // transfer: q is owner, p is undefined

Authors

Walter Bright

License

Boost License 1.0