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

com.malliina.values.IntValidator.scala Maven / Gradle / Ivy

There is a newer version: 3.7.4
Show newest version
package com.malliina.values

trait IntValidator[T] extends RangeValidator[Int, T] {
  override def isValid(elem: Int): Boolean = elem >= Min && elem <= Max
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy