com.hp.jipp.pdl.PdlUtil.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jipp-pdl Show documentation
Show all versions of jipp-pdl Show documentation
PWG-Raster and PCLm conversions
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