Class mln_json_member
java.lang.Object
org.maplibre.nativeffi.internal.c.mln_json_member
struct mln_json_member {
mln_string_view key;
const mln_json_value *value;
}
-
Method Summary
Modifier and TypeMethodDescriptionstatic MemorySegmentallocate(SegmentAllocator allocator) Allocate a segment of sizelayout().byteSize()usingallocatorstatic MemorySegmentallocateArray(long elementCount, SegmentAllocator allocator) Allocate an array of sizeelementCountusingallocator.static MemorySegmentasSlice(MemorySegment array, long index) Obtains a slice ofarrayParamwhich selects the array element atindex.static MemorySegmentkey(MemorySegment struct) Getter for field:mln_string_view keystatic voidkey(MemorySegment struct, MemorySegment fieldValue) Setter for field:mln_string_view keystatic final GroupLayoutLayout for field:mln_string_view keystatic final longOffset for field:mln_string_view keystatic final GroupLayoutlayout()The layout of this structstatic MemorySegmentreinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any).static MemorySegmentreinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any).static longsizeof()The size (in bytes) of this structstatic MemorySegmentvalue(MemorySegment struct) Getter for field:const mln_json_value *valuestatic voidvalue(MemorySegment struct, MemorySegment fieldValue) Setter for field:const mln_json_value *valuestatic final AddressLayoutLayout for field:const mln_json_value *valuestatic final longOffset for field:const mln_json_value *value
-
Method Details
-
layout
The layout of this struct -
key$layout
Layout for field:mln_string_view key -
key$offset
public static final long key$offset()Offset for field:mln_string_view key -
key
Getter for field:mln_string_view key -
key
Setter for field:mln_string_view key -
value$layout
Layout for field:const mln_json_value *value -
value$offset
public static final long value$offset()Offset for field:const mln_json_value *value -
value
Getter for field:const mln_json_value *value -
value
Setter for field:const mln_json_value *value -
asSlice
Obtains a slice ofarrayParamwhich selects the array element atindex. The returned segment has addressarrayParam.address() + index * layout().byteSize() -
sizeof
public static long sizeof()The size (in bytes) of this struct -
allocate
Allocate a segment of sizelayout().byteSize()usingallocator -
allocateArray
Allocate an array of sizeelementCountusingallocator. The returned segment has sizeelementCount * layout().byteSize(). -
reinterpret
public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any). The returned segment has sizelayout().byteSize() -
reinterpret
public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any). The returned segment has sizeelementCount * layout().byteSize()
-