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

main.cesium.binarySearchComparator.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

package cesium

/**
 * A function used to compare two items while performing a binary search.
 * ```
 * function compareNumbers(a, b) {
 *     return a - b;
 * }
 * ```
 * @param [a] An item in the array.
 * @param [b] The item being searched for.
 */
typealias binarySearchComparator = (a: Any, b: Any) -> Double




© 2015 - 2024 Weber Informatics LLC | Privacy Policy