pub unsafe fn va_arg<T>(ap: &mut VaListImpl<'_>) -> Twhere
T: VaArgSafe,
🔬This is a nightly-only experimental API. (
core_intrinsics
)Expand description
Loads an argument of type T
from the va_list
ap
and increment the
argument ap
points to.
FIXME: document safety requirements