Uses of Class
jdk.incubator.foreign.ValueLayout.OfBoolean
Packages that use ValueLayout.OfBoolean
Package
Description
 Classes to support low-level and efficient foreign memory/function access, directly from Java.
- 
Uses of ValueLayout.OfBoolean in jdk.incubator.foreignFields in jdk.incubator.foreign declared as ValueLayout.OfBooleanModifier and TypeFieldDescriptionstatic final ValueLayout.OfBooleanValueLayout.JAVA_BOOLEANA value layout constant whose size is the same as that of a Javaboolean, bit alignment set to 8, and byte order set toByteOrder.nativeOrder().Methods in jdk.incubator.foreign that return ValueLayout.OfBooleanMethods in jdk.incubator.foreign with parameters of type ValueLayout.OfBooleanModifier and TypeMethodDescriptionbooleanMemoryAddress.get(ValueLayout.OfBoolean layout, long offset) Reads a boolean from this address and offset with given layout.default booleanMemorySegment.get(ValueLayout.OfBoolean layout, long offset) Reads a boolean from this segment and offset with given layout.voidMemoryAddress.set(ValueLayout.OfBoolean layout, long offset, boolean value) Writes a boolean to this address instance and offset with given layout.default voidMemorySegment.set(ValueLayout.OfBoolean layout, long offset, boolean value) Writes a boolean to this segment and offset with given layout.