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

org.scalameter.CurveData.scala Maven / Gradle / Ivy

The newest version!
package org.scalameter

import scala.collection.Seq



case class CurveData[T](
  measurements: Seq[Measurement[T]], info: Map[Key[_], Any], context: Context
) {
  def success = measurements.forall(_.success)
}


object CurveData {
  def empty[T] = CurveData[T](Seq(), Map(), currentContext)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy