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

joou.UMath Maven / Gradle / Ivy

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package joou;

/**
 *
 * @author GBarbieri
 */
public class UMath {

    public static UByte max(UByte a, UByte b) {
        return a.compareTo(b) > 0 ? a : b;
    }

    public static UInt max(UInt a, UInt b) {
        return a.compareTo(b) > 0 ? a : b;
    }

    public static ULong max(ULong a, ULong b) {
        return a.compareTo(b) > 0 ? a : b;
    }

    public static UShort max(UShort a, UShort b) {
        return a.compareTo(b) > 0 ? a : b;
    }

    public static UByte min(UByte a, UByte b) {
        return a.compareTo(b) < 0 ? a : b;
    }

    public static UInt min(UInt a, UInt b) {
        return a.compareTo(b) < 0 ? a : b;
    }

    public static ULong min(ULong a, ULong b) {
        return a.compareTo(b) < 0 ? a : b;
    }

    public static UShort min(UShort a, UShort b) {
        return a.compareTo(b) < 0 ? a : b;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy