Package org.gnome.glib
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("io.github.jwharm.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(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, java.lang.foreign.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. -
upcall
Theupcallmethod is called from native code. The parameters are marshaled andrun(org.gnome.glib.SequenceIter, org.gnome.glib.SequenceIter, java.lang.foreign.MemorySegment)is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment, java.lang.foreign.MemorySegment)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-