Class mln_string_view
java.lang.Object
org.maplibre.nativeffi.internal.c.mln_string_view
struct mln_string_view {
const char *data;
size_t size;
}
-
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 MemorySegmentdata(MemorySegment struct) Getter for field:const char *datastatic voiddata(MemorySegment struct, MemorySegment fieldValue) Setter for field:const char *datastatic final AddressLayoutLayout for field:const char *datastatic final longOffset for field:const char *datastatic 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 longsize(MemorySegment struct) Getter for field:size_t sizestatic voidsize(MemorySegment struct, long fieldValue) Setter for field:size_t sizestatic final ValueLayout.OfLongLayout for field:size_t sizestatic final longOffset for field:size_t sizestatic longsizeof()The size (in bytes) of this struct
-
Method Details
-
layout
The layout of this struct -
data$layout
Layout for field:const char *data -
data$offset
public static final long data$offset()Offset for field:const char *data -
data
Getter for field:const char *data -
data
Setter for field:const char *data -
size$layout
Layout for field:size_t size -
size$offset
public static final long size$offset()Offset for field:size_t size -
size
Getter for field:size_t size -
size
Setter for field:size_t size -
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()
-