All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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