Interface SequenceIterCompareFunc
- All Superinterfaces:
FunctionPointer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
@Generated("org.javagi.JavaGI")
public interface SequenceIterCompareFunc
extends FunctionPointer
Functional interface declaration of the SequenceIterCompareFunc callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionintrun(SequenceIter a, SequenceIter b, @Nullable MemorySegment data) AGSequenceIterCompareFuncis a function used to compare iterators.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(MemorySegment, MemorySegment, MemorySegment)method.default intupcall(MemorySegment a, MemorySegment b, MemorySegment data) Theupcallmethod is called from native code.
-
Method Details
-
run
AGSequenceIterCompareFuncis a function used to compare iterators. It must return zero if the iterators compare equal, a negative value ifacomes beforeb,and a positive value ifbcomes beforea.- Parameters:
a- aGSequenceIterb- aGSequenceIterdata- user data- Returns:
- zero if the iterators are equal, a negative value if
acomes beforeb,and a positive value ifbcomes beforea.
-
upcall
Theupcallmethod is called from native code. The parameters are marshaled andrun(SequenceIter, SequenceIter, MemorySegment)is executed. -
toCallback
Creates a native function pointer to theupcall(MemorySegment, MemorySegment, MemorySegment)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-