Uses of Interface
java.lang.foreign.VaList.Builder
Packages that use VaList.BuilderPREVIEW
Package
Description
Provides low-level access to memory and functions outside the Java runtime.
-
Uses of VaList.BuilderPREVIEW in java.lang.foreign
Methods in java.lang.foreign that return VaList.BuilderPREVIEWModifier and TypeMethodDescriptionVaList.Builder.addVarg
(GroupLayoutPREVIEW layout, MemorySegmentPREVIEW value) Writes aMemorySegment
, with the given layout, to the variable argument list being constructed.VaList.Builder.addVarg
(ValueLayout.OfAddressPREVIEW layout, MemorySegmentPREVIEW segment) VaList.Builder.addVarg
(ValueLayout.OfDoublePREVIEW layout, double value) Writes adouble
value to the variable argument list being constructed.VaList.Builder.addVarg
(ValueLayout.OfIntPREVIEW layout, int value) Writes anint
value to the variable argument list being constructed.VaList.Builder.addVarg
(ValueLayout.OfLongPREVIEW layout, long value) Writes along
value to the variable argument list being constructed.Method parameters in java.lang.foreign with type arguments of type VaList.BuilderPREVIEWModifier and TypeMethodDescriptionVaList.make
(Consumer<VaList.BuilderPREVIEW> actions, SegmentScopePREVIEW scope) Creates a variable argument list using a builder (seeVaList.Builder
PREVIEW), with the given scope.