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

com.unstablebuild.settler.model.MemorySize.scala Maven / Gradle / Ivy

The newest version!
package com.unstablebuild.settler.model

case class MemorySize(toBytes: Long) extends Ordered[MemorySize] {

  override def compare(that: MemorySize): Int = toBytes.compareTo(that.toBytes)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy