Functions
-
Returns an empty
Option<T&>if theT*pointer is null, or else returns a reference to the valueTwrapped in anOption<T&>. -
Copies
count * size_of<T>()bytes fromsrctodst. The source and destination may overlap. -
Copies
count * size_of<T>()bytes fromsrctodst. The source and destination must not overlap. -
Swaps the object array at
xwith the object array aty, where both arrays have a length ofcount.
Operators
-
Satisfies the
StrongOrd<NonNull<T>>concept if the pointers are comparable and thus satisfyStrongOrdas well. -
Satisfies the
Eq<NonNull<T>, NonNull<U>>concept if the pointers are comparable and thus satisfyEqas well.
Concepts
-
SameOrSubclassOf<T*, U*>