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

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

The newest version!
package com.mle.values

/**
 * @author Michael
 */
trait IntValidator[T] extends RangeValidator[Int, T] {
  implicit val json = jsonFormat

  override def isValid(elem: Int): Boolean = elem >= Min && elem <= Max
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy