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

com.github.reikje.specifiers.UnsignedDecimalInteger.scala Maven / Gradle / Ivy

The newest version!
package com.github.reikje.specifiers

import java.math.BigInteger

/**
  * Adds support for '''%u''' specifiers.
  *
  * @author rschatz
  */
object UnsignedDecimalInteger extends UnsignedNumericConversion {
  override protected val complement: BigInteger = BigInteger.ONE.shiftLeft(32)

  /**
    * Returns '''%u'''.
    *
    * @return String
    */
  override val specifier: String = "%u"
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy