Uses of Interface
java.lang.foreign.VaList
Package
Description
Provides low-level access to memory and functions outside the Java runtime.
-
Uses of VaListPREVIEW in java.lang.foreign
Methods in java.lang.foreign that return VaListPREVIEWModifier and TypeMethodDescriptionVaList.copy()
Copies this variable argument list at its current position into a new variable argument list associated with the same scope as this variable argument list.VaList.empty()
Returns an empty variable argument list, associated with the global scopePREVIEW.VaList.make
(Consumer<VaList.BuilderPREVIEW> actions, SegmentScopePREVIEW scope) Creates a variable argument list using a builder (seeVaList.Builder
PREVIEW), with the given scope.VaList.ofAddress
(long address, SegmentScopePREVIEW scope) Creates a variable argument list from the give address value and scope.