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

monocle.refined.package.scala Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package monocle

import eu.timepit.refined._
import eu.timepit.refined.api.Refined
import eu.timepit.refined.numeric.Interval

package object refined {
  type ZeroTo[T] = Int Refined Interval.Closed[W.`0`.T, T]

  type ByteBits = ZeroTo[W.`7`.T]
  type CharBits = ZeroTo[W.`15`.T]
  type IntBits = ZeroTo[W.`31`.T]
  type LongBits = ZeroTo[W.`63`.T]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy