Uses of Interface
jdk.incubator.foreign.VaList.Builder
Packages that use VaList.Builder
Package
Description
Classes to support low-level and efficient foreign memory/function access, directly from Java.
-
Uses of VaList.Builder in jdk.incubator.foreign
Methods in jdk.incubator.foreign that return VaList.BuilderModifier and TypeMethodDescriptionVaList.Builder.addVarg(GroupLayout layout, MemorySegment value) Writes aMemorySegmentvalue, with given layout, to the variable argument list being constructed.VaList.Builder.addVarg(ValueLayout.OfAddress layout, Addressable value) Writes anAddressablevalue to the variable argument list being constructed.VaList.Builder.addVarg(ValueLayout.OfDouble layout, double value) Writes adoublevalue to the variable argument list being constructed.VaList.Builder.addVarg(ValueLayout.OfInt layout, int value) Writes anintvalue to the variable argument list being constructed.VaList.Builder.addVarg(ValueLayout.OfLong layout, long value) Writes alongvalue to the variable argument list being constructed.Method parameters in jdk.incubator.foreign with type arguments of type VaList.BuilderModifier and TypeMethodDescriptionstatic VaListVaList.make(Consumer<VaList.Builder> actions, ResourceScope scope) Constructs a new variable argument list using a builder (seeVaList.Builder), with a given resource scope.