Functions
-
Returns an empty
Option<T&>
if theT*
pointer is null, or else returns a reference to the valueT
wrapped in anOption<T&>
. -
Copies
count * size_of<T>()
bytes fromsrc
todst
. The source and destination may overlap. -
Copies
count * size_of<T>()
bytes fromsrc
todst
. The source and destination must not overlap. -
Swaps the object array at
x
with 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 satisfyStrongOrd
as well. -
Satisfies the
Eq<NonNull<T>, NonNull<U>>
concept if the pointers are comparable and thus satisfyEq
as well.
Concepts
-
SameOrSubclassOf<T*, U*>