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

xxl.mathematica.BitNot Maven / Gradle / Ivy

package xxl.mathematica;

/**
 * 按位非
 */

public class BitNot {
    /**
     * 给出整数 n 按位的位非(NOT).
     *
     * @param integer
     * @return
     */
    public static int bitNot(Integer integer) {
        ObjectHelper.requireNonNull(integer);
        return ~integer;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy