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

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

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

import java.math.BigInteger

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy