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

com.hp.jipp.pdl.PdlUtil.kt Maven / Gradle / Ivy

The newest version!
// Copyright 2018 HP Development Company, L.P.
// SPDX-License-Identifier: MIT

package com.hp.jipp.pdl

/** Return true if the integer is odd. */
val Int.isOdd: Boolean
    get() = this % 2 == 1

/** Return true if the integer is odd. */
val Int.isEven: Boolean
    get() = !this.isOdd




© 2015 - 2024 Weber Informatics LLC | Privacy Policy