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

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

// Automatically generated - do not modify!

package cesium

/**
 * A function used to compare two items while performing a merge sort.
 * ```
 * function compareNumbers(a, b, userDefinedObject) {
 *     return a - b;
 * }
 * ```
 * @param [a] An item in the array.
 * @param [b] An item in the array.
 * @param [userDefinedObject] An object that was passed to [mergeSort].
 */
typealias mergeSortComparator = (a: Any, b: Any, userDefinedObject: Any?) -> Double




© 2015 - 2024 Weber Informatics LLC | Privacy Policy