com.github.axet.libvorbis.Icomparator Maven / Gradle / Ivy
package com.github.axet.libvorbis;
/** Interface to use while sorting */
interface Icomparator {
/**
* @return to sort in increasing order:
* < 0, if a < b
* 0, if a == b
* > 0, if a > b
*/
int compare(int a, int b);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy