org.scalameter
package org.scalameter
Type members
Classlikes
Mixin for all org.scalameter.Measurer implementations that perform any kind of method invocation counting.
Mixin for all org.scalameter.Measurer implementations that perform any kind of method invocation counting.
class Key[T](val name: String)(`evidence$1`: Pickler[T], container: KeyContainer) extends PicklerBasedKey[T]
- Companion
- object
class KeyWithDefault[T](name: String)(`evidence$2`: Pickler[T], container: KeyContainer) extends Key[T]
Base for keys that have some kind of default value.
Base for keys that have some kind of default value.
class KeyWithDefaultKey[T](name: String, val default: KeyWithDefaultValue[T])(`evidence$4`: Pickler[T], container: KeyContainer) extends KeyWithDefault[T]
Key that chains finding default value to KeyWithDefaultValue if value under key is not found in a context.
Key that chains finding default value to KeyWithDefaultValue if value under key is not found in a context.
Note that this key type is handled in org.scalameter.Context.apply).
class KeyWithDefaultValue[T](name: String, val default: T)(`evidence$3`: Pickler[T], container: KeyContainer) extends KeyWithDefault[T]