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

scala.collection.Util.scala Maven / Gradle / Ivy

The newest version!
package scala.collection

import java.lang.Integer.numberOfLeadingZeros

object Util {

  /** A power of 2 >= `target`.
    */
  def nextPositivePowerOfTwo(target: Int): Int = 1 << -numberOfLeadingZeros(target - 1)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy