Package

org.scalameter.execution.invocation

instrumentation

Permalink

package instrumentation

Visibility
  1. Public
  2. All

Type Members

  1. class MethodInvocationCounter extends AnyRef

    Permalink
  2. case class MethodSignature(className: String, methodName: String, methodArgs: String*) extends Product with Serializable

    Permalink

    Contains method signature in form of className.methodName(methodArgs...) where methodArgs are written as Java types.

    Contains method signature in form of className.methodName(methodArgs...) where methodArgs are written as Java types.

    Note that it does not contain return type, because we cannot differentiate methods based on their return types.

    // method signature for a method `(range: scala.collection.immutable.Range).by(idx: Int)`
    MethodSignature("scala.collection.immutable.Range", "by", "int").toString == "scala.collection.immutable.Range.by(int)"

Ungrouped