diff --git a/.gitignore b/.gitignore
index c196864..8bc79c0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
*.class
*.log
+**/.DS_Store
# sbt specific
.cache
@@ -32,3 +33,14 @@ project/plugins/project/
.metals
.vscode
metals.sbt
+
+# website
+website/translated_docs
+website/build/
+website/yarn.lock
+website/node_modules
+website/i18n/*
+!website/i18n/en.json
+out/
+node_modules/
+package-lock.json
\ No newline at end of file
diff --git a/build.sbt b/build.sbt
index 15c3a1b..fbca99a 100644
--- a/build.sbt
+++ b/build.sbt
@@ -48,6 +48,7 @@ import _root_.ch.epfl.scala.profiling.build.BuildImplementation.BuildDefaults
import scalapb.compiler.Version.scalapbVersion
lazy val profiledb = project
.in(file("profiledb"))
+ .enablePlugins(BuildInfoPlugin)
// .settings(metalsSettings)
.settings(
// Specify scala version to allow third-party software to use this module
@@ -55,7 +56,17 @@ lazy val profiledb = project
scalaVersion := bin212.head,
libraryDependencies +=
"com.thesamet.scalapb" %% "scalapb-runtime" % scalapbVersion % "protobuf",
- Compile / PB.targets := Seq(scalapb.gen() -> (Compile / sourceManaged).value)
+ Compile / managedSourceDirectories += target.value / "protobuf-generated",
+ Compile / PB.targets in Compile := Seq(
+ scalapb.gen() -> (target.value / "protobuf-generated")
+ ),
+ buildInfoPackage := "scalac.profiling.internal.build",
+ buildInfoKeys := List[BuildInfoKey](
+ Keys.organization,
+ Keys.version,
+ Keys.scalaVersion,
+ Keys.crossScalaVersions
+ )
)
// Do not change the lhs id of this plugin, `BuildPlugin` relies on it
@@ -189,6 +200,23 @@ lazy val integrations = project
}.evaluated
)
+lazy val docs = project
+ .in(file("docs-gen"))
+ .dependsOn(profiledb)
+ .enablePlugins(MdocPlugin, DocusaurusPlugin)
+ .settings(
+ name := "scalac-profiling-docs",
+ moduleName := "scalac-profiling-docs",
+ libraryDependencies += "io.get-coursier" % "interface" % "1.0.19",
+ (publish / skip) := true,
+ scalaVersion := bin212.head,
+ mdoc := (Compile / run).evaluated,
+ (Compile / mainClass) := Some("ch.epfl.scala.profiling.Docs"),
+ (Compile / resources) ++= {
+ List((ThisBuild / baseDirectory).value / "docs")
+ }
+ )
+
val proxy = project
.in(file(".proxy"))
.aggregate(BetterFiles, Wartremover)
diff --git a/docs-gen/src/main/scala/ch/epfl/scala/profiling/Docs.scala b/docs-gen/src/main/scala/ch/epfl/scala/profiling/Docs.scala
new file mode 100644
index 0000000..69e8002
--- /dev/null
+++ b/docs-gen/src/main/scala/ch/epfl/scala/profiling/Docs.scala
@@ -0,0 +1,42 @@
+package ch.epfl.scala.profiling
+
+import ch.epfl.scala.profiling.docs.Sonatype
+import mdoc.MainSettings
+
+import scala.meta.io.AbsolutePath
+
+object Docs {
+ def main(args: Array[String]): Unit = {
+ val cwd0 = AbsolutePath.workingDirectory
+ // Depending on who runs it (sbt vs bloop), the current working directory is different
+ val cwd = if (!cwd0.resolve("docs").isDirectory) cwd0.toNIO.getParent else cwd0.toNIO
+
+ def prepareVersions(prefix: String): Seq[String] => String =
+ _.sortWith {
+ case (l, r) =>
+ l.replaceFirst(prefix + ".", "").toInt <=
+ r.replaceFirst(prefix + ".", "").toInt
+ }.mkString(", ")
+
+ val (scala212Versions, scala213Versions) =
+ scalac.profiling.internal.build.BuildInfo.crossScalaVersions.partition(_.startsWith("2.12"))
+
+ val settings = MainSettings()
+ .withSiteVariables(
+ Map(
+ "VERSION" -> Sonatype.releaseScalacProfiling.version,
+ "LATEST_VERSION" -> scalac.profiling.internal.build.BuildInfo.version,
+ "SBT_PLUGIN_VERSION" -> Sonatype.releaseSbtPlugin.version,
+ "SCALA212_VERSIONS" -> prepareVersions("2.12")(scala212Versions),
+ "SCALA213_VERSIONS" -> prepareVersions("2.13")(scala213Versions)
+ )
+ )
+ .withArgs(args.toList)
+ // it should work with mdoc when run inside bloop but it doesn't, let's wait until it's fixed
+ .withIn(cwd.resolve("docs"))
+ .withOut(cwd.resolve("out"))
+
+ val exitCode = _root_.mdoc.Main.process(settings)
+ if (exitCode != 0) sys.exit(exitCode)
+ }
+}
diff --git a/docs-gen/src/main/scala/ch/epfl/scala/profiling/docs/DependencyResolution.scala b/docs-gen/src/main/scala/ch/epfl/scala/profiling/docs/DependencyResolution.scala
new file mode 100644
index 0000000..ab9f69d
--- /dev/null
+++ b/docs-gen/src/main/scala/ch/epfl/scala/profiling/docs/DependencyResolution.scala
@@ -0,0 +1,89 @@
+package ch.epfl.scala.profiling.docs
+
+import coursierapi.Repository
+import coursierapi.error.CoursierError
+
+import ch.epfl.scala.profiledb.utils.AbsolutePath
+
+import scala.jdk.CollectionConverters._
+
+// Slight modification of `bloop.DependencyResolution`
+object DependencyResolution {
+
+ /**
+ * @param organization The module's organization.
+ * @param module The module's name.
+ * @param version The module's version.
+ */
+ final case class Artifact(organization: String, module: String, version: String)
+
+ /**
+ * Resolve the specified modules and get all the files. By default, the local Ivy
+ * repository and Maven Central are included in resolution. This resolution throws
+ * in case there is an error.
+ *
+ * @param artifacts Artifacts to resolve
+ * @param resolveSources Resolve JAR files containing sources
+ * @param additionalRepos Additional repositories to include in resolution.
+ * @return All the resolved files.
+ */
+ def resolve(
+ artifacts: List[Artifact],
+ resolveSources: Boolean = false,
+ additionalRepos: Seq[Repository] = Nil
+ ): Array[AbsolutePath] = {
+ resolveWithErrors(artifacts, resolveSources, additionalRepos) match {
+ case Right(paths) => paths
+ case Left(error) => throw error
+ }
+ }
+
+ /**
+ * Resolve the specified module and get all the files. By default, the local ivy
+ * repository and Maven Central are included in resolution. This resolution is
+ * pure and returns either some errors or some resolved jars.
+ *
+ * @param artifacts Artifacts to resolve
+ * @return Either a coursier error or all the resolved files.
+ */
+ def resolveWithErrors(
+ artifacts: List[Artifact],
+ resolveSources: Boolean = false,
+ additionalRepositories: Seq[Repository] = Nil
+ ): Either[CoursierError, Array[AbsolutePath]] = {
+ val dependencies = artifacts.map { artifact =>
+ import artifact._
+ val baseDep = coursierapi.Dependency.of(organization, module, version)
+ if (resolveSources) baseDep.withClassifier("sources")
+ else baseDep
+ }
+ resolveDependenciesWithErrors(dependencies, resolveSources, additionalRepositories)
+ }
+
+ /**
+ * Resolve the specified dependencies and get all the files. By default, the
+ * local ivy repository and Maven Central are included in resolution. This
+ * resolution is pure and returns either some errors or some resolved jars.
+ *
+ * @param dependencies Dependencies to resolve.
+ * @param additionalRepositories Additional repositories to include in resolution.
+ * @return Either a coursier error or all the resolved files.
+ */
+ def resolveDependenciesWithErrors(
+ dependencies: Seq[coursierapi.Dependency],
+ resolveSources: Boolean = false,
+ additionalRepositories: Seq[Repository] = Nil
+ ): Either[CoursierError, Array[AbsolutePath]] = {
+ val fetch = coursierapi.Fetch
+ .create()
+ .withDependencies(dependencies: _*)
+ if (resolveSources)
+ fetch.addArtifactTypes("src", "jar")
+ fetch.addRepositories(additionalRepositories: _*)
+
+ try Right(fetch.fetch().asScala.toArray.map(f => AbsolutePath(f.toPath)))
+ catch {
+ case error: CoursierError => Left(error)
+ }
+ }
+}
diff --git a/docs-gen/src/main/scala/ch/epfl/scala/profiling/docs/Sonatype.scala b/docs-gen/src/main/scala/ch/epfl/scala/profiling/docs/Sonatype.scala
new file mode 100644
index 0000000..ec4aa59
--- /dev/null
+++ b/docs-gen/src/main/scala/ch/epfl/scala/profiling/docs/Sonatype.scala
@@ -0,0 +1,80 @@
+package ch.epfl.scala.profiling.docs
+
+import java.text.SimpleDateFormat
+import java.util.Date
+import org.jsoup.Jsoup
+
+import scala.util.control.NonFatal
+import coursierapi.MavenRepository
+
+import scala.jdk.CollectionConverters._
+
+final case class Release(version: String, lastModified: Date)
+
+object Sonatype {
+ lazy val releaseScalacProfiling = fetchLatest("scalac-profiling_2.12.18")
+ lazy val releaseSbtPlugin = fetchLatest("sbt-scalac-profiling_2.12_1.0")
+
+ /** Returns the latest published snapshot release, or the current release if. */
+ private def fetchLatest(artifact: String): Release = {
+ val artifacts = List(
+ DependencyResolution.Artifact("ch.epfl.scala", artifact, "latest.release")
+ )
+ val resolvedJars = DependencyResolution.resolve(
+ artifacts,
+ additionalRepos =
+ List(MavenRepository.of(s"https://oss.sonatype.org/content/repositories/staging"))
+ )
+
+ val latestStableVersion = resolvedJars.find(_.syntax.contains(artifact)) match {
+ case None => sys.error(s"Missing jar for resolved artifact '$artifact'")
+ case Some(jar) =>
+ val firstTry =
+ jar.underlying
+ .getFileName()
+ .toString
+ .stripSuffix(".jar")
+ .stripPrefix(artifact + "-")
+
+ if (!firstTry.endsWith("_2.12.18") && !firstTry.endsWith("_2.12_1.0"))
+ firstTry
+ else jar.getParent.getParent.underlying.getFileName.toString
+ }
+
+ val doc = Jsoup
+ .connect(
+ s"https://oss.sonatype.org/content/repositories/releases/ch/epfl/scala/$artifact/"
+ )
+ .get
+
+ val dateTime = new SimpleDateFormat("yyyy-MM-dd HH:mm")
+ val releases = doc
+ .select("pre")
+ .asScala
+ .flatMap { versionRow =>
+ val elements = versionRow.getAllElements().asScala.filterNot(_.text().contains("../"))
+ val nodes = versionRow.textNodes().asScala.filter(_.text().trim.nonEmpty)
+
+ elements.zip(nodes).flatMap {
+ case (element, node) =>
+ val version = element.text().stripSuffix("/")
+
+ if (version.startsWith("maven-metadata")) Nil
+ else {
+ node.text().trim().split("\\s+").init.toList match {
+ case List(date, time) =>
+ try {
+ val parsedDate = dateTime.parse(s"$date $time")
+ List(Release(version, parsedDate))
+ } catch {
+ case NonFatal(_) => Nil
+ }
+ case _ => Nil
+ }
+ }
+ }
+ }
+
+ releases.filter(_.version == latestStableVersion).maxBy(_.lastModified.getTime)
+ }
+}
diff --git a/docs/LICENSE.md b/docs/LICENSE.md
deleted file mode 100644
index 2e1e575..0000000
--- a/docs/LICENSE.md
+++ /dev/null
@@ -1,16 +0,0 @@
-Copyright (c) 2015 Mountainstorm
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/docs/bin/update.sh b/docs/bin/update.sh
deleted file mode 100755
index 80cc3c6..0000000
--- a/docs/bin/update.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash -
-set -o nounset # Treat unset variables as an error
-
-cp "$1" demo.dot
-dot -Tsvg -o demo.svg demo.dot
diff --git a/docs/circe-integration-flamegraph.svg b/docs/circe-integration-flamegraph.svg
deleted file mode 100644
index 59420fd..0000000
--- a/docs/circe-integration-flamegraph.svg
+++ /dev/null
@@ -1,1122 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Flame Graph
-
-Reset Zoom
-Search
-
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String("d")) :: shapeless.HNil,Option[Double] :: shapeless.HNil] (4 ms, 0.14%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]] (4 ms, 0.14%)
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String("Nil")) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil] (4 ms, 0.14%)
-
-
-
-io.circe.Encoder[String] (23 ms, 0.78%)
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Qux]] (10 ms, 0.34%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("::")] (3 ms, 0.10%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.Nil.type,K] (12 ms, 0.41%)
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type] (79 ms, 2.68%)
-io..
-
-
-shapeless.Witness.Aux[Symbol @@ String("d")] (8 ms, 0.27%)
-
-
-
-io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("head")],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("tl$access$1")],List[String]] :: shapeless.HNil] (47 ms, 1.59%)
-
-
-
-io.circe.Decoder[String] (6 ms, 0.20%)
-
-
-
-io.circe.Decoder[List[String]] (23 ms, 0.78%)
-
-
-
-io.circe.generic.decoding.DerivedDecoder[List[String]] (287 ms, 9.74%)
-io.circe.gener..
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.Nil.type]] (9 ms, 0.31%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]] (7 ms, 0.24%)
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R] (117 ms, 3.97%)
-shap..
-
-
-scala.collection.generic.CanBuildFrom[Nothing,Double,Traversable[Double] with Option[Double]] (2 ms, 0.07%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]] (6 ms, 0.20%)
-
-
-
-io.circe.Encoder[Foo] (2,001 ms, 67.90%)
-io.circe.Encoder[Foo]
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Nil.type,V] (14 ms, 0.48%)
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Bar]] (9 ms, 0.31%)
-
-
-
-io.circe.Decoder[Int] (4 ms, 0.14%)
-
-
-
-io.circe.export.Exported[io.circe.Decoder[Foo]] (891 ms, 30.23%)
-io.circe.export.Exported[io.circe.Decoder[Foo]]
-
-
-WebsiteExample.foo.type => ?{def asJson: ?} (45 ms, 1.53%)
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[List[String]]] (9 ms, 0.31%)
-
-
-
-shapeless.Generic.Aux[Foo,V] (13 ms, 0.44%)
-
-
-
-io.circe.export.Exported[io.circe.Decoder[String]] (6 ms, 0.20%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("Qux")] (3 ms, 0.10%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Qux]] (4 ms, 0.14%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[Qux,K] (35 ms, 1.19%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("Nil")] (6 ms, 0.20%)
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("Bar")],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("Qux")],Qux] :+: shapeless.CNil] (80 ms, 2.71%)
-io..
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String("i")) :: (Symbol @@ String("d")) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R] (9 ms, 0.31%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]] (1 ms, 0.03%)
-
-
-
-io.circe.Decoder[Double] (10 ms, 0.34%)
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("i")],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("d")],Option[Double]] :: shapeless.HNil] (51 ms, 1.73%)
-
-
-
-io.circe.Decoder[Qux] (8 ms, 0.27%)
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String("Qux")) :: shapeless.HNil,Qux :+: shapeless.CNil] (4 ms, 0.14%)
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Bar] (34 ms, 1.15%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String("xs"),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] (5 ms, 0.17%)
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.::[String]]] (9 ms, 0.31%)
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R] (31 ms, 1.05%)
-
-
-
-shapeless.LabelledGeneric.Aux[String,R] (20 ms, 0.68%)
-
-
-
-io.circe.Encoder[List[String]] (26 ms, 0.88%)
-
-
-
-io.circe.Encoder[String] (7 ms, 0.24%)
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String("head")) :: (Symbol @@ String("tl$access$1")) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R] (26 ms, 0.88%)
-
-
-
-shapeless.LabelledGeneric.Aux[Foo,R] (42 ms, 1.43%)
-
-
-
-io.circe.generic.decoding.ReprDecoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("xs")],List[String]] :: shapeless.HNil] (20 ms, 0.68%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[String,K] (36 ms, 1.22%)
-
-
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String("::")) :: (Symbol @@ String("Nil")) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R] (27 ms, 0.92%)
-
-
-
-io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("i")],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("d")],Option[Double]] :: shapeless.HNil] (33 ms, 1.12%)
-
-
-
-shapeless.Generic.Aux[Qux,V] (42 ms, 1.43%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("Bar")] (3 ms, 0.10%)
-
-
-
-this.Out <:< (String :: List[String] :: shapeless.HNil) (1 ms, 0.03%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[Bar,K] (24 ms, 0.81%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]] (2 ms, 0.07%)
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[shapeless.HNil,shapeless.HNil,R] (3 ms, 0.10%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]] (1 ms, 0.03%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[Qux,K] (11 ms, 0.37%)
-
-
-
-io.circe.Decoder[scala.collection.immutable.::[String]] (18 ms, 0.61%)
-
-
-
-io.circe.Decoder[scala.collection.immutable.Nil.type] (10 ms, 0.34%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[String,K] (13 ms, 0.44%)
-
-
-
-io.circe.Encoder[List[String]] (47 ms, 1.59%)
-
-
-
-shapeless.Generic.Aux[Bar,V] (13 ms, 0.44%)
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String("xs")) :: shapeless.HNil,List[String] :: shapeless.HNil,R] (6 ms, 0.20%)
-
-
-
-io.circe.export.Exported[io.circe.Decoder[List[String]]] (3 ms, 0.10%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("tl$access$1")] (8 ms, 0.27%)
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]] (123 ms, 4.17%)
-io.c..
-
-
-io.circe.export.Exported[io.circe.Decoder[Bar]] (2 ms, 0.07%)
-
-
-
-(=> Unit) => shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]] (1 ms, 0.03%)
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R] (73 ms, 2.48%)
-sh..
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[List[String]]] (4 ms, 0.14%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.Nil.type,K] (27 ms, 0.92%)
-
-
-
-shapeless.LabelledGeneric.Aux[Bar,R] (118 ms, 4.00%)
-shap..
-
-
-io.circe.Encoder[scala.collection.immutable.::[String]] (27 ms, 0.92%)
-
-
-
-shapeless.LabelledGeneric.Aux[List[String],R] (284 ms, 9.64%)
-shapeless.Labe..
-
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String("d")) :: shapeless.HNil,Option[Double] :: shapeless.HNil] (12 ms, 0.41%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("::")] (9 ms, 0.31%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]] (835 ms, 28.33%)
-shapeless.Lazy[io.circe.generic.decoding.Deri..
-
-
-this.Out <:< (Bar :+: Qux :+: shapeless.CNil) (1 ms, 0.03%)
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Qux] (123 ms, 4.17%)
-io.c..
-
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]] (4 ms, 0.14%)
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("::")],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("Nil")],scala.collection.immutable.Nil.type] :+: shapeless.CNil] (67 ms, 2.27%)
-i..
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Bar]] (1 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String("head")) :: (Symbol @@ String("tl$access$1")) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R] (9 ms, 0.31%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("head")] (7 ms, 0.24%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("i")] (8 ms, 0.27%)
-
-
-
-(=> Unit) => shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]] (1 ms, 0.03%)
-
-
-
-io.circe.export.Exported[io.circe.Decoder[Qux]] (3 ms, 0.10%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Qux]] (1 ms, 0.03%)
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[List[String]] (642 ms, 21.78%)
-io.circe.generic.encoding.DerivedO..
-
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String("tl$access$1")) :: shapeless.HNil,List[String] :: shapeless.HNil] (12 ms, 0.41%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("xs")] (8 ms, 0.27%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("xs")] (3 ms, 0.10%)
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("xs")],List[String]] :: shapeless.HNil] (39 ms, 1.32%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("Nil")] (3 ms, 0.10%)
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Foo] (205 ms, 6.96%)
-io.circe...
-
-
-shapeless.DefaultSymbolicLabelling.Aux[List[String],K] (167 ms, 5.67%)
-shapele..
-
-
-shapeless.labelled.FieldType[Symbol @@ String("xs"),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out <:< (List[String] :: shapeless.HNil) (1 ms, 0.03%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[Foo,K] (66 ms, 2.24%)
-s..
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[List[String]]] (3 ms, 0.10%)
-
-
-
-shapeless.LabelledGeneric.Aux[Bar,R] (33 ms, 1.12%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] (4 ms, 0.14%)
-
-
-
-shapeless.Generic.Aux[List[String],V] (196 ms, 6.65%)
-shapeless..
-
-
-shapeless.ops.coproduct.ZipWithKeys[shapeless.HNil,shapeless.CNil] (1 ms, 0.03%)
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[List[String]]] (9 ms, 0.31%)
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[shapeless.HNil,shapeless.CNil] (2 ms, 0.07%)
-
-
-
-shapeless.Generic.Aux[Foo,V] (44 ms, 1.49%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("tl$access$1")] (3 ms, 0.10%)
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Qux] (41 ms, 1.39%)
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String("i")) :: (Symbol @@ String("d")) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R] (28 ms, 0.95%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]] (2 ms, 0.07%)
-
-
-
-shapeless.LabelledGeneric.Aux[Foo,R] (197 ms, 6.68%)
-shapeless..
-
-
-io.circe.Encoder[Double] (8 ms, 0.27%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Bar]] (4 ms, 0.14%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]] (5 ms, 0.17%)
-
-
-
-scala.collection.immutable.::[String] => Iterable[String] (1 ms, 0.03%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.::[String],K] (32 ms, 1.09%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("d")] (3 ms, 0.10%)
-
-
-
-shapeless.LabelledGeneric.Aux[String,R] (53 ms, 1.80%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]] (2 ms, 0.07%)
-
-
-
-shapeless.Generic.Aux[Qux,V] (15 ms, 0.51%)
-
-
-
-io.circe.Decoder[String] (6 ms, 0.20%)
-
-
-
-shapeless.LabelledGeneric.Aux[Qux,R] (39 ms, 1.32%)
-
-
-
-shapeless.Generic.Aux[Bar,V] (31 ms, 1.05%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]] (4 ms, 0.14%)
-
-
-
-shapeless.Generic.Aux[List[String],V] (431 ms, 14.63%)
-shapeless.Generic.Aux[..
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Bar] (125 ms, 4.24%)
-io.ci..
-
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String("Bar")) :: (Symbol @@ String("Qux")) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R] (10 ms, 0.34%)
-
-
-
-io.circe.Decoder[List[String]] (14 ms, 0.48%)
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("head")],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("tl$access$1")],List[String]] :: shapeless.HNil] (87 ms, 2.95%)
-io..
-
-
-this.Out <:< (scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil) (1 ms, 0.03%)
-
-
-
-all (2,947 ms, 100%)
-
-
-
-io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("Bar")],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("Qux")],Qux] :+: shapeless.CNil] (37 ms, 1.26%)
-
-
-
-io.circe.Encoder[Bar] (19 ms, 0.64%)
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String("Qux")) :: shapeless.HNil,Qux :+: shapeless.CNil] (22 ms, 0.75%)
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.::[String],V] (21 ms, 0.71%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[Foo,K] (13 ms, 0.44%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("Bar")] (9 ms, 0.31%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("head")] (3 ms, 0.10%)
-
-
-
-io.circe.Decoder[Foo] (901 ms, 30.57%)
-io.circe.Decoder[Foo]
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Foo]] (1,955 ms, 66.34%)
-io.circe.export.Exported[io.circe.ObjectEncoder[Foo]]
-
-
-io.circe.Encoder[Qux] (21 ms, 0.71%)
-
-
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String("tl$access$1")) :: shapeless.HNil,List[String] :: shapeless.HNil] (4 ms, 0.14%)
-
-
-
-(=> Unit) => shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]] (2 ms, 0.07%)
-
-
-
-shapeless.LabelledGeneric.Aux[Qux,R] (115 ms, 3.90%)
-shap..
-
-
-io.circe.Decoder[String] (13 ms, 0.44%)
-
-
-
-shapeless.LabelledGeneric.Aux[List[String],R] (636 ms, 21.58%)
-shapeless.LabelledGeneric.Aux[Lis..
-
-
-io.circe.Decoder[Option[Double]] (17 ms, 0.58%)
-
-
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String("::")) :: (Symbol @@ String("Nil")) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R] (10 ms, 0.34%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.::[String],K] (15 ms, 0.51%)
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[String] (59 ms, 2.00%)
-i..
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String("xs")) :: shapeless.HNil,List[String] :: shapeless.HNil,R] (54 ms, 1.83%)
-s..
-
-
-io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type] (33 ms, 1.12%)
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.::[String],V] (44 ms, 1.49%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[Bar,K] (10 ms, 0.34%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("Qux")] (17 ms, 0.58%)
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[String]] (17 ms, 0.58%)
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[String]] (13 ms, 0.44%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]] (2 ms, 0.07%)
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Foo] (45 ms, 1.53%)
-
-
-
-io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.::[String]]] (5 ms, 0.17%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]] (1,889 ms, 64.10%)
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]
-
-
-io.circe.Decoder[Bar] (8 ms, 0.27%)
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[shapeless.HNil] (8 ms, 0.27%)
-
-
-
-io.circe.Encoder[String] (7 ms, 0.24%)
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String("Nil")) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil] (11 ms, 0.37%)
-
-
-
-shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil] (1 ms, 0.03%)
-
-
-
-io.circe.Encoder[String] (28 ms, 0.95%)
-
-
-
-io.circe.Encoder[Option[Double]] (16 ms, 0.54%)
-
-
-
-io.circe.generic.decoding.DerivedDecoder[String] (32 ms, 1.09%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]] (4 ms, 0.14%)
-
-
-
-io.circe.export.Exported[io.circe.Decoder[String]] (6 ms, 0.20%)
-
-
-
-io.circe.Decoder[String] (14 ms, 0.48%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[List[String]]] (1 ms, 0.03%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]] (2 ms, 0.07%)
-
-
-
-io.circe.Encoder[scala.collection.immutable.Nil.type] (20 ms, 0.68%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] (1 ms, 0.03%)
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R] (49 ms, 1.66%)
-
-
-
-io.circe.export.Exported[io.circe.Decoder[List[String]]] (3 ms, 0.10%)
-
-
-
-shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil] (1 ms, 0.03%)
-
-
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String("Bar")) :: (Symbol @@ String("Qux")) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R] (46 ms, 1.56%)
-
-
-
-io.circe.generic.decoding.ReprDecoder[shapeless.HNil] (1 ms, 0.03%)
-
-
-
-shapeless.Witness.Aux[Symbol @@ String("i")] (3 ms, 0.10%)
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Nil.type,V] (34 ms, 1.15%)
-
-
-
-io.circe.Encoder[Int] (7 ms, 0.24%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[List[String]]] (1 ms, 0.03%)
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[List[String],K] (73 ms, 2.48%)
-sh..
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]] (3 ms, 0.10%)
-
-
-
-io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]] (52 ms, 1.76%)
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]] (5 ms, 0.17%)
-
-
-
-shapeless.ops.function.FnFromProduct.Aux[P => A,String] (6 ms, 0.20%)
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String("xs"),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]] (1 ms, 0.03%)
-
-
-
-io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("::")],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("Nil")],scala.collection.immutable.Nil.type] :+: shapeless.CNil] (61 ms, 2.07%)
-i..
-
-
-io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.Nil.type]] (3 ms, 0.10%)
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[shapeless.HNil,shapeless.HNil,R] (1 ms, 0.03%)
-
-
-
diff --git a/docs/circe-integration.html b/docs/circe-integration.html
deleted file mode 100644
index dca085c..0000000
--- a/docs/circe-integration.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-
-
-
- Click node to highlight; Shift-scroll to zoom; Esc to unhighlight
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/circe-test-suite-flamegraph.svg b/docs/circe-test-suite-flamegraph.svg
deleted file mode 100644
index 1a47167..0000000
--- a/docs/circe-test-suite-flamegraph.svg
+++ /dev/null
@@ -1,8542 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Flame Graph
-
-Reset Zoom
-Search
-
-
-key.type => ?{def ->: ?} (3 ms, 0.02%)
-
-
-
-((Any, Any, Any) => Nothing) => String (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Int => Int]] (26 ms, 0.14%)
-
-
-
-cats.kernel.PartialOrder[Int] (29 ms, 0.15%)
-
-
-
-Option[Long] => ?{def ===: ?} (44 ms, 0.23%)
-
-
-
-scala.reflect.ClassTag[Int] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int => Int] (16 ms, 0.08%)
-
-
-
-cats.kernel.Order[Vector[io.circe.Json]] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[scala.math.BigDecimal] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (19 ms, 0.10%)
-
-
-
-cats.kernel.Order[Int] (12 ms, 0.06%)
-
-
-
-cats.kernel.Order[(String, io.circe.Json)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (77 ms, 0.40%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-cats.Eq[Option[Vector[io.circe.Json]]] (79 ms, 0.41%)
-
-
-
-org.scalacheck.Shrink[Int] (27 ms, 0.14%)
-
-
-
-cats.PartialOrder[io.circe.DecodingFailure] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[List[io.circe.CursorOp]] (11 ms, 0.06%)
-
-
-
-Integral[Double] (7 ms, 0.04%)
-
-
-
-Float => Int (15 ms, 0.08%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-(Any => Nothing) => JsonSuite.this.PropertyCheckConfigParam (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (44 ms, 0.23%)
-
-
-
-Option[io.circe.JsonObject] => ?{def ===: ?} (6 ms, 0.03%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc4] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (45 ms, 0.24%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc4] (5 ms, 0.03%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]] (7 ms, 0.04%)
-
-
-
-io.circe.DecodingFailure => ?{def show: ?} (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Boolean] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[Char] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Float] (31 ms, 0.16%)
-
-
-
-org.scalacheck.Arbitrary[(Long, Int)] (9 ms, 0.05%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (42 ms, 0.22%)
-
-
-
-org.scalacheck.Shrink[Int] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc15] (4 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (46 ms, 0.24%)
-
-
-
-Fractional[Int] (8 ms, 0.04%)
-
-
-
-i.type => ?{def asJson: ?} (6 ms, 0.03%)
-
-
-
-io.circe.Decoder[(Int, String, Double)] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc10] (4 ms, 0.02%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (10 ms, 0.05%)
-
-
-
-io.circe.Decoder[Map[Byte,Int]] (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[(Int,),L] (26 ms, 0.14%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (22 ms, 0.12%)
-
-
-
-cats.kernel.Eq[Short] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[(Int, Int)] (25 ms, 0.13%)
-
-
-
-shapeless.IsTuple[io.circe.JsonObject] (5 ms, 0.03%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H] (5 ms, 0.03%)
-
-
-
-cats.kernel.PartialOrder[Int] (9 ms, 0.05%)
-
-
-
-((Any, Any) => Nothing) => (?A => ?ASSERTION) (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (15 ms, 0.08%)
-
-
-
-Option[Vector[String]] => ?{def ===: ?} (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (58 ms, 0.30%)
-
-
-
-cats.kernel.Eq[io.circe.Decoder.Result[List[Boolean]]] (26 ms, 0.14%)
-
-
-
-cats.functor.Contravariant[io.circe.ObjectEncoder] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Byte,Int]] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (32 ms, 0.17%)
-
-
-
-org.scalacheck.Arbitrary[Int] (6 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Int] (9 ms, 0.05%)
-
-
-
-org.scalacheck.Shrink[Int] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc6] (6 ms, 0.03%)
-
-
-
-String("data") => ?{def ->: ?} (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Int] (25 ms, 0.13%)
-
-
-
-io.circe.Encoder[Int] (15 ms, 0.08%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (51 ms, 0.27%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[java.util.UUID] (4 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[None.type] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (12 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (8 ms, 0.04%)
-
-
-
-Fractional[ProductCodecSuite.this.Cc6] (2 ms, 0.01%)
-
-
-
-String("parse and decode(Accumulating)") => ?{def should: ?} (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[cats.data.NonEmptyList[Int]] (16 ms, 0.08%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (43 ms, 0.23%)
-
-
-
-cats.kernel.Eq[Unit] (10 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Int]] (15 ms, 0.08%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Long,Int]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (80 ms, 0.42%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc21] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scala.math.BigDecimal] (4 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[String] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json)) => Boolean] (14 ms, 0.07%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc9] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc12] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc14] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc3] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[(Int, Int)] (7 ms, 0.04%)
-
-
-
-Integral[List[(String, io.circe.Json)]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Order[Int] (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (31 ms, 0.16%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (54 ms, 0.28%)
-
-
-
-(=> String) => Int (13 ms, 0.07%)
-
-
-
-io.circe.Encoder[Long] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc17] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc8] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (10 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (48 ms, 0.25%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (8 ms, 0.04%)
-
-
-
-Unit => Int (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[(String, Int)] (12 ms, 0.06%)
-
-
-
-io.circe.Encoder[String] (742 ms, 3.90%)
-io.c..
-
-
-cats.kernel.PartialOrder[Int] (8 ms, 0.04%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (2 ms, 0.01%)
-
-
-
-String("Printer.spaces2") => ?{def should: ?} (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[List[(String, io.circe.Json)]] (4 ms, 0.02%)
-
-
-
-cats.Eq[List[String]] (12 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (4 ms, 0.02%)
-
-
-
-cats.kernel.Order[Int] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[Int] (8 ms, 0.04%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (5 ms, 0.03%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q] (5 ms, 0.03%)
-
-
-
-io.circe.Decoder[(String, String, String)] (10 ms, 0.05%)
-
-
-
-cats.kernel.Order[Vector[io.circe.Json]] (13 ms, 0.07%)
-
-
-
-io.circe.Encoder[Set[Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]] (7 ms, 0.04%)
-
-
-
-cats.kernel.Order[Byte] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Map[String,Int]] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int),L] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Int] (24 ms, 0.13%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (40 ms, 0.21%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (28 ms, 0.15%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (29 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.Json :: shapeless.HNil] (6 ms, 0.03%)
-
-
-
-(=> Any => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION) (24 ms, 0.13%)
-
-
-
-cats.Eq[scala.collection.immutable.Map[String,io.circe.Json]] (11 ms, 0.06%)
-
-
-
-io.circe.Decoder[Boolean] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (56 ms, 0.29%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (6 ms, 0.03%)
-
-
-
-io.circe.Decoder[Int] (3 ms, 0.02%)
-
-
-
-shapeless.IsTuple[io.circe.DecodingFailure] (33 ms, 0.17%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc13] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (24 ms, 0.13%)
-
-
-
-cats.kernel.Eq[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc3] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (31 ms, 0.16%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-((Any, Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String) (2 ms, 0.01%)
-
-
-
-n2.type => ?{def ===: ?} (2 ms, 0.01%)
-
-
-
-Integral[String] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[(Short, Int)] (10 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (4 ms, 0.02%)
-
-
-
-List[(String, io.circe.Json)] => Traversable[(String, io.circe.Json)] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,Double]] (18 ms, 0.09%)
-
-
-
-cats.kernel.Order[io.circe.CursorOp] (12 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[Vector[(String, io.circe.Json)]] (37 ms, 0.19%)
-
-
-
-scala.concurrent.ExecutionContext (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[(Int, Int)] (38 ms, 0.20%)
-
-
-
-org.scalacheck.Shrink[io.circe.tests.examples.WrappedOptionalField] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[(Symbol, Int)] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E] (6 ms, 0.03%)
-
-
-
-io.circe.Encoder[io.circe.Json] (3 ms, 0.02%)
-
-
-
-((Any, Any, Any) => Nothing) => ((?A, ?B) => ?ASSERTION) (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (23 ms, 0.12%)
-
-
-
-io.circe.Decoder[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.util.Buildable[io.circe.Json,Vector[io.circe.Json]] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int)] (15 ms, 0.08%)
-
-
-
-Fractional[Int] (9 ms, 0.05%)
-
-
-
-Option[Int] => ?{def ===: ?} (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[Int]] (6 ms, 0.03%)
-
-
-
-cats.kernel.PartialOrder[Option[io.circe.Json]] (17 ms, 0.09%)
-
-
-
-cats.kernel.Eq[String] (3 ms, 0.02%)
-
-
-
-cats.kernel.Order[(String, io.circe.Json)] (11 ms, 0.06%)
-
-
-
-io.circe.Decoder[Array[String]] (10 ms, 0.05%)
-
-
-
-cats.kernel.Order[Long] (7 ms, 0.04%)
-
-
-
-io.circe.Encoder[Map[java.util.UUID,Int]] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[String] (3 ms, 0.02%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (5 ms, 0.03%)
-
-
-
-io.circe.Decoder[Option[Int]] (9 ms, 0.05%)
-
-
-
-String("%s%s%s") => ?{def format: ?} (15 ms, 0.08%)
-
-
-
-io.circe.Encoder[io.circe.JsonNumber] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[scala.collection.immutable.SortedMap[Long,Int]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Unit]] (2 ms, 0.01%)
-
-
-
-Option[List[String]] => ?{def ===: ?} (13 ms, 0.07%)
-
-
-
-org.scalactic.source.Position (635 ms, 3.33%)
-org..
-
-
-org.scalacheck.Shrink[Int] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Int] (16 ms, 0.08%)
-
-
-
-cats.kernel.Eq[io.circe.tests.examples.Foo] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (19 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (44 ms, 0.23%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (19 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[scala.util.Either[Int,String]] (13 ms, 0.07%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (21 ms, 0.11%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.Json] (91 ms, 0.48%)
-
-
-
-io.circe.Decoder[cats.data.Validated[String,Int]] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (45 ms, 0.24%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc21] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (25 ms, 0.13%)
-
-
-
-org.scalacheck.Shrink[Byte] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Char] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[(Int, Int, Int)] (16 ms, 0.08%)
-
-
-
-io.circe.Encoder[AccumulatingDecoderSpec.this.BadSample] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int)] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[String] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[List[Either[Int,String]]] (43 ms, 0.23%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (27 ms, 0.14%)
-
-
-
-org.scalacheck.Arbitrary[Int] (127 ms, 0.67%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (6 ms, 0.03%)
-
-
-
-cats.Eq[io.circe.JsonNumber] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (14 ms, 0.07%)
-
-
-
-io.circe.Decoder[Int] (12 ms, 0.06%)
-
-
-
-Double => Int (18 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (35 ms, 0.18%)
-
-
-
-io.circe.Encoder[List[Int]] (74 ms, 0.39%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[io.circe.tests.examples.WrappedOptionalField] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.Json :: shapeless.HNil] (7 ms, 0.04%)
-
-
-
-org.scalacheck.Shrink[Map[String,Int]] (47 ms, 0.25%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc17] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (21 ms, 0.11%)
-
-
-
-io.circe.Encoder[Char] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (28 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[String] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (38 ms, 0.20%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[(Int, String, Char)] (44 ms, 0.23%)
-
-
-
-cats.Eq[Option[io.circe.JsonObject]] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int)] (47 ms, 0.25%)
-
-
-
-org.scalacheck.Arbitrary[Int] (71 ms, 0.37%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int)] (31 ms, 0.16%)
-
-
-
-org.scalacheck.Shrink[String] (7 ms, 0.04%)
-
-
-
-cats.Eq[Long] (18 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Int] (6 ms, 0.03%)
-
-
-
-String => ?{def ===: ?} (28 ms, 0.15%)
-
-
-
-Integral[String] (12 ms, 0.06%)
-
-
-
-Vector[(String, io.circe.Json)] => ?{def ===: ?} (42 ms, 0.22%)
-
-
-
-scala.reflect.ClassTag[Int] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[Int] (5 ms, 0.03%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc7] (6 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[String] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)] (76 ms, 0.40%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc7] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (33 ms, 0.17%)
-
-
-
-cats.kernel.Eq[io.circe.Decoder[scala.util.Either[io.circe.DecodingFailure,Int]]] (11 ms, 0.06%)
-
-
-
-org.scalacheck.Shrink[(String, Either[Int,String])] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[io.circe.tests.examples.WrappedOptionalField] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (123 ms, 0.65%)
-
-
-
-org.scalacheck.util.Buildable[io.circe.Json,List[io.circe.Json]] (12 ms, 0.06%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc15] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc3] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[(Int,)] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (36 ms, 0.19%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.Json] (5 ms, 0.03%)
-
-
-
-cats.kernel.Order[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Byte] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (8 ms, 0.04%)
-
-
-
-org.scalacheck.Shrink[Vector[Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Seq[Int]] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[Float] (4 ms, 0.02%)
-
-
-
-all (19,041 ms, 100%)
-
-
-
-io.circe.Decoder[cats.data.NonEmptyStream[Int]] (8 ms, 0.04%)
-
-
-
-String("foo") => ?{def ->: ?} (5 ms, 0.03%)
-
-
-
-io.circe.Encoder[Some[Int]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Order[List[String]] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc21] (4 ms, 0.02%)
-
-
-
-Int => ?{def ===: ?} (18 ms, 0.09%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc16] (7 ms, 0.04%)
-
-
-
-io.circe.Encoder[Int] (30 ms, 0.16%)
-
-
-
-shapeless.IsTuple[Unit] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (16 ms, 0.08%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int),L] (13 ms, 0.07%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E] (5 ms, 0.03%)
-
-
-
-Option[Vector[io.circe.Json]] => ?{def ===: ?} (83 ms, 0.44%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (5 ms, 0.03%)
-
-
-
-io.circe.Decoder[None.type] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (11 ms, 0.06%)
-
-
-
-cats.Eq[Option[List[(String, io.circe.Json)]]] (22 ms, 0.12%)
-
-
-
-cats.Eq[Option[io.circe.JsonNumber]] (45 ms, 0.24%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (22 ms, 0.12%)
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.KeyDecoder,Unit,Int]] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]] (26 ms, 0.14%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (15 ms, 0.08%)
-
-
-
-Int(1) => ?{def asJson: ?} (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int),L] (8 ms, 0.04%)
-
-
-
-org.scalacheck.Shrink[Int] (38 ms, 0.20%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (9 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[Map[String,Int]] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc6] (6 ms, 0.03%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O] (7 ms, 0.04%)
-
-
-
-String("Show[ParsingFailure]") => ?{def should: ?} (5 ms, 0.03%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc14] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Map[Long,Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.numbers.testing.JsonNumberString] (4 ms, 0.02%)
-
-
-
-org.scalactic.Prettifier (144 ms, 0.76%)
-
-
-
-cats.kernel.Eq[Option[Int]] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (13 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (42 ms, 0.22%)
-
-
-
-io.circe.Encoder[Int] (16 ms, 0.08%)
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (37 ms, 0.19%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (35 ms, 0.18%)
-
-
-
-cats.kernel.Order[io.circe.CursorOp] (12 ms, 0.06%)
-
-
-
-String("transformations") => ?{def should: ?} (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(Short, Int)] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (31 ms, 0.16%)
-
-
-
-io.circe.Encoder[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[io.circe.Json] (45 ms, 0.24%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int),L] (12 ms, 0.06%)
-
-
-
-scala.collection.immutable.Map[String,Double] => ?{def asJson: ?} (4 ms, 0.02%)
-
-
-
-Fractional[(String, io.circe.Json)] (4 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (21 ms, 0.11%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyVector[Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (36 ms, 0.19%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Boolean] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (16 ms, 0.08%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (50 ms, 0.26%)
-
-
-
-shapeless.IsTuple[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (15 ms, 0.08%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (44 ms, 0.23%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-cats.PartialOrder[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[Double] (3 ms, 0.02%)
-
-
-
-ACursorSuite.this.PropertyCheckConfigurable (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (24 ms, 0.13%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (38 ms, 0.20%)
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]] (4 ms, 0.02%)
-
-
-
-cats.Eq[scala.collection.immutable.Map[String,io.circe.Json]] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[io.circe.DecodingFailure] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc9] (5 ms, 0.03%)
-
-
-
-Integral[List[io.circe.Json]] (11 ms, 0.06%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc12] (5 ms, 0.03%)
-
-
-
-org.scalacheck.util.Buildable[(Int, Int),Int => Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.util.Buildable[(String, io.circe.Json),List[(String, io.circe.Json)]] (4 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (5 ms, 0.03%)
-
-
-
-Int(4) => ?{def asJson: ?} (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Int] (20 ms, 0.11%)
-
-
-
-cats.kernel.Eq[io.circe.JsonNumber] (14 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Long] (68 ms, 0.36%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc17] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Unit]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (120 ms, 0.63%)
-
-
-
-org.scalacheck.Arbitrary[String] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc6] (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Long] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[String] (12 ms, 0.06%)
-
-
-
-cats.kernel.PartialOrder[Vector[io.circe.Json]] (19 ms, 0.10%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (15 ms, 0.08%)
-
-
-
-Integral[Float] (8 ms, 0.04%)
-
-
-
-io.circe.Decoder[Int] (2 ms, 0.01%)
-
-
-
-Integral[Int] (4 ms, 0.02%)
-
-
-
-cats.Eq[Test] (8 ms, 0.04%)
-
-
-
-io.circe.Decoder[Int] (16 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Some[Int]] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[Int] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (60 ms, 0.32%)
-
-
-
-cats.kernel.Eq[String] (2 ms, 0.01%)
-
-
-
-((Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION) (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[io.circe.CursorOp] (20 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.tests.examples.Foo] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[cats.data.NonEmptyStream[Int]] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc5] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (18 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-(Any => Nothing) => JsonNumberSuite.this.PropertyCheckConfigParam (5 ms, 0.03%)
-
-
-
-Integral[Int] (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (21 ms, 0.11%)
-
-
-
-cats.Eq[List[Int]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]] (26 ms, 0.14%)
-
-
-
-io.circe.Encoder[cats.data.NonEmptyVector[Int]] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (20 ms, 0.11%)
-
-
-
-org.scalacheck.Cogen[Int] (28 ms, 0.15%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc20] (6 ms, 0.03%)
-
-
-
-cats.Eq[io.circe.JsonObject] (19 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc2] (4 ms, 0.02%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[scala.util.Either[Unit,Unit]]] (5 ms, 0.03%)
-
-
-
-io.circe.Encoder[Int] (34 ms, 0.18%)
-
-
-
-cats.kernel.Order[io.circe.Json] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int)] (28 ms, 0.15%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[Option[io.circe.Json]] (568 ms, 2.98%)
-ca..
-
-
-Fractional[Byte] (11 ms, 0.06%)
-
-
-
-json.type => ?{def ===: ?} (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (21 ms, 0.11%)
-
-
-
-(Any => Nothing) => ACursorSuite.this.PropertyCheckConfigParam (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(java.util.UUID, Int)] (4 ms, 0.02%)
-
-
-
-Integral[(String, io.circe.Json)] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.JsonObject] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[List[Boolean]] (10 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Some[Int]] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyVector[Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc6] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[(Long, Int)] (3 ms, 0.02%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[String] (5 ms, 0.03%)
-
-
-
-nz1.type => ?{def ===: ?} (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (17 ms, 0.09%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (28 ms, 0.15%)
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]] (17 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Symbol,Int]] (6 ms, 0.03%)
-
-
-
-Long => Int (16 ms, 0.08%)
-
-
-
-(Any => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION) (30 ms, 0.16%)
-
-
-
-cats.Eq[Option[Unit]] (2 ms, 0.01%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V] (9 ms, 0.05%)
-
-
-
-scala.collection.immutable.Map[String,Int] => Traversable[(String, Int)] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Byte] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (2 ms, 0.01%)
-
-
-
-((Any, Any) => Nothing) => String (9 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)] (10 ms, 0.05%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc14] (4 ms, 0.02%)
-
-
-
-String("foldWith") => ?{def should: ?} (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int)] (20 ms, 0.11%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (47 ms, 0.25%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, io.circe.Json),List[(String, io.circe.Json)]] (2 ms, 0.01%)
-
-
-
-Fractional[Int] (5 ms, 0.03%)
-
-
-
-io.circe.Encoder[Map[Long,Int]] (2 ms, 0.01%)
-
-
-
-Integral[Int] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[cats.data.NonEmptyList[Int]] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc9] (6 ms, 0.03%)
-
-
-
-io.circe.Encoder[Int] (23 ms, 0.12%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int)] (23 ms, 0.12%)
-
-
-
-cats.kernel.Order[io.circe.JsonNumber] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (6 ms, 0.03%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[Int]] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (32 ms, 0.17%)
-
-
-
-String("f") => ?{def ->: ?} (4 ms, 0.02%)
-
-
-
-io.circe.Encoder[Option[Int]] (4 ms, 0.02%)
-
-
-
-cats.Eq[String] (27 ms, 0.14%)
-
-
-
-io.circe.Decoder[scala.collection.mutable.HashMap[Long,Int]] (15 ms, 0.08%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-(=> (Any, Any) => Nothing) => LargeNumberDecoderTests.this.PropertyCheckConfigParam (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (35 ms, 0.18%)
-
-
-
-shapeless.IsTuple[io.circe.JsonObject] (13 ms, 0.07%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc11] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (5 ms, 0.03%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-Fractional[Int] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-cats.Eq[io.circe.DecodingFailure] (12 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Int] (37 ms, 0.19%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (19 ms, 0.10%)
-
-
-
-String("parseByteBuffer and decodeByteBuffer(Accumulating)") => ?{def should: ?} (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Short] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]] (25 ms, 0.13%)
-
-
-
-io.circe.Decoder[Bomb] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[Short] (12 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-Fractional[Int] (2 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[(Int, Int),L] (13 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.Json] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int)] (40 ms, 0.21%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (39 ms, 0.20%)
-
-
-
-scala.reflect.ClassTag[Double] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Either[Int,String]] (4 ms, 0.02%)
-
-
-
-io.circe.Encoder[Int] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[(Long, Int)] (11 ms, 0.06%)
-
-
-
-String("parseFile and decodeFile(Accumulating)") => ?{def should: ?} (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[Map[String,Either[Int,String]]] (12 ms, 0.06%)
-
-
-
-cats.Eq[io.circe.JsonObject] (7 ms, 0.04%)
-
-
-
-io.circe.Decoder.Result[Map[String,Int]] => ?{def ===: ?} (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[Int] (16 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[String] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Seq[Int]] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[Float] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc19] (4 ms, 0.02%)
-
-
-
-Array[String] => Iterable[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (33 ms, 0.17%)
-
-
-
-((Any, Any) => Nothing) => LargeNumberDecoderTests.this.PropertyCheckConfigParam (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (20 ms, 0.11%)
-
-
-
-cats.Eq[Option[Short]] (9 ms, 0.05%)
-
-
-
-cats.kernel.Order[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[List[io.circe.Json]] (86 ms, 0.45%)
-
-
-
-io.circe.Encoder[String] (2 ms, 0.01%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[String,Int]] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: String :: Char :: shapeless.HNil] (24 ms, 0.13%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (49 ms, 0.26%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (27 ms, 0.14%)
-
-
-
-(=> Any => Nothing) => String (22 ms, 0.12%)
-
-
-
-cats.kernel.Eq[Array[String]] (4 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[List[(String, io.circe.Json)]] (7 ms, 0.04%)
-
-
-
-cats.kernel.Order[Int] (11 ms, 0.06%)
-
-
-
-Fractional[Double] (9 ms, 0.05%)
-
-
-
-org.scalacheck.Shrink[((String, io.circe.Json)) => Boolean] (2 ms, 0.01%)
-
-
-
-a.type => ?{def isNaN: ?} (6 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)] (26 ms, 0.14%)
-
-
-
-io.circe.Encoder[List[Boolean]] (11 ms, 0.06%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc7] (4 ms, 0.02%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)] (19 ms, 0.10%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (34 ms, 0.18%)
-
-
-
-io.circe.Decoder[Set[Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[cats.data.Validated[String,Int]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Vector[String]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Option[Int]] (13 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.01%)
-
-
-
-List[io.circe.Json] => ?{def asJson: ?} (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Array[String]] (6 ms, 0.03%)
-
-
-
-Boolean => ?{def ===: ?} (38 ms, 0.20%)
-
-
-
-cats.Eq[Option[Long]] (35 ms, 0.18%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (42 ms, 0.22%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-io.circe.Encoder[java.util.UUID] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Int] (10 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc20] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Double] (10 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (48 ms, 0.25%)
-
-
-
-String("Printer#reuseWriters") => ?{def should: ?} (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (20 ms, 0.11%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,io.circe.Json,List[io.circe.Json]] (6 ms, 0.03%)
-
-
-
-io.circe.Decoder[Int] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Vector[String]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (45 ms, 0.24%)
-
-
-
-org.scalacheck.Shrink[Short] (4 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Decoder.Result[List[Boolean]]] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (53 ms, 0.28%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (42 ms, 0.22%)
-
-
-
-cats.kernel.Eq[Unit] (19 ms, 0.10%)
-
-
-
-io.circe.Decoder[Int] (33 ms, 0.17%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[io.circe.Decoder[scala.util.Either[io.circe.DecodingFailure,Unit]]] (22 ms, 0.12%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[String,Int]] (17 ms, 0.09%)
-
-
-
-io.circe.Decoder[Vector[T]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyVector[Int]] (4 ms, 0.02%)
-
-
-
-Fractional[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[(Int, String)] (8 ms, 0.04%)
-
-
-
-io.circe.Decoder[(Int,)] (15 ms, 0.08%)
-
-
-
-cats.kernel.Eq[Int] (4 ms, 0.02%)
-
-
-
-cats.kernel.Order[Int] (8 ms, 0.04%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc13] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (13 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc15] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[io.circe.JsonObject] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc1] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc15] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (27 ms, 0.14%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (115 ms, 0.60%)
-
-
-
-org.scalacheck.Shrink[(Int, String, Char)] (16 ms, 0.08%)
-
-
-
-cats.kernel.Order[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (19 ms, 0.10%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (38 ms, 0.20%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[(Int, String, Char)] (10 ms, 0.05%)
-
-
-
-(Any => Nothing) => (org.scalacheck.Gen[?A], String) (28 ms, 0.15%)
-
-
-
-List[(String, io.circe.Json)] => Traversable[(String, io.circe.Json)] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[Map[Symbol,Int]] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Set[String]] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[Long] (27 ms, 0.14%)
-
-
-
-org.scalacheck.Arbitrary[String] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (18 ms, 0.09%)
-
-
-
-cats.kernel.Eq[String] (2 ms, 0.01%)
-
-
-
-cats.Eq[Float] (4 ms, 0.02%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T] (5 ms, 0.03%)
-
-
-
-io.circe.Decoder[String] (2 ms, 0.01%)
-
-
-
-(=> Any => Nothing) => JsonNumberSuite.this.PropertyCheckConfigParam (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int),L] (7 ms, 0.04%)
-
-
-
-org.scalacheck.util.Buildable[io.circe.Json,Vector[io.circe.Json]] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[(Int, Int)] (13 ms, 0.07%)
-
-
-
-cats.kernel.PartialOrder[String] (2 ms, 0.01%)
-
-
-
-LargeNumberDecoderTests.this.PropertyCheckConfigurable (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (21 ms, 0.11%)
-
-
-
-shapeless.Generic.Aux[Unit,L] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int)] (49 ms, 0.26%)
-
-
-
-org.scalacheck.Shrink[io.circe.CursorOp] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (28 ms, 0.15%)
-
-
-
-io.circe.Decoder[Some[Int]] (12 ms, 0.06%)
-
-
-
-n1.type => ?{def ===: ?} (8 ms, 0.04%)
-
-
-
-(=> Any => Nothing) => ACursorSuite.this.PropertyCheckConfigParam (5 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, Int),Map[String,Int]] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc8] (5 ms, 0.03%)
-
-
-
-cats.Order[io.circe.DecodingFailure] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (29 ms, 0.15%)
-
-
-
-io.circe.Decoder[List[Int]] (22 ms, 0.12%)
-
-
-
-Option[Short] => ?{def ===: ?} (10 ms, 0.05%)
-
-
-
-cats.Eq[Option[Vector[String]]] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (57 ms, 0.30%)
-
-
-
-cats.Eq[io.circe.ACursor] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Seq[Int]] (18 ms, 0.09%)
-
-
-
-io.circe.Decoder[List[Bomb]] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[Int]] (19 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[Int] (7 ms, 0.04%)
-
-
-
-org.scalacheck.util.Buildable[Int,Seq[Int]] (29 ms, 0.15%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U] (7 ms, 0.04%)
-
-
-
-cats.kernel.Order[Int] (5 ms, 0.03%)
-
-
-
-result1.type => ?{def ===: ?} (30 ms, 0.16%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Short,Int]] (14 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int] (57 ms, 0.30%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc5] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (5 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],(io.circe.Json, Int),That] (6 ms, 0.03%)
-
-
-
-(=> Float) => Int (14 ms, 0.07%)
-
-
-
-io.circe.Decoder[Map[String,String]] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (6 ms, 0.03%)
-
-
-
-io.circe.Decoder[List[T]] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[Int] (22 ms, 0.12%)
-
-
-
-cats.kernel.Order[Int] (10 ms, 0.05%)
-
-
-
-Integral[Short] (2 ms, 0.01%)
-
-
-
-String("b") => ?{def ->: ?} (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[java.util.UUID] (4 ms, 0.02%)
-
-
-
-shapeless.IsTuple[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[Int] (9 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Byte] (40 ms, 0.21%)
-
-
-
-Float => ?{def ===: ?} (2 ms, 0.01%)
-
-
-
-String("0") => ?{def *: ?} (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[(Long, Int)] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (45 ms, 0.24%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Either[Int,String]]] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Int] (2 ms, 0.01%)
-
-
-
-shapeless.IsTuple[io.circe.JsonNumber] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (37 ms, 0.19%)
-
-
-
-org.scalacheck.Shrink[(Byte, Int)] (11 ms, 0.06%)
-
-
-
-(Any => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[BigInt] (23 ms, 0.12%)
-
-
-
-io.circe.Decoder.Result[Long] => ?{def ===: ?} (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (12 ms, 0.06%)
-
-
-
-io.circe.Decoder[Byte] (10 ms, 0.05%)
-
-
-
-String("0") => ?{def ->: ?} (6 ms, 0.03%)
-
-
-
-((Any, Any) => Nothing) => org.scalacheck.Gen[?A] (13 ms, 0.07%)
-
-
-
-io.circe.Encoder[Int] (26 ms, 0.14%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int)] (22 ms, 0.12%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (25 ms, 0.13%)
-
-
-
-(=> Any => Nothing) => (org.scalacheck.Gen[?A], String) (24 ms, 0.13%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc12] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[Vector[io.circe.Json]] (26 ms, 0.14%)
-
-
-
-io.circe.Encoder[Either[Int,String]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Char :: shapeless.HNil] (12 ms, 0.06%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (64 ms, 0.34%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc16] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (57 ms, 0.30%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (28 ms, 0.15%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc20] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (52 ms, 0.27%)
-
-
-
-org.scalacheck.Shrink[BigInt] (15 ms, 0.08%)
-
-
-
-cats.kernel.Eq[Option[io.circe.Json]] (34 ms, 0.18%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (31 ms, 0.16%)
-
-
-
-org.scalacheck.Shrink[Int] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]] (19 ms, 0.10%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int)] (30 ms, 0.16%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (24 ms, 0.13%)
-
-
-
-cats.ApplicativeError[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure]] (6 ms, 0.03%)
-
-
-
-cats.kernel.Order[(String, io.circe.Json)] (13 ms, 0.07%)
-
-
-
-Vector[io.circe.Json] => Traversable[io.circe.Json] (2 ms, 0.01%)
-
-
-
-shapeless.IsTuple[cats.data.NonEmptyList[io.circe.DecodingFailure]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[Int] (13 ms, 0.07%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[io.circe.CursorOp] (50 ms, 0.26%)
-
-
-
-io.circe.Decoder[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[List[io.circe.Json]] (71 ms, 0.37%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc21] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int)] (33 ms, 0.17%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (97 ms, 0.51%)
-
-
-
-result.type => ?{def isEmpty: ?} (17 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Int] (2 ms, 0.01%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[String] (16 ms, 0.08%)
-
-
-
-cats.kernel.PartialOrder[Int] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (17 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (38 ms, 0.20%)
-
-
-
-printed.type => ?{def ===: ?} (8 ms, 0.04%)
-
-
-
-io.circe.Decoder.Result[Test] => ?{def ===: ?} (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[cats.data.NonEmptyList[io.circe.DecodingFailure]] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc4] (4 ms, 0.02%)
-
-
-
-cats.Monoid[io.circe.Decoder.Result[Byte]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(String, Int)] (12 ms, 0.06%)
-
-
-
-cats.Eq[List[io.circe.CursorOp]] (147 ms, 0.77%)
-
-
-
-org.scalacheck.Shrink[io.circe.Json] (3 ms, 0.02%)
-
-
-
-String => Int (31 ms, 0.16%)
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Int]] (9 ms, 0.05%)
-
-
-
-Either[io.circe.ParsingFailure,io.circe.Json] => ?{def ===: ?} (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[String] (1,024 ms, 5.38%)
-io.cir..
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.util.Buildable[Either[Int,String],List[Either[Int,String]]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (27 ms, 0.14%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int)] (24 ms, 0.13%)
-
-
-
-scala.reflect.ClassTag[Either[Int,String]] (2 ms, 0.01%)
-
-
-
-io.circe.ObjectEncoder[Map[String,Int]] (5 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[String] (3 ms, 0.02%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (50 ms, 0.26%)
-
-
-
-io.circe.Decoder.Result[BigInt] => ?{def ===: ?} (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (39 ms, 0.20%)
-
-
-
-scala.reflect.ClassTag[Int] (10 ms, 0.05%)
-
-
-
-(=> Any => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION) (27 ms, 0.14%)
-
-
-
-cats.kernel.Eq[io.circe.DecodingFailure] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (9 ms, 0.05%)
-
-
-
-DecoderSuite.this.PropertyCheckConfigurable (11 ms, 0.06%)
-
-
-
-String("emap") => ?{def should: ?} (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Test] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc16] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[java.util.UUID,Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[cats.data.NonEmptyList[io.circe.DecodingFailure]] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc10] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Byte] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,Int]] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Either[String,(String, io.circe.Json, Boolean)]] (12 ms, 0.06%)
-
-
-
-cats.kernel.Order[Option[io.circe.Json]] (9 ms, 0.05%)
-
-
-
-String("fromString") => ?{def should: ?} (4 ms, 0.02%)
-
-
-
-cats.Eq[scala.collection.immutable.Stream[Int]] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (35 ms, 0.18%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (22 ms, 0.12%)
-
-
-
-io.circe.Encoder[Map[Short,Int]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (19 ms, 0.10%)
-
-
-
-cats.kernel.PartialOrder[Int] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Long] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Unit] (12 ms, 0.06%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc13] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Int]] (7 ms, 0.04%)
-
-
-
-cats.kernel.Order[io.circe.Json] (48 ms, 0.25%)
-
-
-
-List[Int] => Traversable[Int] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[AccumulatingDecoderSpec.this.Sample] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (35 ms, 0.18%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Int,Int]] (10 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (46 ms, 0.24%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc6] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json), Boolean)] (7 ms, 0.04%)
-
-
-
-Seq[Int] => Traversable[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[io.circe.Json] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[Boolean] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[(Int, Int)] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Map[Int,Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)] (25 ms, 0.13%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Int] (11 ms, 0.06%)
-
-
-
-Fractional[Int] (6 ms, 0.03%)
-
-
-
-io.circe.Encoder[Int] (16 ms, 0.08%)
-
-
-
-cats.kernel.Eq[io.circe.DecodingFailure] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (38 ms, 0.20%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (12 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[(Byte, Int)] (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[io.circe.JsonNumber] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc20] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[Int] (12 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (35 ms, 0.18%)
-
-
-
-io.circe.Encoder[Int] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[Int] (6 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Int => Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (10 ms, 0.05%)
-
-
-
-List[io.circe.Json] => Traversable[io.circe.Json] (10 ms, 0.05%)
-
-
-
-Fractional[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (5 ms, 0.03%)
-
-
-
-cats.kernel.PartialOrder[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[List[String]] (6 ms, 0.03%)
-
-
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION) (9 ms, 0.05%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc11] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (40 ms, 0.21%)
-
-
-
-cats.kernel.Eq[io.circe.Decoder.Result[List[Boolean]]] (25 ms, 0.13%)
-
-
-
-Fractional[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc17] (6 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (18 ms, 0.09%)
-
-
-
-org.scalacheck.Shrink[Seq[Int]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Order[String] (4 ms, 0.02%)
-
-
-
-(Any => Nothing) => DecoderSuite.this.PropertyCheckConfigParam (6 ms, 0.03%)
-
-
-
-io.circe.Decoder[Int] (37 ms, 0.19%)
-
-
-
-Int(0) => ?{def to: ?} (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[List[Either[String,(String, io.circe.Json, Boolean)]]] (13 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (27 ms, 0.14%)
-
-
-
-cats.kernel.Eq[Either[io.circe.DecodingFailure,Int]] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[scala.math.BigDecimal] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (39 ms, 0.20%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (12 ms, 0.06%)
-
-
-
-cats.Eq[BigInt] (13 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[io.circe.numbers.testing.JsonNumberString] (5 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Float] (7 ms, 0.04%)
-
-
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION) (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int)] (40 ms, 0.21%)
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,List[Boolean]]] (22 ms, 0.12%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor1[?A] (6 ms, 0.03%)
-
-
-
-io.circe.Decoder.Result[(Int, String, Char)] => ?{def ===: ?} (55 ms, 0.29%)
-
-
-
-org.scalacheck.Arbitrary[Int => Int] (47 ms, 0.25%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Long] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc7] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(Int, Int),scala.collection.Map[Int,Int] with (Int, Int)] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (38 ms, 0.20%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (18 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[(Int, Int, Int)]] (24 ms, 0.13%)
-
-
-
-scala.reflect.ClassTag[Int] (11 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[String] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (30 ms, 0.16%)
-
-
-
-actual.type => ?{def ===: ?} (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[List[(String, io.circe.Json)]] (53 ms, 0.28%)
-
-
-
-cats.MonadError[io.circe.Decoder,io.circe.DecodingFailure] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc5] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.SortedMap[Long,Int]] (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[scala.util.Either[Int,String]] (4 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int] (14 ms, 0.07%)
-
-
-
-scala.collection.immutable.Map[String,io.circe.Json] => ?{def ===: ?} (13 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[Option[Int]] (15 ms, 0.08%)
-
-
-
-io.circe.Decoder[Map[Symbol,Int]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Order[Int] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Int] (4 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[io.circe.Json,List[io.circe.Json]] (11 ms, 0.06%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (26 ms, 0.14%)
-
-
-
-io.circe.Encoder[io.circe.Json] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[Int] (12 ms, 0.06%)
-
-
-
-Integral[Boolean] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (31 ms, 0.16%)
-
-
-
-scala.collection.immutable.Map[String,List[Boolean]] => ?{def asJson: ?} (3 ms, 0.02%)
-
-
-
-Option[List[(String, io.circe.Json)]] => ?{def ===: ?} (47 ms, 0.25%)
-
-
-
-pz.type => ?{def =!=: ?} (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[(String, Int)] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[Either[Int,String]] (8 ms, 0.04%)
-
-
-
-cats.kernel.PartialOrder[Int] (7 ms, 0.04%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int)] (19 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]] (9 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Double] (26 ms, 0.14%)
-
-
-
-cats.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[Option[io.circe.JsonObject]] (19 ms, 0.10%)
-
-
-
-io.circe.Encoder[Boolean] (6 ms, 0.03%)
-
-
-
-cats.Eq[Short] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-((Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String) (20 ms, 0.11%)
-
-
-
-io.circe.Encoder[Int] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (23 ms, 0.12%)
-
-
-
-cats.Foldable[io.circe.Decoder.Result] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(String, Either[Int,String])] (10 ms, 0.05%)
-
-
-
-JsonNumberSuite.this.PropertyCheckConfigurable (10 ms, 0.05%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (74 ms, 0.39%)
-
-
-
-io.circe.Decoder[io.circe.tests.examples.WrappedOptionalField] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (57 ms, 0.30%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (30 ms, 0.16%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc11] (3 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.JsonObject] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[Int] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Vector[io.circe.Json]] (55 ms, 0.29%)
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[scala.util.Either[Unit,Int]]] (3 ms, 0.02%)
-
-
-
-String("e") => ?{def ->: ?} (3 ms, 0.02%)
-
-
-
-pz1.type => ?{def ===: ?} (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Long, Int)] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.functor.Contravariant[io.circe.KeyEncoder] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (9 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Byte,Int]] (12 ms, 0.06%)
-
-
-
-io.circe.Encoder[(Int,)] (10 ms, 0.05%)
-
-
-
-cats.Eq[Option[Boolean]] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[List[Int]] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc4] (5 ms, 0.03%)
-
-
-
-scala.io.Codec (10 ms, 0.05%)
-
-
-
-io.circe.Encoder[cats.data.NonEmptyList[io.circe.Json]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc8] (4 ms, 0.02%)
-
-
-
-cats.kernel.Order[Int] (13 ms, 0.07%)
-
-
-
-org.scalactic.source.Position (20 ms, 0.11%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc2] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (57 ms, 0.30%)
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]] (13 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int] (8 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int] (44 ms, 0.23%)
-
-
-
-io.circe.Encoder[Int] (28 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Short] (9 ms, 0.05%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Set[Int]] (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc17] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (51 ms, 0.27%)
-
-
-
-Integral[String] (2 ms, 0.01%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (3 ms, 0.02%)
-
-
-
-cats.kernel.Order[Int] (13 ms, 0.07%)
-
-
-
-cats.kernel.Eq[String :: io.circe.Json :: shapeless.HNil] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (26 ms, 0.14%)
-
-
-
-cats.Eq[List[io.circe.Json]] (27 ms, 0.14%)
-
-
-
-cats.Eq[Option[Int]] (8 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (49 ms, 0.26%)
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)] (9 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Map[String,Either[Int,String]]] (14 ms, 0.07%)
-
-
-
-(Any => Nothing) => EncoderSuite.this.PropertyCheckConfigParam (2 ms, 0.01%)
-
-
-
-Fractional[Int] (4 ms, 0.02%)
-
-
-
-s.type => ?{def asJson: ?} (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (42 ms, 0.22%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Symbol] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Symbol,Int]] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Double] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (275 ms, 1.44%)
-
-
-
-cats.kernel.Eq[io.circe.CursorOp] (55 ms, 0.29%)
-
-
-
-cats.PartialOrder[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-cats.laws.discipline.CartesianTests.Isomorphisms[io.circe.AccumulatingDecoder] (2 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, Int),Map[String,Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (5 ms, 0.03%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc19] (4 ms, 0.02%)
-
-
-
-((Any, Any, Any) => Nothing) => org.scalacheck.Gen[?A] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.util.Buildable[(String, io.circe.Json),List[(String, io.circe.Json)]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (5 ms, 0.03%)
-
-
-
-io.circe.Encoder[scala.collection.immutable.SortedMap[Long,Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[Option[io.circe.Json]] (17 ms, 0.09%)
-
-
-
-org.scalacheck.Shrink[Float] (36 ms, 0.19%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Int => Int]] (48 ms, 0.25%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (5 ms, 0.03%)
-
-
-
-cats.Eq[List[io.circe.Json]] (39 ms, 0.20%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (42 ms, 0.22%)
-
-
-
-io.circe.Decoder[cats.data.NonEmptyVector[Int]] (10 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[BigInt] (13 ms, 0.07%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc5] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[(java.util.UUID, Int)] (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),L] (11 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc13] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[(Int, Int, Int)]] (42 ms, 0.22%)
-
-
-
-io.circe.Decoder[BigInt] (15 ms, 0.08%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (42 ms, 0.22%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K] (5 ms, 0.03%)
-
-
-
-cats.Eq[Option[io.circe.Json]] (633 ms, 3.32%)
-cat..
-
-
-scala.reflect.ClassTag[A] (7 ms, 0.04%)
-
-
-
-shapeless.IsTuple[(Int,)] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Cogen[(String, io.circe.Json)] (2 ms, 0.01%)
-
-
-
-cats.Eq[Boolean] (2 ms, 0.01%)
-
-
-
-(Any => Nothing) => ((?A, ?B, ?C) => ?ASSERTION) (30 ms, 0.16%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[List[String]] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (17 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[Int] (5 ms, 0.03%)
-
-
-
-Integral[String] (3 ms, 0.02%)
-
-
-
-(Any => Nothing) => ((?A, ?B) => ?ASSERTION) (29 ms, 0.15%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc5] (4 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Int,Int]] (3 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (21 ms, 0.11%)
-
-
-
-String("fromFloatOrString") => ?{def should: ?} (236 ms, 1.24%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc9] (4 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc18] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[List[String]] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json, Boolean)] (4 ms, 0.02%)
-
-
-
-io.circe.Encoder[Int] (9 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)] (25 ms, 0.13%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (49 ms, 0.26%)
-
-
-
-org.scalacheck.Arbitrary[Int] (59 ms, 0.31%)
-
-
-
-cats.Eq[Option[Vector[io.circe.Json]]] (40 ms, 0.21%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.tests.examples.WrappedOptionalField] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc10] (6 ms, 0.03%)
-
-
-
-Integral[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-(=> Long) => Int (14 ms, 0.07%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (8 ms, 0.04%)
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc6] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Map[Short,Int]] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (18 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Int] (31 ms, 0.16%)
-
-
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION) (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-List[io.circe.Json] => Traversable[io.circe.Json] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int] (8 ms, 0.04%)
-
-
-
-shapeless.IsTuple[Long] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Map[String,Int]] (54 ms, 0.28%)
-
-
-
-cats.Eq[io.circe.Json] (178 ms, 0.93%)
-
-
-
-(=> Any => Nothing) => DecoderSuite.this.PropertyCheckConfigParam (4 ms, 0.02%)
-
-
-
-Int(1) => ?{def to: ?} (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[scala.collection.mutable.HashMap[Long,Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc20] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (27 ms, 0.14%)
-
-
-
-String("Decoder[BigInt]") => ?{def should: ?} (6 ms, 0.03%)
-
-
-
-String("Json") => ?{def should: ?} (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (51 ms, 0.27%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (40 ms, 0.21%)
-
-
-
-cats.kernel.Order[String] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(Long, Int)] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int)] (56 ms, 0.29%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[io.circe.tests.examples.Foo] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (20 ms, 0.11%)
-
-
-
-result2.type => ?{def ===: ?} (27 ms, 0.14%)
-
-
-
-org.scalacheck.Shrink[Either[Int,String]] (15 ms, 0.08%)
-
-
-
-cats.Eq[Option[Int]] (9 ms, 0.05%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,Seq[Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (40 ms, 0.21%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int)] (24 ms, 0.13%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (23 ms, 0.12%)
-
-
-
-org.scalacheck.Shrink[String] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[MemoizedPiecesSuite.this.Depths] (5 ms, 0.03%)
-
-
-
-String => ?{def ->: ?} (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Short,Int]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.KeyEncoder[Int]] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (19 ms, 0.10%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (20 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[(Symbol, Int)] (4 ms, 0.02%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc13] (3 ms, 0.02%)
-
-
-
-List[(String, io.circe.Json)] => ?{def ===: ?} (146 ms, 0.77%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc1] (5 ms, 0.03%)
-
-
-
-(=> (Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String) (7 ms, 0.04%)
-
-
-
-io.circe.Decoder[Int] (27 ms, 0.14%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[Unit,L] (5 ms, 0.03%)
-
-
-
-JsonObjectSuite.this.PropertyCheckConfigurable (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[(Int,)] (2 ms, 0.01%)
-
-
-
-cats.Eq[Option[io.circe.JsonNumber]] (42 ms, 0.22%)
-
-
-
-Integral[Long] (19 ms, 0.10%)
-
-
-
-cats.kernel.Eq[scala.util.Either[Unit,Unit]] (4 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Int],io.circe.Printer.Pieces,Seq[io.circe.Printer.Pieces]] (2 ms, 0.01%)
-
-
-
-Integral[BigInt] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[Int] (59 ms, 0.31%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (44 ms, 0.23%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[String] (2 ms, 0.01%)
-
-
-
-cats.Eq[io.circe.JsonObject] (25 ms, 0.13%)
-
-
-
-Fractional[Long] (13 ms, 0.07%)
-
-
-
-cats.Eq[Option[Vector[io.circe.Json]]] (119 ms, 0.62%)
-
-
-
-cats.Eq[Int] (51 ms, 0.27%)
-
-
-
-((Int, Int)) => Iterable[(Int, Int)] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (26 ms, 0.14%)
-
-
-
-cats.Eq[io.circe.JsonNumber] (17 ms, 0.09%)
-
-
-
-cats.kernel.Eq[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[io.circe.Json] (7 ms, 0.04%)
-
-
-
-io.circe.Decoder[Unit] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Option[io.circe.Json]] (35 ms, 0.18%)
-
-
-
-cats.kernel.PartialOrder[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (7 ms, 0.04%)
-
-
-
-cats.kernel.PartialOrder[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(String, Int)] (35 ms, 0.18%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (11 ms, 0.06%)
-
-
-
-String("values") => ?{def should: ?} (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (46 ms, 0.24%)
-
-
-
-scala.reflect.ClassTag[(String, io.circe.Json)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json)] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Set[Int]] (6 ms, 0.03%)
-
-
-
-String("Decoder[Enumeration]") => ?{def should: ?} (2 ms, 0.01%)
-
-
-
-Integral[Int] (6 ms, 0.03%)
-
-
-
-io.circe.Decoder[String] (2 ms, 0.01%)
-
-
-
-List[Int] => Traversable[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[scala.collection.mutable.HashMap[Long,Int]] (4 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)] (13 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[Int] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Int] (28 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (49 ms, 0.26%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Int => Int]] (17 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json, Boolean)] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (44 ms, 0.23%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (47 ms, 0.25%)
-
-
-
-cats.kernel.Order[Int] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-String("a") => ?{def ->: ?} (15 ms, 0.08%)
-
-
-
-org.scalacheck.Shrink[Either[Int,String]] (23 ms, 0.12%)
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[String] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Set[Int]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (34 ms, 0.18%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Either[Int,String]],Some[io.circe.Json],That] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[Either[Int,String]]] (11 ms, 0.06%)
-
-
-
-cats.kernel.Order[String] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[io.circe.ArrayEncoder[Int]] (7 ms, 0.04%)
-
-
-
-Integral[Int] (10 ms, 0.05%)
-
-
-
-(=> Any => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION) (24 ms, 0.13%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc19] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (20 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Int] (13 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (19 ms, 0.10%)
-
-
-
-result.type => ?{def ===: ?} (175 ms, 0.92%)
-
-
-
-org.scalacheck.Shrink[Int] (8 ms, 0.04%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q] (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[String => Boolean] (20 ms, 0.11%)
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json, Boolean)] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (11 ms, 0.06%)
-
-
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION) (11 ms, 0.06%)
-
-
-
-Integral[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[Either[Int,String],List[Either[Int,String]]] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[(Either[Int,String], Either[Int,String], Either[Int,String])] (27 ms, 0.14%)
-
-
-
-io.circe.Encoder[Seq[Long]] (4 ms, 0.02%)
-
-
-
-Fractional[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.01%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (52 ms, 0.27%)
-
-
-
-org.scalacheck.Shrink[Byte] (45 ms, 0.24%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[List[(String, io.circe.Json)]] (106 ms, 0.56%)
-
-
-
-cats.Eq[scala.collection.immutable.Set[B]] (12 ms, 0.06%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (45 ms, 0.24%)
-
-
-
-cats.kernel.Eq[String] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Set[Int]] (7 ms, 0.04%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc1] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Byte,Int]] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc7] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc2] (5 ms, 0.03%)
-
-
-
-Int(100) => org.scalactic.anyvals.PosZInt (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (9 ms, 0.05%)
-
-
-
-io.circe.Encoder[Int] (24 ms, 0.13%)
-
-
-
-cats.kernel.PartialOrder[Int] (4 ms, 0.02%)
-
-
-
-shapeless.IsTuple[io.circe.CursorOp] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (137 ms, 0.72%)
-
-
-
-org.scalacheck.Shrink[String => Boolean] (6 ms, 0.03%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (26 ms, 0.14%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (23 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[Int => Int] (26 ms, 0.14%)
-
-
-
-scala.reflect.ClassTag[Int] (8 ms, 0.04%)
-
-
-
-io.circe.Decoder[Int] (19 ms, 0.10%)
-
-
-
-org.scalacheck.Shrink[String] (38 ms, 0.20%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (18 ms, 0.09%)
-
-
-
-cats.Eq[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]] (29 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[java.util.UUID,Int]] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)] (20 ms, 0.11%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (19 ms, 0.10%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (19 ms, 0.10%)
-
-
-
-io.circe.Decoder[Char] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (20 ms, 0.11%)
-
-
-
-io.circe.Decoder[Char] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[scala.math.BigInt] (2 ms, 0.01%)
-
-
-
-cats.Eq[Double] (2 ms, 0.01%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L] (6 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (19 ms, 0.10%)
-
-
-
-cats.Foldable[io.circe.Decoder.Result] (6 ms, 0.03%)
-
-
-
-((Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION) (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[String] (9 ms, 0.05%)
-
-
-
-org.scalacheck.Shrink[Int] (9 ms, 0.05%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (5 ms, 0.03%)
-
-
-
-io.circe.Encoder[io.circe.Json] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.Monoid[List[io.circe.Json]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (12 ms, 0.06%)
-
-
-
-cats.kernel.Eq[io.circe.JsonNumber] (18 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc14] (5 ms, 0.03%)
-
-
-
-String("asJson") => ?{def should: ?} (4 ms, 0.02%)
-
-
-
-cats.Eq[Option[Short]] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (6 ms, 0.03%)
-
-
-
-Option[Boolean] => ?{def ===: ?} (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc1] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (15 ms, 0.08%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K] (6 ms, 0.03%)
-
-
-
-cats.Eq[Byte] (5 ms, 0.03%)
-
-
-
-cats.Eq[Option[Boolean]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Long] (10 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (62 ms, 0.33%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc18] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[String] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, String)] (6 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(io.circe.Json, Int)],(String, io.circe.Json),That] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (61 ms, 0.32%)
-
-
-
-cats.kernel.Eq[(Int,)] (51 ms, 0.27%)
-
-
-
-cats.kernel.Order[BigInt] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Set[Int]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[Unit] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (178 ms, 0.93%)
-
-
-
-org.scalacheck.Arbitrary[String] (1,455 ms, 7.64%)
-org.scalac..
-
-
-cats.kernel.PartialOrder[String] (6 ms, 0.03%)
-
-
-
-Fractional[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[cats.data.NonEmptyList[String]] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (9 ms, 0.05%)
-
-
-
-cats.kernel.PartialOrder[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[None.type] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (18 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Vector[io.circe.Json]] (36 ms, 0.19%)
-
-
-
-cats.Eq[Option[io.circe.JsonObject]] (6 ms, 0.03%)
-
-
-
-cats.Eq[io.circe.Json] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (23 ms, 0.12%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (29 ms, 0.15%)
-
-
-
-cats.kernel.PartialOrder[Int] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (2 ms, 0.01%)
-
-
-
-cats.Eq[io.circe.Error] (13 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[Int] (4 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[io.circe.Json],io.circe.Json,Iterable[io.circe.Json]] (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int] (29 ms, 0.15%)
-
-
-
-Fractional[Float] (9 ms, 0.05%)
-
-
-
-io.circe.Encoder[Map[Byte,Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)] (25 ms, 0.13%)
-
-
-
-io.circe.Decoder[Int] (2 ms, 0.01%)
-
-
-
-Integral[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.Eq[Option[List[(String, io.circe.Json)]]] (47 ms, 0.25%)
-
-
-
-shapeless.IsTuple[io.circe.JsonObject] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Int] (35 ms, 0.18%)
-
-
-
-scala.reflect.ClassTag[Int] (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-Integral[Byte] (12 ms, 0.06%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (3 ms, 0.02%)
-
-
-
-cats.kernel.Order[Int] (6 ms, 0.03%)
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)] (9 ms, 0.05%)
-
-
-
-org.scalacheck.util.Buildable[(String, Boolean),String => Boolean] (3 ms, 0.02%)
-
-
-
-shapeless.IsTuple[BigInt] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[io.circe.Json] (51 ms, 0.27%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[List[(String, io.circe.Json)]] (33 ms, 0.17%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Double] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[Int] (16 ms, 0.08%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor2[?A,?B] (4 ms, 0.02%)
-
-
-
-cats.kernel.Order[io.circe.Json] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (22 ms, 0.12%)
-
-
-
-Integral[Int] (4 ms, 0.02%)
-
-
-
-(Any => Nothing) => String (31 ms, 0.16%)
-
-
-
-cats.Eq[Option[io.circe.JsonObject]] (5 ms, 0.03%)
-
-
-
-Fractional[Short] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (28 ms, 0.15%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (8 ms, 0.04%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int),L] (14 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[Int] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[cats.data.Validated[String,Int]] (4 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[String] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]] (7 ms, 0.04%)
-
-
-
-io.circe.Encoder[Int] (7 ms, 0.04%)
-
-
-
-(=> Any => Nothing) => JsonSuite.this.PropertyCheckConfigParam (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[List[(String, io.circe.Json)]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (40 ms, 0.21%)
-
-
-
-shapeless.IsTuple[scala.collection.immutable.Set[B]] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]] (8 ms, 0.04%)
-
-
-
-cats.Eq[Option[io.circe.Decoder.Result[List[Boolean]]]] (45 ms, 0.24%)
-
-
-
-List[Option[io.circe.Json]] => ?{def ===: ?} (81 ms, 0.43%)
-
-
-
-cats.Eq[List[Option[io.circe.Json]]] (77 ms, 0.40%)
-
-
-
-cats.kernel.Order[(String, io.circe.Json)] (4 ms, 0.02%)
-
-
-
-cats.kernel.Order[io.circe.Decoder.Result[List[Boolean]]] (4 ms, 0.02%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T] (7 ms, 0.04%)
-
-
-
-io.circe.Encoder[(Int, String, Char)] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (56 ms, 0.29%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc11] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (196 ms, 1.03%)
-
-
-
-cats.Eq[Option[BigInt]] (107 ms, 0.56%)
-
-
-
-io.circe.Decoder.Result[Int] => ?{def ===: ?} (14 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc1] (4 ms, 0.02%)
-
-
-
-Fractional[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Int],io.circe.Printer.Pieces,That] (3 ms, 0.02%)
-
-
-
-cats.kernel.Order[Option[io.circe.Json]] (8 ms, 0.04%)
-
-
-
-io.circe.Encoder[scala.collection.immutable.Set[io.circe.Json]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (30 ms, 0.16%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (125 ms, 0.66%)
-
-
-
-cats.kernel.Order[io.circe.Json] (4 ms, 0.02%)
-
-
-
-cats.Eq[Option[BigInt]] (18 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Set[Either[Int,String]]] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (31 ms, 0.16%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int)] (57 ms, 0.30%)
-
-
-
-io.circe.Encoder[(io.circe.Json, io.circe.Json, io.circe.Json)] (10 ms, 0.05%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (104 ms, 0.55%)
-
-
-
-cats.Eq[Option[List[String]]] (12 ms, 0.06%)
-
-
-
-List[Int] => ?{def asJson: ?} (11 ms, 0.06%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.DecodingFailure],Option[io.circe.Json],That] (4 ms, 0.02%)
-
-
-
-cats.Eq[Option[Long]] (35 ms, 0.18%)
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Unit]] (20 ms, 0.11%)
-
-
-
-org.scalacheck.Shrink[List[io.circe.Json]] (64 ms, 0.34%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[List[Int]] (41 ms, 0.22%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (42 ms, 0.22%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int)] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[Set[Either[Int,String]]] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (52 ms, 0.27%)
-
-
-
-scala.reflect.ClassTag[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.DecodingFailure] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json)] (33 ms, 0.17%)
-
-
-
-org.scalacheck.Arbitrary[Short] (9 ms, 0.05%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (15 ms, 0.08%)
-
-
-
-(Any => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION) (31 ms, 0.16%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Float] (4 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (18 ms, 0.09%)
-
-
-
-io.circe.Encoder[List[io.circe.Json]] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (25 ms, 0.13%)
-
-
-
-cats.kernel.Order[io.circe.Json] (4 ms, 0.02%)
-
-
-
-String("JsonObject.fromIterable") => ?{def should: ?} (5 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc3] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.JsonObject] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (28 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[Int] (14 ms, 0.07%)
-
-
-
-(=> Any => Nothing) => ((?A, ?B, ?C) => ?ASSERTION) (25 ms, 0.13%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc5] (6 ms, 0.03%)
-
-
-
-io.circe.Json => ?{def ===: ?} (217 ms, 1.14%)
-
-
-
-cats.kernel.Eq[Int] (3 ms, 0.02%)
-
-
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION) (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc12] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (48 ms, 0.25%)
-
-
-
-Integral[Either[Int,String]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (33 ms, 0.17%)
-
-
-
-io.circe.Encoder[Int] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (7 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[List[Int]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.Decoder[Int]] (24 ms, 0.13%)
-
-
-
-Integral[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (20 ms, 0.11%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (108 ms, 0.57%)
-
-
-
-(=> Any => Nothing) => ((?A, ?B) => ?ASSERTION) (23 ms, 0.12%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (11 ms, 0.06%)
-
-
-
-cats.kernel.Order[String] (7 ms, 0.04%)
-
-
-
-AccumulatingDecoderSpec.this.PropertyCheckConfigurable (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int)] (43 ms, 0.23%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (3 ms, 0.02%)
-
-
-
-Fractional[cats.data.NonEmptyList[Int]] (2 ms, 0.01%)
-
-
-
-io.circe.JsonObject => ?{def ===: ?} (33 ms, 0.17%)
-
-
-
-org.scalatest.words.StringVerbStringInvocation (66 ms, 0.35%)
-
-
-
-io.circe.Decoder[String] (5 ms, 0.03%)
-
-
-
-io.circe.Encoder[Array[String]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (26 ms, 0.14%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[Int] (6 ms, 0.03%)
-
-
-
-io.circe.Decoder[Int] (38 ms, 0.20%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[Int] (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (3 ms, 0.02%)
-
-
-
-Option[io.circe.Json] => ?{def ===: ?} (639 ms, 3.36%)
-Opt..
-
-
-cats.kernel.PartialOrder[io.circe.CursorOp] (20 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc12] (3 ms, 0.02%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (7 ms, 0.04%)
-
-
-
-EncoderSuite.this.PropertyCheckConfigurable (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (66 ms, 0.35%)
-
-
-
-io.circe.Decoder[Int] (43 ms, 0.23%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int)] (18 ms, 0.09%)
-
-
-
-String(" ") => ?{def *: ?} (30 ms, 0.16%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (64 ms, 0.34%)
-
-
-
-io.circe.Decoder[Boolean] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int)] (25 ms, 0.13%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Int] (33 ms, 0.17%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (43 ms, 0.23%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (23 ms, 0.12%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc14] (4 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]] (6 ms, 0.03%)
-
-
-
-cats.kernel.Order[Int] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Short] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (13 ms, 0.07%)
-
-
-
-cats.Eq[Boolean] (28 ms, 0.15%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (47 ms, 0.25%)
-
-
-
-cats.kernel.Order[Vector[io.circe.Json]] (9 ms, 0.05%)
-
-
-
-String("Decoder[Long]") => ?{def should: ?} (16 ms, 0.08%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G] (5 ms, 0.03%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (28 ms, 0.15%)
-
-
-
-org.scalacheck.Gen.Choose[Int] (10 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (49 ms, 0.26%)
-
-
-
-shapeless.IsTuple[Int :: shapeless.HNil] (2 ms, 0.01%)
-
-
-
-Fractional[Int] (6 ms, 0.03%)
-
-
-
-Int(10) => ?{def asJson: ?} (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Int] (94 ms, 0.49%)
-
-
-
-org.scalacheck.Arbitrary[Int] (57 ms, 0.30%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (32 ms, 0.17%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[String] (9 ms, 0.05%)
-
-
-
-io.circe.Encoder[Int] (30 ms, 0.16%)
-
-
-
-io.circe.Decoder[Int] (15 ms, 0.08%)
-
-
-
-shapeless.IsTuple[io.circe.JsonNumber] (4 ms, 0.02%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc10] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[Int] (21 ms, 0.11%)
-
-
-
-scala.collection.immutable.Set[B] => ?{def ===: ?} (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Vector[io.circe.Json]] (20 ms, 0.11%)
-
-
-
-org.scalacheck.Shrink[MemoizedPiecesSuite.this.Depths] (6 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (49 ms, 0.26%)
-
-
-
-cats.Eq[Option[Vector[String]]] (5 ms, 0.03%)
-
-
-
-io.circe.Decoder[Int] (42 ms, 0.22%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int)] (59 ms, 0.31%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.Foldable[List] (12 ms, 0.06%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int)] (20 ms, 0.11%)
-
-
-
-io.circe.Decoder[java.util.UUID] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (55 ms, 0.29%)
-
-
-
-cats.kernel.Eq[io.circe.JsonObject] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (26 ms, 0.14%)
-
-
-
-cats.Applicative[[x]cats.data.Const[List[io.circe.Json],x]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (25 ms, 0.13%)
-
-
-
-cats.Eq[Int] (13 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Int]] (14 ms, 0.07%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc2] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc2] (4 ms, 0.02%)
-
-
-
-cats.Eq[List[String]] (7 ms, 0.04%)
-
-
-
-io.circe.Encoder[(Int, Int, Int)] (11 ms, 0.06%)
-
-
-
-org.scalatest.words.ResultOfStringPassedToVerb => ?{def in: ?} (80 ms, 0.42%)
-
-
-
-io.circe.Decoder[Int] (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (55 ms, 0.29%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (32 ms, 0.17%)
-
-
-
-cats.kernel.PartialOrder[Int] (17 ms, 0.09%)
-
-
-
-cats.Eq[io.circe.JsonObject] (69 ms, 0.36%)
-
-
-
-io.circe.Encoder[Int] (3 ms, 0.02%)
-
-
-
-Int(3) => ?{def asJson: ?} (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]] (32 ms, 0.17%)
-
-
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C) => ?ASSERTION) (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (49 ms, 0.26%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (53 ms, 0.28%)
-
-
-
-cats.Eq[Map[String,Int]] (13 ms, 0.07%)
-
-
-
-cats.Eq[Boolean] (30 ms, 0.16%)
-
-
-
-cats.PartialOrder[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int)] (22 ms, 0.12%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (74 ms, 0.39%)
-
-
-
-io.circe.Decoder[Int] (18 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Int] (51 ms, 0.27%)
-
-
-
-cats.Eq[String] (6 ms, 0.03%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Some[Int]] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Int] (10 ms, 0.05%)
-
-
-
-io.circe.Decoder[Int] (23 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int)] (34 ms, 0.18%)
-
-
-
-cats.Eq[scala.collection.immutable.Set[io.circe.Json]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.util.Buildable[(Int, Int),Int => Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Int] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc16] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (29 ms, 0.15%)
-
-
-
-cats.Eq[io.circe.Decoder.Result[(Int, String, Char)]] (53 ms, 0.28%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)] (12 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[String,Int]] (17 ms, 0.09%)
-
-
-
-(=> Double) => Int (14 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Long,Int]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[String :: io.circe.Json :: shapeless.HNil] (9 ms, 0.05%)
-
-
-
-String("keys") => ?{def should: ?} (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Long,Int]] (13 ms, 0.07%)
-
-
-
-cats.kernel.PartialOrder[Int] (3 ms, 0.02%)
-
-
-
-Either[io.circe.Error,io.circe.Json] => ?{def ===: ?} (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.Decoder,io.circe.DecodingFailure,Int]] (15 ms, 0.08%)
-
-
-
-io.circe.Decoder[Seq[Int]] (18 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[(String, (String, io.circe.Json, Boolean))] (8 ms, 0.04%)
-
-
-
-io.circe.Decoder[Int] (63 ms, 0.33%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc3] (5 ms, 0.03%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (34 ms, 0.18%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, io.circe.Json)],(String, io.circe.Json),List[(String, io.circe.Json)]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[cats.data.NonEmptyList[io.circe.DecodingFailure]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (113 ms, 0.59%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (53 ms, 0.28%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (25 ms, 0.13%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc9] (5 ms, 0.03%)
-
-
-
-shapeless.IsTuple[io.circe.Error] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (21 ms, 0.11%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-(=> (Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION) (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Decoder.Result[List[Boolean]]] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (37 ms, 0.19%)
-
-
-
-io.circe.Decoder[String] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[io.circe.JsonObject] (2 ms, 0.01%)
-
-
-
-e.type => ?{def asJson: ?} (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (60 ms, 0.32%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc4] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[List[Int]] (37 ms, 0.19%)
-
-
-
-io.circe.Encoder[Long] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[List[(String, io.circe.Json)]] (12 ms, 0.06%)
-
-
-
-org.scalacheck.util.Buildable[(String, Int),Map[String,Int]] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[String] (13 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (31 ms, 0.16%)
-
-
-
-cats.kernel.PartialOrder[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (50 ms, 0.26%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[Int] (13 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (8 ms, 0.04%)
-
-
-
-cats.kernel.PartialOrder[String] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Int] (6 ms, 0.03%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc22] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (18 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (33 ms, 0.17%)
-
-
-
-cats.kernel.Order[Int] (8 ms, 0.04%)
-
-
-
-io.circe.Decoder[String] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (16 ms, 0.08%)
-
-
-
-cats.kernel.Eq[io.circe.Encoder[Int]] (12 ms, 0.06%)
-
-
-
-shapeless.Generic.Aux[(String, io.circe.Json),L] (9 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int] (3 ms, 0.02%)
-
-
-
-Integral[List[Int]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (5 ms, 0.03%)
-
-
-
-cats.kernel.PartialOrder[Vector[io.circe.Json]] (8 ms, 0.04%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int),L] (12 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (32 ms, 0.17%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (16 ms, 0.08%)
-
-
-
-cats.kernel.PartialOrder[List[(String, io.circe.Json)]] (6 ms, 0.03%)
-
-
-
-String("A JSON number") => ?{def should: ?} (7 ms, 0.04%)
-
-
-
-cats.kernel.Order[Int] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc15] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (62 ms, 0.33%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (32 ms, 0.17%)
-
-
-
-cats.kernel.Eq[Byte] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[cats.data.Validated[String,Int]] (3 ms, 0.02%)
-
-
-
-cats.Eq[(Int, String, Char)] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Vector[io.circe.Json]] (12 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc22] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (8 ms, 0.04%)
-
-
-
-cats.Eq[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)] (19 ms, 0.10%)
-
-
-
-(Any => Nothing) => org.scalacheck.Gen[?A] (51 ms, 0.27%)
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]] (25 ms, 0.13%)
-
-
-
-org.scalacheck.Arbitrary[List[Either[String,(String, io.circe.Json, Boolean)]]] (18 ms, 0.09%)
-
-
-
-cats.Eq[io.circe.JsonObject] (16 ms, 0.08%)
-
-
-
-cats.Eq[io.circe.JsonNumber] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[Byte] (9 ms, 0.05%)
-
-
-
-cats.kernel.PartialOrder[Int] (20 ms, 0.11%)
-
-
-
-Int(5) => ?{def asJson: ?} (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Either[Int,String]] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[String :: Char :: shapeless.HNil] (18 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (12 ms, 0.06%)
-
-
-
-String("fromDouble") => ?{def should: ?} (2 ms, 0.01%)
-
-
-
-JsonSuite.this.PropertyCheckConfigurable (5 ms, 0.03%)
-
-
-
-Integral[Int] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (35 ms, 0.18%)
-
-
-
-String("1") => ?{def asJson: ?} (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (9 ms, 0.05%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Short,Int]] (15 ms, 0.08%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (125 ms, 0.66%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (31 ms, 0.16%)
-
-
-
-cats.functor.Contravariant[io.circe.ArrayEncoder] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Long] (61 ms, 0.32%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.ObjectEncoder[Int]] (10 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int)] (30 ms, 0.16%)
-
-
-
-cats.Eq[Option[Byte]] (10 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[io.circe.DecodingFailure] (5 ms, 0.03%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (8 ms, 0.04%)
-
-
-
-io.circe.Encoder[Int] (24 ms, 0.13%)
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)] (54 ms, 0.28%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (18 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (10 ms, 0.05%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Map[String,Int]] (16 ms, 0.08%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor2[?A,?B] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Int] (44 ms, 0.23%)
-
-
-
-org.scalatest.enablers.CheckerAsserting[org.scalatest.Assertion] (63 ms, 0.33%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (21 ms, 0.11%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc18] (8 ms, 0.04%)
-
-
-
-io.circe.Decoder[List[Boolean]] (10 ms, 0.05%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-List[String] => ?{def ===: ?} (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (10 ms, 0.05%)
-
-
-
-io.circe.Decoder[String] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[Set[T]] (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int] (27 ms, 0.14%)
-
-
-
-cats.Eq[io.circe.ACursor] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[java.util.UUID,Int]] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (23 ms, 0.12%)
-
-
-
-cats.Eq[Option[Byte]] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (17 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (8 ms, 0.04%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (36 ms, 0.19%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc8] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (57 ms, 0.30%)
-
-
-
-cats.kernel.Order[Long] (8 ms, 0.04%)
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,io.circe.Json]] (3 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[Int] (13 ms, 0.07%)
-
-
-
-(=> (Any, Any) => Nothing) => (?A => ?ASSERTION) (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (130 ms, 0.68%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Int] (5 ms, 0.03%)
-
-
-
-cats.Eq[Option[String]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[Double] (36 ms, 0.19%)
-
-
-
-cats.kernel.PartialOrder[io.circe.JsonNumber] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[List[Either[Int,String]]] (23 ms, 0.12%)
-
-
-
-io.circe.Decoder[Option[String]] (18 ms, 0.09%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc19] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(String, Int)] (30 ms, 0.16%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (50 ms, 0.26%)
-
-
-
-scala.reflect.ClassTag[Int] (10 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[Either[Int,String]] (2 ms, 0.01%)
-
-
-
-cats.Eq[List[Option[io.circe.Json]]] (74 ms, 0.39%)
-
-
-
-cats.kernel.Order[String] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (6 ms, 0.03%)
-
-
-
-cats.Eq[Vector[Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int)] (26 ms, 0.14%)
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,Int]] (2 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (14 ms, 0.07%)
-
-
-
-cats.Eq[scala.collection.immutable.Set[Int]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)] (31 ms, 0.16%)
-
-
-
-io.circe.Decoder[Int] (44 ms, 0.23%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int)] (23 ms, 0.12%)
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Int]] (6 ms, 0.03%)
-
-
-
-cats.kernel.PartialOrder[Int] (12 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[Option[io.circe.Decoder.Result[List[Boolean]]]] (43 ms, 0.23%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (6 ms, 0.03%)
-
-
-
-io.circe.Decoder[Int] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[String] (3 ms, 0.02%)
-
-
-
-Integral[Vector[io.circe.Json]] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc18] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (15 ms, 0.08%)
-
-
-
-(Any => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION) (33 ms, 0.17%)
-
-
-
-scala.reflect.ClassTag[Int] (25 ms, 0.13%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (50 ms, 0.26%)
-
-
-
-shapeless.Generic.Aux[(Int, String, Char),L] (9 ms, 0.05%)
-
-
-
-org.scalatest.enablers.TableAsserting[org.scalatest.compatible.Assertion] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[BigDecimal] (3 ms, 0.02%)
-
-
-
-Option[BigInt] => ?{def ===: ?} (109 ms, 0.57%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,io.circe.Json,List[io.circe.Json]] (6 ms, 0.03%)
-
-
-
-Option[Unit] => ?{def ===: ?} (2 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Traversable[String] with Array[String]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[scala.math.BigInt] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[Int] (9 ms, 0.05%)
-
-
-
-cats.kernel.Order[io.circe.JsonNumber] (3 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[cats.data.NonEmptyList[io.circe.DecodingFailure]] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc22] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (16 ms, 0.08%)
-
-
-
-cats.MonadError[io.circe.KeyDecoder,Unit] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int)] (19 ms, 0.10%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (20 ms, 0.11%)
-
-
-
-shapeless.IsTuple[io.circe.CursorOp] (13 ms, 0.07%)
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc1] (2 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[(String, io.circe.Json),L] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[Map[java.util.UUID,Int]] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[String] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[Int] (6 ms, 0.03%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-Fractional[BigInt] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[Int] (45 ms, 0.24%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[String] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (6 ms, 0.03%)
-
-
-
-cats.Eq[List[io.circe.Json]] (19 ms, 0.10%)
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int)] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Int] (43 ms, 0.23%)
-
-
-
-cats.Eq[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Int] (23 ms, 0.12%)
-
-
-
-shapeless.IsTuple[io.circe.JsonObject] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc10] (4 ms, 0.02%)
-
-
-
-Integral[(String, Int)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Boolean] (3 ms, 0.02%)
-
-
-
-Option[io.circe.Json] => scala.collection.GenTraversableOnce[B] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I] (6 ms, 0.03%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F] (4 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[String] (5 ms, 0.03%)
-
-
-
-cats.Eq[io.circe.JsonNumber] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (42 ms, 0.22%)
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Symbol,Int]] (3 ms, 0.02%)
-
-
-
-cats.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[List[String]] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Int] (46 ms, 0.24%)
-
-
-
-cats.Eq[String] (21 ms, 0.11%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (41 ms, 0.22%)
-
-
-
-cats.kernel.Order[cats.data.NonEmptyList[io.circe.DecodingFailure]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (13 ms, 0.07%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.Decoder[(Int, Int, Int)]] (27 ms, 0.14%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[String] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Long] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Int] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (35 ms, 0.18%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (12 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (24 ms, 0.13%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (19 ms, 0.10%)
-
-
-
-Map[String,Int] => Traversable[(String, Int)] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc22] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[scala.collection.mutable.HashMap[Long,Int]] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[io.circe.Json] (47 ms, 0.25%)
-
-
-
-shapeless.IsTuple[io.circe.ParsingFailure] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[Int] (11 ms, 0.06%)
-
-
-
-cats.Eq[io.circe.Json] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (12 ms, 0.06%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc3] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (28 ms, 0.15%)
-
-
-
-cats.kernel.Eq[Boolean] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[scala.util.Either[Unit,Int]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (14 ms, 0.07%)
-
-
-
-shapeless.Generic.Aux[Unit,L] (8 ms, 0.04%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (19 ms, 0.10%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (2 ms, 0.01%)
-
-
-
-cats.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]] (39 ms, 0.20%)
-
-
-
-io.circe.Decoder[Int] (10 ms, 0.05%)
-
-
-
-io.circe.Decoder[Int] (17 ms, 0.09%)
-
-
-
-xs.type => ?{def asJson: ?} (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int)] (48 ms, 0.25%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[Option[String]] (35 ms, 0.18%)
-
-
-
-String("y") => ?{def ->: ?} (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Int] (16 ms, 0.08%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (27 ms, 0.14%)
-
-
-
-org.scalacheck.Arbitrary[List[(String, io.circe.Json)]] (57 ms, 0.30%)
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[Int]] (13 ms, 0.07%)
-
-
-
-cats.kernel.PartialOrder[Int] (13 ms, 0.07%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R] (5 ms, 0.03%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N] (5 ms, 0.03%)
-
-
-
-List[io.circe.CursorOp] => ?{def ===: ?} (177 ms, 0.93%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (45 ms, 0.24%)
-
-
-
-Option[Byte] => ?{def ===: ?} (11 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (5 ms, 0.03%)
-
-
-
-cats.Eq[List[io.circe.CursorOp]] (156 ms, 0.82%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int),L] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (24 ms, 0.13%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (4 ms, 0.02%)
-
-
-
-cats.kernel.Order[String] (4 ms, 0.02%)
-
-
-
-io.circe.Decoder[io.circe.JsonNumber] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (12 ms, 0.06%)
-
-
-
-io.circe.Encoder[Short] (2 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[List[io.circe.Json]] (10 ms, 0.05%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, io.circe.Json),List[(String, io.circe.Json)]] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (111 ms, 0.58%)
-
-
-
-org.scalacheck.util.Buildable[(String, Int),Map[String,Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc21] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (39 ms, 0.20%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (12 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc8] (6 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L] (17 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (23 ms, 0.12%)
-
-
-
-cats.kernel.Eq[io.circe.JsonObject] (2 ms, 0.01%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D] (5 ms, 0.03%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H] (6 ms, 0.03%)
-
-
-
-io.circe.Encoder[Int] (18 ms, 0.09%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (16 ms, 0.08%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.02%)
-
-
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION) (19 ms, 0.10%)
-
-
-
-cats.kernel.Eq[List[Boolean]] (10 ms, 0.05%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],String,That] (11 ms, 0.06%)
-
-
-
-shapeless.IsTuple[io.circe.JsonNumber] (3 ms, 0.02%)
-
-
-
-shapeless.IsTuple[io.circe.Json] (4 ms, 0.02%)
-
-
-
-cats.Eq[Option[List[String]]] (11 ms, 0.06%)
-
-
-
-cats.Eq[List[(String, io.circe.Json)]] (140 ms, 0.74%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-String("d") => ?{def ->: ?} (2 ms, 0.01%)
-
-
-
-cats.Eq[io.circe.JsonNumber] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Char] (2 ms, 0.01%)
-
-
-
-io.circe.ACursor => ?{def ===: ?} (2 ms, 0.01%)
-
-
-
-cats.Eq[io.circe.ParsingFailure] (14 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int] (54 ms, 0.28%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.PartialOrder[Int] (12 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (9 ms, 0.05%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)] (5 ms, 0.03%)
-
-
-
-io.circe.Decoder[Int] (6 ms, 0.03%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O] (5 ms, 0.03%)
-
-
-
-cats.kernel.PartialOrder[Int] (20 ms, 0.11%)
-
-
-
-scala.reflect.ClassTag[Int] (12 ms, 0.06%)
-
-
-
-Option[String] => ?{def ===: ?} (2 ms, 0.01%)
-
-
-
-cats.Eq[List[String]] (6 ms, 0.03%)
-
-
-
-Integral[Map[String,Int]] (3 ms, 0.02%)
-
-
-
-cats.Eq[io.circe.DecodingFailure] (165 ms, 0.87%)
-
-
-
-Option[io.circe.JsonNumber] => ?{def ===: ?} (46 ms, 0.24%)
-
-
-
-((Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION) (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[io.circe.Json] (12 ms, 0.06%)
-
-
-
-String("Printer.MemoizedPieces") => ?{def should: ?} (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.SortedMap[Long,Int]] (14 ms, 0.07%)
-
-
-
-cats.kernel.PartialOrder[cats.data.NonEmptyList[io.circe.DecodingFailure]] (6 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (14 ms, 0.07%)
-
-
-
-resultAlias.type => ?{def ===: ?} (32 ms, 0.17%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.01%)
-
-
-
-cats.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (76 ms, 0.40%)
-
-
-
-cats.kernel.Eq[String] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[Vector[io.circe.Json]] (11 ms, 0.06%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (53 ms, 0.28%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (25 ms, 0.13%)
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc18]] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (29 ms, 0.15%)
-
-
-
-org.scalacheck.Shrink[(Either[Int,String], Either[Int,String], Either[Int,String])] (25 ms, 0.13%)
-
-
-
-List[io.circe.Json] => ?{def ===: ?} (21 ms, 0.11%)
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor1[?A] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[Array[String]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[shapeless.HNil] (5 ms, 0.03%)
-
-
-
-io.circe.Decoder[Map[Int,Int]] (3 ms, 0.02%)
-
-
-
-cats.Eq[scala.collection.immutable.Set[Option[io.circe.Json]]] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Either[String,(String, io.circe.Json, Boolean)]] (16 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int)] (57 ms, 0.30%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (38 ms, 0.20%)
-
-
-
-cats.kernel.PartialOrder[Int] (8 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,List[Int]] (2 ms, 0.01%)
-
-
-
-io.circe.Decoder[Int] (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[String] (4 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (34 ms, 0.18%)
-
-
-
-cats.kernel.Eq[Char] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (28 ms, 0.15%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-io.circe.Encoder[cats.data.Validated[String,Int]] (2 ms, 0.01%)
-
-
-
-Fractional[Int] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (16 ms, 0.08%)
-
-
-
-io.circe.Encoder[Int] (35 ms, 0.18%)
-
-
-
-cats.Eq[Vector[(String, io.circe.Json)]] (40 ms, 0.21%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (2 ms, 0.01%)
-
-
-
-cats.Eq[io.circe.DecodingFailure] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int)] (79 ms, 0.41%)
-
-
-
-cats.Eq[Option[Unit]] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (3 ms, 0.02%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (33 ms, 0.17%)
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int)] (21 ms, 0.11%)
-
-
-
-Map[String,Int] => Traversable[(String, Int)] (2 ms, 0.01%)
-
-
-
-cats.kernel.PartialOrder[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil] (7 ms, 0.04%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (6 ms, 0.03%)
-
-
-
-cats.kernel.PartialOrder[Int] (24 ms, 0.13%)
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil] (8 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[String] (357 ms, 1.87%)
-s..
-
-
-shapeless.IsTuple[io.circe.Json] (52 ms, 0.27%)
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G] (6 ms, 0.03%)
-
-
-
-io.circe.Decoder[Int] (2 ms, 0.01%)
-
-
-
-cats.Eq[io.circe.KeyDecoder[Either[Unit,Int]]] (3 ms, 0.02%)
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc11] (3 ms, 0.02%)
-
-
-
-String("c") => ?{def ->: ?} (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]] (11 ms, 0.06%)
-
-
-
-cats.kernel.PartialOrder[io.circe.Json] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (3 ms, 0.02%)
-
-
-
-cats.Eq[io.circe.JsonNumber] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[(Int, Int)] (15 ms, 0.08%)
-
-
-
-Integral[Int] (16 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,List[Int]] (4 ms, 0.02%)
-
-
-
-cats.Eq[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]] (7 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[(Int, String)] (8 ms, 0.04%)
-
-
-
-cats.Eq[io.circe.Json] (176 ms, 0.92%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json)] (33 ms, 0.17%)
-
-
-
-org.scalacheck.Arbitrary[Int] (11 ms, 0.06%)
-
-
-
-io.circe.Decoder[Int] (50 ms, 0.26%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (56 ms, 0.29%)
-
-
-
-org.scalacheck.Arbitrary[Int] (8 ms, 0.04%)
-
-
-
-cats.kernel.Eq[Int] (5 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (43 ms, 0.23%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (13 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Order[Int] (14 ms, 0.07%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil] (10 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Int] (41 ms, 0.22%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (35 ms, 0.18%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (48 ms, 0.25%)
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc16] (5 ms, 0.03%)
-
-
-
-Fractional[List[io.circe.Json]] (3 ms, 0.02%)
-
-
-
-cats.kernel.Order[io.circe.Json] (3 ms, 0.02%)
-
-
-
-cats.kernel.Order[io.circe.Decoder.Result[List[Boolean]]] (3 ms, 0.02%)
-
-
-
-Integral[Int] (7 ms, 0.04%)
-
-
-
-io.circe.Decoder[Int] (24 ms, 0.13%)
-
-
-
-String("findAllByKey and its alias, \\\\") => ?{def should: ?} (5 ms, 0.03%)
-
-
-
-cats.functor.Contravariant[io.circe.Encoder] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure],Int]] (40 ms, 0.21%)
-
-
-
-io.circe.Decoder[String] (10 ms, 0.05%)
-
-
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C) => ?ASSERTION) (10 ms, 0.05%)
-
-
-
-cats.kernel.Eq[Long] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (5 ms, 0.03%)
-
-
-
-cats.kernel.PartialOrder[Int] (19 ms, 0.10%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil] (24 ms, 0.13%)
-
-
-
-cats.kernel.Eq[io.circe.DecodingFailure] (6 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)] (2 ms, 0.01%)
-
-
-
-io.circe.Encoder[Int] (2 ms, 0.01%)
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil] (25 ms, 0.13%)
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int)] (72 ms, 0.38%)
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc18] (4 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.mutable.HashMap[Long,Int]] (8 ms, 0.04%)
-
-
-
-(=> (Any, Any) => Nothing) => String (7 ms, 0.04%)
-
-
-
-cats.kernel.Eq[String] (10 ms, 0.05%)
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc22] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[scala.util.Either[Int,String]] (4 ms, 0.02%)
-
-
-
-cats.kernel.Order[Boolean] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[(Int, String, Char)] (14 ms, 0.07%)
-
-
-
-cats.kernel.PartialOrder[io.circe.JsonNumber] (5 ms, 0.03%)
-
-
-
-cats.kernel.Eq[Int] (2 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc19] (4 ms, 0.02%)
-
-
-
diff --git a/docs/circe-test-suite.html b/docs/circe-test-suite.html
deleted file mode 100644
index 0b9f8fa..0000000
--- a/docs/circe-test-suite.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-
-
-
- Click node to highlight; Shift-scroll to zoom; Esc to unhighlight
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/circe-test-suite.svg b/docs/circe-test-suite.svg
deleted file mode 100644
index bd89aec..0000000
--- a/docs/circe-test-suite.svg
+++ /dev/null
@@ -1,23448 +0,0 @@
-
-
-
-
-
-
-implicit-searches-1510220504366
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc19]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc19]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc19]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc19]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc19]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc19]]
-
-
-
-
-
-org.scalacheck.Arbitrary[io.circe.tests.examples.Foo]
-
-org.scalacheck.Arbitrary[io.circe.tests.examples.Foo]
-1 times = 6ms
-
-
-
-scala.reflect.ClassTag[io.circe.tests.examples.Foo]
-
-scala.reflect.ClassTag[io.circe.tests.examples.Foo]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.tests.examples.Foo]->scala.reflect.ClassTag[io.circe.tests.examples.Foo]
-
-
-
-
-
-io.circe.Decoder[io.circe.JsonNumber]
-
-io.circe.Decoder[io.circe.JsonNumber]
-1 times = 2ms
-
-
-
-Set[Int] => Traversable[Int]
-
-Set[Int] => Traversable[Int]
-1 times = 0ms
-
-
-
-cats.Eq[io.circe.DecodingFailure]
-
-cats.Eq[io.circe.DecodingFailure]
-43 times = 177ms
-
-
-
-shapeless.IsTuple[io.circe.DecodingFailure]
-
-shapeless.IsTuple[io.circe.DecodingFailure]
-52 times = 37ms
-
-
-
-cats.Eq[io.circe.DecodingFailure]->shapeless.IsTuple[io.circe.DecodingFailure]
-
-
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc17]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc17]
-1 times = 5ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc17]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc17]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc17]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc17]]
-
-
-
-
-
-io.circe.Decoder[Int]
-
-io.circe.Decoder[Int]
-316 times = 810ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int)]
-1 times = 12ms
-
-
-
-io.circe.Encoder[Int]
-
-io.circe.Encoder[Int]
-356 times = 708ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int)]]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc2]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc2]
-1 times = 9ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc2]
-
-Fractional[ProductCodecSuite.this.Cc2]
-1 times = 2ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc2]->Fractional[ProductCodecSuite.this.Cc2]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc2]
-
-Integral[ProductCodecSuite.this.Cc2]
-1 times = 2ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc2]->Integral[ProductCodecSuite.this.Cc2]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-7 times = 654ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-8 times = 685ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int]
-
-cats.kernel.Eq[Int]
-303 times = 722ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc1]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc1]
-1 times = 6ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc1]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc1]]
-1 times = 1ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc1]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc1]]
-
-
-
-
-
-scala.reflect.ClassTag[A]
-
-scala.reflect.ClassTag[A]
-2 times = 8ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 33ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-String('A list decoder') => ?{def should: ?}
-
-String('A list decoder') => ?{def should: ?}
-1 times = 0ms
-
-
-
-org.scalactic.source.Position
-
-org.scalactic.source.Position
-949 times = 645ms
-
-
-
-String('A list decoder') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Long,Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Long,Int]]
-1 times = 12ms
-
-
-
-scala.collection.immutable.Map[Long,Int] => Traversable[(Long, Int)]
-
-scala.collection.immutable.Map[Long,Int] => Traversable[(Long, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Long,Int]]->scala.collection.immutable.Map[Long,Int] => Traversable[(Long, Int)]
-
-
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[Long,Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[Long,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Long,Int]]->scala.reflect.ClassTag[scala.collection.immutable.Map[Long,Int]]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Long, Int),scala.collection.immutable.Map[Long,Int]]
-
-org.scalacheck.util.Buildable[(Long, Int),scala.collection.immutable.Map[Long,Int]]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Long,Int]]->org.scalacheck.util.Buildable[(Long, Int),scala.collection.immutable.Map[Long,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Long, Int)]
-
-org.scalacheck.Arbitrary[(Long, Int)]
-3 times = 24ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Long,Int]]->org.scalacheck.Arbitrary[(Long, Int)]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Symbol, Int),scala.collection.immutable.Map[Symbol,Int]]
-
-org.scalacheck.util.Buildable[(Symbol, Int),scala.collection.immutable.Map[Symbol,Int]]
-2 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Symbol, Int),scala.collection.immutable.Map[Symbol,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(Symbol, Int),scala.collection.immutable.Map[Symbol,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(Symbol, Int),scala.collection.immutable.Map[Symbol,Int]]->scala.collection.generic.CanBuildFrom[F,(Symbol, Int),scala.collection.immutable.Map[Symbol,Int]]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => (?A => ?ASSERTION)
-
-(=> (Any, Any) => Nothing) => (?A => ?ASSERTION)
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int)]
-
-cats.kernel.Eq[(Int, Int)]
-1 times = 32ms
-
-
-
-shapeless.Generic.Aux[(Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int),L]
-1 times = 7ms
-
-
-
-cats.kernel.Eq[(Int, Int)]->shapeless.Generic.Aux[(Int, Int),L]
-
-
-
-
-
-cats.kernel.Order[Int]
-
-cats.kernel.Order[Int]
-276 times = 236ms
-
-
-
-cats.kernel.Eq[(Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.PartialOrder[Int]
-
-cats.kernel.PartialOrder[Int]
-263 times = 387ms
-
-
-
-cats.kernel.Eq[(Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil]
-24 times = 336ms
-
-
-
-cats.kernel.Eq[(Int, Int)]->cats.kernel.Eq[Int :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int)]
-
-shapeless.IsTuple[(Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int)]->shapeless.IsTuple[(Int, Int)]
-
-
-
-
-
-String('deleteGoLast') => ?{def should: ?}
-
-String('deleteGoLast') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('deleteGoLast') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[String :: Char :: shapeless.HNil]
-
-cats.kernel.Eq[String :: Char :: shapeless.HNil]
-1 times = 82ms
-
-
-
-cats.kernel.Eq[String]
-
-cats.kernel.Eq[String]
-1 times = 61ms
-
-
-
-cats.kernel.Eq[String :: Char :: shapeless.HNil]->cats.kernel.Eq[String]
-
-
-
-
-
-cats.kernel.Eq[Char :: shapeless.HNil]
-
-cats.kernel.Eq[Char :: shapeless.HNil]
-1 times = 16ms
-
-
-
-cats.kernel.Eq[String :: Char :: shapeless.HNil]->cats.kernel.Eq[Char :: shapeless.HNil]
-
-
-
-
-
-shapeless.IsTuple[String :: Char :: shapeless.HNil]
-
-shapeless.IsTuple[String :: Char :: shapeless.HNil]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[String :: Char :: shapeless.HNil]->shapeless.IsTuple[String :: Char :: shapeless.HNil]
-
-
-
-
-
-Int(101) => ?{def asJson: ?}
-
-Int(101) => ?{def asJson: ?}
-2 times = 1ms
-
-
-
-((Any, Any) => Nothing) => String
-
-((Any, Any) => Nothing) => String
-21 times = 8ms
-
-
-
-shapeless.IsTuple[String]
-
-shapeless.IsTuple[String]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[String]->shapeless.IsTuple[String]
-
-
-
-
-
-io.circe.Decoder[io.circe.tests.examples.WrappedOptionalField]
-
-io.circe.Decoder[io.circe.tests.examples.WrappedOptionalField]
-1 times = 3ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[io.circe.tests.examples.WrappedOptionalField]]
-
-io.circe.export.Exported[io.circe.Decoder[io.circe.tests.examples.WrappedOptionalField]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[io.circe.tests.examples.WrappedOptionalField]->io.circe.export.Exported[io.circe.Decoder[io.circe.tests.examples.WrappedOptionalField]]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 16ms
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Int]]
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Int]]
-1 times = 4ms
-
-
-
-cats.data.NonEmptyList[Int] => Traversable[Int]
-
-cats.data.NonEmptyList[Int] => Traversable[Int]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Int]]->cats.data.NonEmptyList[Int] => Traversable[Int]
-
-
-
-
-
-Integral[cats.data.NonEmptyList[Int]]
-
-Integral[cats.data.NonEmptyList[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Int]]->Integral[cats.data.NonEmptyList[Int]]
-
-
-
-
-
-Fractional[cats.data.NonEmptyList[Int]]
-
-Fractional[cats.data.NonEmptyList[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Int]]->Fractional[cats.data.NonEmptyList[Int]]
-
-
-
-
-
-cats.Eq[Option[Short]]
-
-cats.Eq[Option[Short]]
-4 times = 20ms
-
-
-
-cats.kernel.Eq[Short]
-
-cats.kernel.Eq[Short]
-3 times = 8ms
-
-
-
-cats.Eq[Option[Short]]->cats.kernel.Eq[Short]
-
-
-
-
-
-cats.kernel.Order[Short]
-
-cats.kernel.Order[Short]
-4 times = 3ms
-
-
-
-cats.Eq[Option[Short]]->cats.kernel.Order[Short]
-
-
-
-
-
-scala.reflect.ClassTag[Short]
-
-scala.reflect.ClassTag[Short]
-4 times = 1ms
-
-
-
-Fractional[(String, Int)]
-
-Fractional[(String, Int)]
-1 times = 1ms
-
-
-
-io.circe.Decoder.Result[Double] => ?{def ===: ?}
-
-io.circe.Decoder.Result[Double] => ?{def ===: ?}
-1 times = 1ms
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc12]
-
-Fractional[ProductCodecSuite.this.Cc12]
-1 times = 2ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int)]
-1 times = 14ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-Fractional[Long]
-
-Fractional[Long]
-16 times = 16ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc20]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc20]]
-1 times = 0ms
-
-
-
-String => Int
-
-String => Int
-16 times = 28ms
-
-
-
-result2.type => ?{def ===: ?}
-
-result2.type => ?{def ===: ?}
-1 times = 4ms
-
-
-
-cats.Eq[io.circe.JsonObject]
-
-cats.Eq[io.circe.JsonObject]
-38 times = 223ms
-
-
-
-result2.type => ?{def ===: ?}->cats.Eq[io.circe.JsonObject]
-
-
-
-
-
-cats.Eq[Option[io.circe.JsonObject]]
-
-cats.Eq[Option[io.circe.JsonObject]]
-6 times = 50ms
-
-
-
-result2.type => ?{def ===: ?}->cats.Eq[Option[io.circe.JsonObject]]
-
-
-
-
-
-cats.Applicative[[x]cats.data.Const[List[io.circe.Json],x]]
-
-cats.Applicative[[x]cats.data.Const[List[io.circe.Json],x]]
-1 times = 2ms
-
-
-
-cats.Monoid[List[io.circe.Json]]
-
-cats.Monoid[List[io.circe.Json]]
-1 times = 1ms
-
-
-
-cats.Applicative[[x]cats.data.Const[List[io.circe.Json],x]]->cats.Monoid[List[io.circe.Json]]
-
-
-
-
-
-shapeless.IsTuple[io.circe.JsonObject]
-
-shapeless.IsTuple[io.circe.JsonObject]
-46 times = 26ms
-
-
-
-cats.Eq[io.circe.JsonObject]->shapeless.IsTuple[io.circe.JsonObject]
-
-
-
-
-
-(String => Boolean) => Traversable[(String, Boolean)]
-
-(String => Boolean) => Traversable[(String, Boolean)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Set[Either[Int,String]]]
-
-org.scalacheck.Arbitrary[Set[Either[Int,String]]]
-1 times = 16ms
-
-
-
-scala.reflect.ClassTag[Set[Either[Int,String]]]
-
-scala.reflect.ClassTag[Set[Either[Int,String]]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Set[Either[Int,String]]]->scala.reflect.ClassTag[Set[Either[Int,String]]]
-
-
-
-
-
-Set[Either[Int,String]] => Traversable[Either[Int,String]]
-
-Set[Either[Int,String]] => Traversable[Either[Int,String]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Set[Either[Int,String]]]->Set[Either[Int,String]] => Traversable[Either[Int,String]]
-
-
-
-
-
-org.scalacheck.util.Buildable[Either[Int,String],Set[Either[Int,String]]]
-
-org.scalacheck.util.Buildable[Either[Int,String],Set[Either[Int,String]]]
-2 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[Set[Either[Int,String]]]->org.scalacheck.util.Buildable[Either[Int,String],Set[Either[Int,String]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]]
-
-org.scalacheck.Arbitrary[Either[Int,String]]
-8 times = 88ms
-
-
-
-org.scalacheck.Arbitrary[Set[Either[Int,String]]]->org.scalacheck.Arbitrary[Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 4ms
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Short, Int)]
-
-org.scalacheck.Arbitrary[(Short, Int)]
-1 times = 9ms
-
-
-
-org.scalacheck.Arbitrary[Short]
-
-org.scalacheck.Arbitrary[Short]
-4 times = 10ms
-
-
-
-org.scalacheck.Arbitrary[(Short, Int)]->org.scalacheck.Arbitrary[Short]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int]
-
-org.scalacheck.Arbitrary[Int]
-369 times = 1228ms
-
-
-
-org.scalacheck.Arbitrary[(Short, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(Short, Int)]
-
-scala.reflect.ClassTag[(Short, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Short, Int)]->scala.reflect.ClassTag[(Short, Int)]
-
-
-
-
-
-io.circe.Decoder.Result[Float] => ?{def ===: ?}
-
-io.circe.Decoder.Result[Float] => ?{def ===: ?}
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 49ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-cats.kernel.Eq[Option[Int]]
-
-cats.kernel.Eq[Option[Int]]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[Option[Int]]->cats.kernel.Order[Int]
-
-
-
-
-
-shapeless.IsTuple[Option[Int]]
-
-shapeless.IsTuple[Option[Int]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Option[Int]]->shapeless.IsTuple[Option[Int]]
-
-
-
-
-
-String('truncateToInt') => ?{def should: ?}
-
-String('truncateToInt') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('truncateToInt') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc2]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc2]
-1 times = 1ms
-
-
-
-shapeless.IsTuple[(String, io.circe.Json)]
-
-shapeless.IsTuple[(String, io.circe.Json)]
-2 times = 1ms
-
-
-
-String('withNumber') => ?{def should: ?}
-
-String('withNumber') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('withNumber') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc7]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc7]]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc1]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc1]
-1 times = 1ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc7]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc7]
-1 times = 4ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc7]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc7]]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-io.circe.Encoder[Map[Int,Int]]
-
-io.circe.Encoder[Map[Int,Int]]
-1 times = 2ms
-
-
-
-io.circe.KeyEncoder[Int]
-
-io.circe.KeyEncoder[Int]
-2 times = 0ms
-
-
-
-io.circe.Encoder[Map[Int,Int]]->io.circe.KeyEncoder[Int]
-
-
-
-
-
-io.circe.Encoder[Map[Int,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-shapeless.IsTuple[io.circe.AccumulatingDecoder[Int]]
-
-shapeless.IsTuple[io.circe.AccumulatingDecoder[Int]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[Float]
-
-shapeless.IsTuple[Float]
-2 times = 1ms
-
-
-
-org.scalacheck.Shrink[io.circe.tests.examples.WrappedOptionalField]
-
-org.scalacheck.Shrink[io.circe.tests.examples.WrappedOptionalField]
-1 times = 4ms
-
-
-
-Fractional[io.circe.tests.examples.WrappedOptionalField]
-
-Fractional[io.circe.tests.examples.WrappedOptionalField]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[io.circe.tests.examples.WrappedOptionalField]->Fractional[io.circe.tests.examples.WrappedOptionalField]
-
-
-
-
-
-Integral[io.circe.tests.examples.WrappedOptionalField]
-
-Integral[io.circe.tests.examples.WrappedOptionalField]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[io.circe.tests.examples.WrappedOptionalField]->Integral[io.circe.tests.examples.WrappedOptionalField]
-
-
-
-
-
-io.circe.KeyDecoder[String]
-
-io.circe.KeyDecoder[String]
-5 times = 1ms
-
-
-
-Integral[(Symbol, Int)]
-
-Integral[(Symbol, Int)]
-1 times = 0ms
-
-
-
-String('last') => ?{def should: ?}
-
-String('last') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('last') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('first') => ?{def should: ?}
-
-String('first') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('first') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('transformations') => ?{def should: ?}
-
-String('transformations') => ?{def should: ?}
-3 times = 3ms
-
-
-
-String('transformations') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[Vector[String]]
-
-cats.kernel.Eq[Vector[String]]
-2 times = 12ms
-
-
-
-cats.kernel.Eq[Vector[String]]->cats.kernel.Eq[String]
-
-
-
-
-
-cats.kernel.Order[String]
-
-cats.kernel.Order[String]
-72 times = 62ms
-
-
-
-cats.kernel.Eq[Vector[String]]->cats.kernel.Order[String]
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => (?A => ?ASSERTION)
-
-((Any, Any) => Nothing) => (?A => ?ASSERTION)
-1 times = 2ms
-
-
-
-cats.kernel.Eq[shapeless.HNil]
-
-cats.kernel.Eq[shapeless.HNil]
-32 times = 81ms
-
-
-
-cats.kernel.Eq[Char :: shapeless.HNil]->cats.kernel.Eq[shapeless.HNil]
-
-
-
-
-
-shapeless.IsTuple[Char :: shapeless.HNil]
-
-shapeless.IsTuple[Char :: shapeless.HNil]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Char :: shapeless.HNil]->shapeless.IsTuple[Char :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Char]
-
-cats.kernel.Eq[Char]
-2 times = 6ms
-
-
-
-cats.kernel.Eq[Char :: shapeless.HNil]->cats.kernel.Eq[Char]
-
-
-
-
-
-io.circe.Encoder[io.circe.JsonObject]
-
-io.circe.Encoder[io.circe.JsonObject]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, io.circe.Json),List[(String, io.circe.Json)]]
-
-scala.collection.generic.CanBuildFrom[F,(String, io.circe.Json),List[(String, io.circe.Json)]]
-1 times = 1ms
-
-
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-
-((Any, Any) => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-cats.kernel.Eq[io.circe.Decoder[scala.util.Either[io.circe.DecodingFailure,Unit]]]
-
-cats.kernel.Eq[io.circe.Decoder[scala.util.Either[io.circe.DecodingFailure,Unit]]]
-1 times = 22ms
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Unit]]
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Unit]]
-1 times = 20ms
-
-
-
-cats.kernel.Eq[io.circe.Decoder[scala.util.Either[io.circe.DecodingFailure,Unit]]]->cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Unit]]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int),L]
-1 times = 8ms
-
-
-
-String('c') => ?{def :=: ?}
-
-String('c') => ?{def :=: ?}
-1 times = 0ms
-
-
-
-String('asNumber') => ?{def should: ?}
-
-String('asNumber') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('asNumber') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.util.Buildable[Int,Some[Int]]
-
-org.scalacheck.util.Buildable[Int,Some[Int]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,Some[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,Some[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Int,Some[Int]]->scala.collection.generic.CanBuildFrom[F,Int,Some[Int]]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalacheck.Gen[=?Nothing]
-
-((Any, Any, Any) => Nothing) => org.scalacheck.Gen[=?Nothing]
-1 times = 1ms
-
-
-
-cats.laws.discipline.CartesianTests.Isomorphisms[io.circe.Decoder]
-
-cats.laws.discipline.CartesianTests.Isomorphisms[io.circe.Decoder]
-1 times = 1ms
-
-
-
-cats.functor.Invariant[io.circe.Decoder]
-
-cats.functor.Invariant[io.circe.Decoder]
-1 times = 0ms
-
-
-
-cats.laws.discipline.CartesianTests.Isomorphisms[io.circe.Decoder]->cats.functor.Invariant[io.circe.Decoder]
-
-
-
-
-
-cats.Eq[Vector[(String, io.circe.Json)]]
-
-cats.Eq[Vector[(String, io.circe.Json)]]
-4 times = 96ms
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)]
-
-cats.kernel.Eq[(String, io.circe.Json)]
-16 times = 251ms
-
-
-
-cats.Eq[Vector[(String, io.circe.Json)]]->cats.kernel.Eq[(String, io.circe.Json)]
-
-
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)]
-
-cats.kernel.PartialOrder[(String, io.circe.Json)]
-18 times = 117ms
-
-
-
-cats.Eq[Vector[(String, io.circe.Json)]]->cats.kernel.PartialOrder[(String, io.circe.Json)]
-
-
-
-
-
-shapeless.IsTuple[Vector[(String, io.circe.Json)]]
-
-shapeless.IsTuple[Vector[(String, io.circe.Json)]]
-1 times = 0ms
-
-
-
-cats.Eq[Vector[(String, io.circe.Json)]]->shapeless.IsTuple[Vector[(String, io.circe.Json)]]
-
-
-
-
-
-cats.kernel.Order[(String, io.circe.Json)]
-
-cats.kernel.Order[(String, io.circe.Json)]
-20 times = 56ms
-
-
-
-cats.Eq[Vector[(String, io.circe.Json)]]->cats.kernel.Order[(String, io.circe.Json)]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => EncoderSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => EncoderSuite.this.PropertyCheckConfigParam
-4 times = 0ms
-
-
-
-d.type => ?{def isWhole: ?}
-
-d.type => ?{def isWhole: ?}
-1 times = 0ms
-
-
-
-io.circe.Decoder.Result[scala.collection.immutable.Set[Int]] => ?{def ===: ?}
-
-io.circe.Decoder.Result[scala.collection.immutable.Set[Int]] => ?{def ===: ?}
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[List[Int]]
-
-scala.reflect.ClassTag[List[Int]]
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-1 times = 0ms
-
-
-
-String('3') => ?{def asJson: ?}
-
-String('3') => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-Fractional[Symbol]
-
-Fractional[Symbol]
-1 times = 0ms
-
-
-
-org.scalatest.enablers.CheckerAsserting[Any]
-
-org.scalatest.enablers.CheckerAsserting[Any]
-2 times = 0ms
-
-
-
-shapeless.IsTuple[Byte]
-
-shapeless.IsTuple[Byte]
-3 times = 1ms
-
-
-
-Integral[List[io.circe.CursorOp]]
-
-Integral[List[io.circe.CursorOp]]
-2 times = 1ms
-
-
-
-Integral[cats.data.NonEmptyVector[Int]]
-
-Integral[cats.data.NonEmptyVector[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[cats.data.Validated[String,Int]]
-
-org.scalacheck.Shrink[cats.data.Validated[String,Int]]
-1 times = 4ms
-
-
-
-Integral[cats.data.Validated[String,Int]]
-
-Integral[cats.data.Validated[String,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[cats.data.Validated[String,Int]]->Integral[cats.data.Validated[String,Int]]
-
-
-
-
-
-cats.data.Validated[String,Int] => Traversable[(String, Int)]
-
-cats.data.Validated[String,Int] => Traversable[(String, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[cats.data.Validated[String,Int]]->cats.data.Validated[String,Int] => Traversable[(String, Int)]
-
-
-
-
-
-Fractional[cats.data.Validated[String,Int]]
-
-Fractional[cats.data.Validated[String,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[cats.data.Validated[String,Int]]->Fractional[cats.data.Validated[String,Int]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, io.circe.Json)],(String, io.circe.Json),List[(String, io.circe.Json)]]
-
-scala.collection.generic.CanBuildFrom[List[(String, io.circe.Json)],(String, io.circe.Json),List[(String, io.circe.Json)]]
-2 times = 2ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor1[?A]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor1[?A]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Long]
-
-scala.reflect.ClassTag[Long]
-16 times = 10ms
-
-
-
-scala.io.Codec
-
-scala.io.Codec
-2 times = 11ms
-
-
-
-Integral[List[io.circe.Json]]
-
-Integral[List[io.circe.Json]]
-13 times = 17ms
-
-
-
-cats.functor.Contravariant[io.circe.Encoder]
-
-cats.functor.Contravariant[io.circe.Encoder]
-1 times = 5ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 7ms
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.data.NonEmptyVector[Int] => Traversable[Int]
-
-cats.data.NonEmptyVector[Int] => Traversable[Int]
-1 times = 0ms
-
-
-
-String('asString') => ?{def should: ?}
-
-String('asString') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('asString') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Fractional[None.type]
-
-Fractional[None.type]
-1 times = 0ms
-
-
-
-io.circe.Decoder.Result[Int] => ?{def leftMap: ?}
-
-io.circe.Decoder.Result[Int] => ?{def leftMap: ?}
-1 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-cats.Eq[BigInt]
-
-cats.Eq[BigInt]
-1 times = 12ms
-
-
-
-shapeless.IsTuple[BigInt]
-
-shapeless.IsTuple[BigInt]
-1 times = 2ms
-
-
-
-cats.Eq[BigInt]->shapeless.IsTuple[BigInt]
-
-
-
-
-
-String('instanceTry') => ?{def should: ?}
-
-String('instanceTry') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('instanceTry') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Integral[cats.data.NonEmptyList[Either[Int,String]]]
-
-Integral[cats.data.NonEmptyList[Either[Int,String]]]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 17ms
-
-
-
-Unit => Int
-
-Unit => Int
-3 times = 1ms
-
-
-
-(=> Any => Nothing) => ((?A, ?B, ?C) => ?ASSERTION)
-
-(=> Any => Nothing) => ((?A, ?B, ?C) => ?ASSERTION)
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scala.math.BigDecimal]
-
-org.scalacheck.Arbitrary[scala.math.BigDecimal]
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[scala.math.BigDecimal]
-
-scala.reflect.ClassTag[scala.math.BigDecimal]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.math.BigDecimal]->scala.reflect.ClassTag[scala.math.BigDecimal]
-
-
-
-
-
-printed.type => ?{def ===: ?}
-
-printed.type => ?{def ===: ?}
-1 times = 12ms
-
-
-
-cats.Eq[String]
-
-cats.Eq[String]
-11 times = 32ms
-
-
-
-printed.type => ?{def ===: ?}->cats.Eq[String]
-
-
-
-
-
-cats.kernel.Eq[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-
-cats.kernel.Eq[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-1 times = 26ms
-
-
-
-cats.kernel.Order[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-cats.kernel.Order[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-3 times = 8ms
-
-
-
-cats.kernel.Eq[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.kernel.Order[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-4 times = 45ms
-
-
-
-cats.kernel.Eq[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-cats.kernel.Eq[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.PartialOrder[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-cats.kernel.PartialOrder[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-3 times = 17ms
-
-
-
-cats.kernel.Eq[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.kernel.PartialOrder[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 54ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-result.type => ?{def ===: ?}
-
-result.type => ?{def ===: ?}
-1 times = 30ms
-
-
-
-result.type => ?{def ===: ?}->cats.Eq[io.circe.JsonObject]
-
-
-
-
-
-cats.Eq[List[String]]
-
-cats.Eq[List[String]]
-2 times = 26ms
-
-
-
-result.type => ?{def ===: ?}->cats.Eq[List[String]]
-
-
-
-
-
-cats.Eq[Boolean]
-
-cats.Eq[Boolean]
-24 times = 71ms
-
-
-
-result.type => ?{def ===: ?}->cats.Eq[Boolean]
-
-
-
-
-
-cats.Eq[Option[Vector[io.circe.Json]]]
-
-cats.Eq[Option[Vector[io.circe.Json]]]
-2 times = 34ms
-
-
-
-result.type => ?{def ===: ?}->cats.Eq[Option[Vector[io.circe.Json]]]
-
-
-
-
-
-cats.Eq[List[io.circe.Json]]
-
-cats.Eq[List[io.circe.Json]]
-12 times = 111ms
-
-
-
-result.type => ?{def ===: ?}->cats.Eq[List[io.circe.Json]]
-
-
-
-
-
-cats.Eq[Int]
-
-cats.Eq[Int]
-28 times = 79ms
-
-
-
-result.type => ?{def ===: ?}->cats.Eq[Int]
-
-
-
-
-
-cats.Eq[Option[io.circe.Decoder.Result[List[Boolean]]]]
-
-cats.Eq[Option[io.circe.Decoder.Result[List[Boolean]]]]
-4 times = 103ms
-
-
-
-result.type => ?{def ===: ?}->cats.Eq[Option[io.circe.Decoder.Result[List[Boolean]]]]
-
-
-
-
-
-cats.kernel.Order[Char]
-
-cats.kernel.Order[Char]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc22]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc22]
-1 times = 3ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc22]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc22]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc22]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc22]
-
-
-
-
-
-String('emapTry') => ?{def should: ?}
-
-String('emapTry') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('emapTry') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[(Int, String, Char)]
-
-org.scalacheck.Shrink[(Int, String, Char)]
-1 times = 12ms
-
-
-
-Integral[(Int, String, Char)]
-
-Integral[(Int, String, Char)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, String, Char)]->Integral[(Int, String, Char)]
-
-
-
-
-
-org.scalacheck.Shrink[Char]
-
-org.scalacheck.Shrink[Char]
-2 times = 6ms
-
-
-
-org.scalacheck.Shrink[(Int, String, Char)]->org.scalacheck.Shrink[Char]
-
-
-
-
-
-org.scalacheck.Shrink[String]
-
-org.scalacheck.Shrink[String]
-4 times = 10ms
-
-
-
-org.scalacheck.Shrink[(Int, String, Char)]->org.scalacheck.Shrink[String]
-
-
-
-
-
-org.scalacheck.Shrink[Int]
-
-org.scalacheck.Shrink[Int]
-96 times = 389ms
-
-
-
-org.scalacheck.Shrink[(Int, String, Char)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-Fractional[(Int, String, Char)]
-
-Fractional[(Int, String, Char)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, String, Char)]->Fractional[(Int, String, Char)]
-
-
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc7]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc7]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]
-
-scala.collection.generic.CanBuildFrom[Nothing,(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]
-1 times = 3ms
-
-
-
-Ordering[Long]
-
-Ordering[Long]
-3 times = 5ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]->Ordering[Long]
-
-
-
-
-
-io.circe.Decoder.Result[Long] => ?{def ===: ?}
-
-io.circe.Decoder.Result[Long] => ?{def ===: ?}
-1 times = 6ms
-
-
-
-x$15.type => ?{def asJson: ?}
-
-x$15.type => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-Integral[Option[Int]]
-
-Integral[Option[Int]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc12]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc12]
-1 times = 5ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc12]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc12]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc12]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc12]]
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc16]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc16]
-1 times = 5ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc16]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc16]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc16]->shapeless.IsTuple[ProductCodecSuite.this.Cc16]
-
-
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json, Boolean)]
-
-org.scalacheck.Shrink[(String, io.circe.Json, Boolean)]
-1 times = 9ms
-
-
-
-org.scalacheck.Shrink[io.circe.Json]
-
-org.scalacheck.Shrink[io.circe.Json]
-163 times = 56ms
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json, Boolean)]->org.scalacheck.Shrink[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Shrink[Boolean]
-
-org.scalacheck.Shrink[Boolean]
-3 times = 11ms
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json, Boolean)]->org.scalacheck.Shrink[Boolean]
-
-
-
-
-
-Fractional[(String, io.circe.Json, Boolean)]
-
-Fractional[(String, io.circe.Json, Boolean)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json, Boolean)]->Fractional[(String, io.circe.Json, Boolean)]
-
-
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json, Boolean)]->org.scalacheck.Shrink[String]
-
-
-
-
-
-Integral[(String, io.circe.Json, Boolean)]
-
-Integral[(String, io.circe.Json, Boolean)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json, Boolean)]->Integral[(String, io.circe.Json, Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Int]]
-
-org.scalacheck.Arbitrary[List[Int]]
-4 times = 32ms
-
-
-
-org.scalacheck.Arbitrary[List[Int]]->scala.reflect.ClassTag[List[Int]]
-
-
-
-
-
-List[Int] => Traversable[Int]
-
-List[Int] => Traversable[Int]
-4 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[List[Int]]->List[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]]
-
-org.scalacheck.util.Buildable[Int,List[Int]]
-8 times = 9ms
-
-
-
-org.scalacheck.Arbitrary[List[Int]]->org.scalacheck.util.Buildable[Int,List[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-cats.Order[String]
-
-cats.Order[String]
-1 times = 1ms
-
-
-
-field._1.type => ?{def ->: ?}
-
-field._1.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.ArrayEncoder[Int]]
-
-org.scalacheck.Arbitrary[io.circe.ArrayEncoder[Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Cogen[Int]
-
-org.scalacheck.Cogen[Int]
-31 times = 48ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.ArrayEncoder[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-Integral[scala.collection.immutable.Map[Long,Int]]
-
-Integral[scala.collection.immutable.Map[Long,Int]]
-1 times = 1ms
-
-
-
-Fractional[Double]
-
-Fractional[Double]
-9 times = 8ms
-
-
-
-String('contains') => ?{def should: ?}
-
-String('contains') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('contains') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.Eq[Short]
-
-cats.Eq[Short]
-2 times = 6ms
-
-
-
-shapeless.IsTuple[Short]
-
-shapeless.IsTuple[Short]
-3 times = 1ms
-
-
-
-cats.Eq[Short]->shapeless.IsTuple[Short]
-
-
-
-
-
-Seq[Int] => Traversable[Int]
-
-Seq[Int] => Traversable[Int]
-1 times = 2ms
-
-
-
-shapeless.IsTuple[scala.collection.immutable.Map[String,Int]]
-
-shapeless.IsTuple[scala.collection.immutable.Map[String,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(String, Either[Int,String])]
-
-org.scalacheck.Shrink[(String, Either[Int,String])]
-1 times = 17ms
-
-
-
-Integral[(String, Either[Int,String])]
-
-Integral[(String, Either[Int,String])]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(String, Either[Int,String])]->Integral[(String, Either[Int,String])]
-
-
-
-
-
-org.scalacheck.Shrink[Either[Int,String]]
-
-org.scalacheck.Shrink[Either[Int,String]]
-7 times = 62ms
-
-
-
-org.scalacheck.Shrink[(String, Either[Int,String])]->org.scalacheck.Shrink[Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Shrink[(String, Either[Int,String])]->org.scalacheck.Shrink[String]
-
-
-
-
-
-(=> String) => Int
-
-(=> String) => Int
-16 times = 15ms
-
-
-
-scala.reflect.ClassTag[((String, io.circe.Json), Boolean)]
-
-scala.reflect.ClassTag[((String, io.circe.Json), Boolean)]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Map[String,Int]]
-
-scala.reflect.ClassTag[Map[String,Int]]
-4 times = 2ms
-
-
-
-Fractional[Option[Int]]
-
-Fractional[Option[Int]]
-1 times = 0ms
-
-
-
-String('parseFile and decodeFile(Accumulating)') => ?{def should: ?}
-
-String('parseFile and decodeFile(Accumulating)') => ?{def should: ?}
-1 times = 3ms
-
-
-
-String('parseFile and decodeFile(Accumulating)') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Fractional[ProductCodecSuite.this.Cc18]
-
-Fractional[ProductCodecSuite.this.Cc18]
-1 times = 1ms
-
-
-
-String('withObject') => ?{def should: ?}
-
-String('withObject') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('withObject') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[BigInt] => ?{def ===: ?}
-
-Option[BigInt] => ?{def ===: ?}
-1 times = 5ms
-
-
-
-cats.Eq[Option[BigInt]]
-
-cats.Eq[Option[BigInt]]
-2 times = 8ms
-
-
-
-Option[BigInt] => ?{def ===: ?}->cats.Eq[Option[BigInt]]
-
-
-
-
-
-List[io.circe.CursorOp] => ?{def ===: ?}
-
-List[io.circe.CursorOp] => ?{def ===: ?}
-16 times = 182ms
-
-
-
-cats.Eq[List[io.circe.CursorOp]]
-
-cats.Eq[List[io.circe.CursorOp]]
-32 times = 314ms
-
-
-
-List[io.circe.CursorOp] => ?{def ===: ?}->cats.Eq[List[io.circe.CursorOp]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with cats.data.NonEmptyStream[Int]]
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with cats.data.NonEmptyStream[Int]]
-1 times = 0ms
-
-
-
-String => ?{def ->: ?}
-
-String => ?{def ->: ?}
-13 times = 12ms
-
-
-
-String('toByte') => ?{def should: ?}
-
-String('toByte') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('toByte') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[Unit] => ?{def ===: ?}
-
-Option[Unit] => ?{def ===: ?}
-1 times = 5ms
-
-
-
-cats.Eq[Option[Unit]]
-
-cats.Eq[Option[Unit]]
-2 times = 8ms
-
-
-
-Option[Unit] => ?{def ===: ?}->cats.Eq[Option[Unit]]
-
-
-
-
-
-scala.concurrent.Future[List[String]] => PrinterWriterReuseSuite.this.FutureConcept[?]
-
-scala.concurrent.Future[List[String]] => PrinterWriterReuseSuite.this.FutureConcept[?]
-1 times = 2ms
-
-
-
-String('fromDoubleOrString') => ?{def should: ?}
-
-String('fromDoubleOrString') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('fromDoubleOrString') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Fractional[((String, io.circe.Json)) => Boolean]
-
-Fractional[((String, io.circe.Json)) => Boolean]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Map[String,Either[Int,String]]]
-
-org.scalacheck.Shrink[Map[String,Either[Int,String]]]
-1 times = 26ms
-
-
-
-org.scalacheck.Shrink[Map[String,Either[Int,String]]]->org.scalacheck.Shrink[(String, Either[Int,String])]
-
-
-
-
-
-Integral[Map[String,Either[Int,String]]]
-
-Integral[Map[String,Either[Int,String]]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[Map[String,Either[Int,String]]]->Integral[Map[String,Either[Int,String]]]
-
-
-
-
-
-Fractional[Map[String,Either[Int,String]]]
-
-Fractional[Map[String,Either[Int,String]]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[Map[String,Either[Int,String]]]->Fractional[Map[String,Either[Int,String]]]
-
-
-
-
-
-Map[String,Either[Int,String]] => Traversable[(String, Either[Int,String])]
-
-Map[String,Either[Int,String]] => Traversable[(String, Either[Int,String])]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Map[String,Either[Int,String]]]->Map[String,Either[Int,String]] => Traversable[(String, Either[Int,String])]
-
-
-
-
-
-org.scalacheck.util.Buildable[(String, Either[Int,String]),Map[String,Either[Int,String]]]
-
-org.scalacheck.util.Buildable[(String, Either[Int,String]),Map[String,Either[Int,String]]]
-2 times = 3ms
-
-
-
-org.scalacheck.Shrink[Map[String,Either[Int,String]]]->org.scalacheck.util.Buildable[(String, Either[Int,String]),Map[String,Either[Int,String]]]
-
-
-
-
-
-Either[io.circe.Error,io.circe.Json] => ?{def ===: ?}
-
-Either[io.circe.Error,io.circe.Json] => ?{def ===: ?}
-2 times = 4ms
-
-
-
-cats.Eq[Option[List[String]]]
-
-cats.Eq[Option[List[String]]]
-2 times = 19ms
-
-
-
-cats.kernel.Order[List[String]]
-
-cats.kernel.Order[List[String]]
-2 times = 2ms
-
-
-
-cats.Eq[Option[List[String]]]->cats.kernel.Order[List[String]]
-
-
-
-
-
-cats.kernel.Eq[List[String]]
-
-cats.kernel.Eq[List[String]]
-2 times = 10ms
-
-
-
-cats.Eq[Option[List[String]]]->cats.kernel.Eq[List[String]]
-
-
-
-
-
-io.circe.Decoder[io.circe.JsonObject]
-
-io.circe.Decoder[io.circe.JsonObject]
-1 times = 2ms
-
-
-
-io.circe.Decoder[String]
-
-io.circe.Decoder[String]
-282 times = 998ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],(io.circe.Json, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],(io.circe.Json, Int),That]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Option[Int]]
-
-org.scalacheck.Arbitrary[Option[Int]]
-1 times = 10ms
-
-
-
-org.scalacheck.util.Buildable[Int,Option[Int]]
-
-org.scalacheck.util.Buildable[Int,Option[Int]]
-2 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[Option[Int]]->org.scalacheck.util.Buildable[Int,Option[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[Option[Int]]
-
-scala.reflect.ClassTag[Option[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Option[Int]]->scala.reflect.ClassTag[Option[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-17 times = 627ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-18 times = 566ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-io.circe.Decoder[BigDecimal]
-
-io.circe.Decoder[BigDecimal]
-1 times = 3ms
-
-
-
-cats.Eq[List[String]]->cats.kernel.Order[String]
-
-
-
-
-
-shapeless.IsTuple[List[String]]
-
-shapeless.IsTuple[List[String]]
-1 times = 0ms
-
-
-
-cats.Eq[List[String]]->shapeless.IsTuple[List[String]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int)]
-1 times = 31ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json)]
-
-org.scalacheck.Arbitrary[(String, io.circe.Json)]
-6 times = 40ms
-
-
-
-org.scalacheck.Arbitrary[String]
-
-org.scalacheck.Arbitrary[String]
-291 times = 1486ms
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-scala.reflect.ClassTag[(String, io.circe.Json)]
-
-scala.reflect.ClassTag[(String, io.circe.Json)]
-6 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json)]->scala.reflect.ClassTag[(String, io.circe.Json)]
-
-
-
-
-
-org.scalacheck.Arbitrary[io.circe.Json]
-
-org.scalacheck.Arbitrary[io.circe.Json]
-165 times = 104ms
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json)]->org.scalacheck.Arbitrary[io.circe.Json]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-1 times = 0ms
-
-
-
-((Any, Any, Any) => Nothing) => EncoderSuite.this.PropertyCheckConfigParam
-
-((Any, Any, Any) => Nothing) => EncoderSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => (?A => ?ASSERTION)
-
-(=> (Any, Any, Any) => Nothing) => (?A => ?ASSERTION)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.DecodingFailure]
-
-org.scalacheck.Arbitrary[io.circe.DecodingFailure]
-2 times = 0ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,Int]]
-
-io.circe.Encoder[scala.collection.immutable.Map[String,Int]]
-1 times = 3ms
-
-
-
-io.circe.KeyEncoder[String]
-
-io.circe.KeyEncoder[String]
-8 times = 2ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,Int]]->io.circe.KeyEncoder[String]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc12]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc12]
-1 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.math.BigInt]
-
-org.scalacheck.Arbitrary[scala.math.BigInt]
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[scala.math.BigInt]
-
-scala.reflect.ClassTag[scala.math.BigInt]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.math.BigInt]->scala.reflect.ClassTag[scala.math.BigInt]
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Unit]]
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Unit]]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[Unit]
-
-org.scalacheck.Arbitrary[Unit]
-5 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Unit]]->org.scalacheck.Arbitrary[Unit]
-
-
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc10]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc10]
-1 times = 1ms
-
-
-
-WeekDay$1.Fri.type => ?{def asJson: ?}
-
-WeekDay$1.Fri.type => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 49ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-Integral[Long]
-
-Integral[Long]
-16 times = 22ms
-
-
-
-Fractional[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-
-Fractional[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int)]
-4 times = 153ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil]
-23 times = 453ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int)]
-4 times = 3ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int)]
-
-
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc19]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc19]
-1 times = 5ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc19]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc19]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc19]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc19]]
-
-
-
-
-
-org.scalacheck.Cogen[(String, io.circe.Json)]
-
-org.scalacheck.Cogen[(String, io.circe.Json)]
-1 times = 3ms
-
-
-
-org.scalacheck.Cogen[io.circe.Json]
-
-org.scalacheck.Cogen[io.circe.Json]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(String, io.circe.Json)]->org.scalacheck.Cogen[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Cogen[String]
-
-org.scalacheck.Cogen[String]
-2 times = 2ms
-
-
-
-org.scalacheck.Cogen[(String, io.circe.Json)]->org.scalacheck.Cogen[String]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],Some[io.circe.Json],That]
-
-scala.collection.generic.CanBuildFrom[List[Any],Some[io.circe.Json],That]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 45ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc8]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc8]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc8]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc8]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc8]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc8]]
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc19]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc19]
-1 times = 1ms
-
-
-
-shapeless.Generic.Aux[Unit,L]
-
-shapeless.Generic.Aux[Unit,L]
-1 times = 5ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc9]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc9]
-1 times = 8ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc9]
-
-Fractional[ProductCodecSuite.this.Cc9]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc9]->Fractional[ProductCodecSuite.this.Cc9]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc9]
-
-Integral[ProductCodecSuite.this.Cc9]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc9]->Integral[ProductCodecSuite.this.Cc9]
-
-
-
-
-
-cats.kernel.PartialOrder[Char]
-
-cats.kernel.PartialOrder[Char]
-1 times = 1ms
-
-
-
-shapeless.IsTuple[shapeless.HNil]
-
-shapeless.IsTuple[shapeless.HNil]
-8 times = 4ms
-
-
-
-cats.kernel.Eq[shapeless.HNil]->shapeless.IsTuple[shapeless.HNil]
-
-
-
-
-
-Integral[Either[Int,String]]
-
-Integral[Either[Int,String]]
-7 times = 6ms
-
-
-
-(Any => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-8 times = 1ms
-
-
-
-io.circe.Encoder[(Int, Int)]
-
-io.circe.Encoder[(Int, Int)]
-1 times = 13ms
-
-
-
-io.circe.Encoder[(Int, Int)]->io.circe.KeyEncoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-((Int, Int)) => Iterable[(Int, Int)]
-
-((Int, Int)) => Iterable[(Int, Int)]
-1 times = 1ms
-
-
-
-io.circe.Encoder[(Int, Int)]->((Int, Int)) => Iterable[(Int, Int)]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[io.circe.ACursor]
-
-shapeless.IsTuple[io.circe.ACursor]
-2 times = 1ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc3]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc3]
-1 times = 6ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc3]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc3]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc3]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc3]]
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc7]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc7]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc7]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc7]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc7]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc7]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,String,Array[String]]
-
-scala.collection.generic.CanBuildFrom[F,String,Array[String]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[String]
-
-scala.reflect.ClassTag[String]
-292 times = 317ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,String,Array[String]]->scala.reflect.ClassTag[String]
-
-
-
-
-
-shapeless.IsTuple[Boolean]
-
-shapeless.IsTuple[Boolean]
-5 times = 3ms
-
-
-
-cats.Eq[Boolean]->shapeless.IsTuple[Boolean]
-
-
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc9]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc9]
-1 times = 1ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[List[Int]]
-
-org.scalacheck.Shrink[List[Int]]
-4 times = 28ms
-
-
-
-Integral[List[Int]]
-
-Integral[List[Int]]
-4 times = 3ms
-
-
-
-org.scalacheck.Shrink[List[Int]]->Integral[List[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[List[Int]]->List[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.Shrink[List[Int]]->org.scalacheck.util.Buildable[Int,List[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[List[Int]]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 5ms
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[Float]
-
-org.scalacheck.Shrink[Float]
-10 times = 34ms
-
-
-
-Fractional[Float]
-
-Fractional[Float]
-10 times = 9ms
-
-
-
-org.scalacheck.Shrink[Float]->Fractional[Float]
-
-
-
-
-
-Integral[Float]
-
-Integral[Float]
-10 times = 8ms
-
-
-
-org.scalacheck.Shrink[Float]->Integral[Float]
-
-
-
-
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C) => ?ASSERTION)
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C) => ?ASSERTION)
-1 times = 2ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 119ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 15ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-10 times = 738ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 60ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-Integral[(Int,)]
-
-Integral[(Int,)]
-1 times = 1ms
-
-
-
-cats.Eq[(Int, String, Char)]
-
-cats.Eq[(Int, String, Char)]
-1 times = 5ms
-
-
-
-cats.Eq[(Int, String, Char)]->cats.kernel.Order[Char]
-
-
-
-
-
-cats.Eq[(Int, String, Char)]->cats.kernel.Order[String]
-
-
-
-
-
-cats.Eq[(Int, String, Char)]->cats.kernel.Order[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Float]
-
-org.scalacheck.Arbitrary[Float]
-10 times = 25ms
-
-
-
-scala.reflect.ClassTag[Float]
-
-scala.reflect.ClassTag[Float]
-10 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[Float]->scala.reflect.ClassTag[Float]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc7]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc7]
-1 times = 6ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc7]
-
-Fractional[ProductCodecSuite.this.Cc7]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc7]->Fractional[ProductCodecSuite.this.Cc7]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc7]
-
-Integral[ProductCodecSuite.this.Cc7]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc7]->Integral[ProductCodecSuite.this.Cc7]
-
-
-
-
-
-Integral[Short]
-
-Integral[Short]
-4 times = 3ms
-
-
-
-ShowErrorSuite.this.PropertyCheckConfigurable
-
-ShowErrorSuite.this.PropertyCheckConfigurable
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, io.circe.Json)],(String, io.circe.Json),That]
-
-scala.collection.generic.CanBuildFrom[List[(String, io.circe.Json)],(String, io.circe.Json),That]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc1]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc1]
-1 times = 7ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc1]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc1]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc1]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc1]]
-
-
-
-
-
-io.circe.Encoder[cats.data.NonEmptyStream[Int]]
-
-io.circe.Encoder[cats.data.NonEmptyStream[Int]]
-1 times = 7ms
-
-
-
-Stream[Int] => Iterable[Int]
-
-Stream[Int] => Iterable[Int]
-1 times = 0ms
-
-
-
-io.circe.Encoder[cats.data.NonEmptyStream[Int]]->Stream[Int] => Iterable[Int]
-
-
-
-
-
-io.circe.Encoder[cats.data.NonEmptyStream[Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-cats.data.NonEmptyStream[Int] => Iterable[Int]
-
-cats.data.NonEmptyStream[Int] => Iterable[Int]
-1 times = 1ms
-
-
-
-io.circe.Encoder[cats.data.NonEmptyStream[Int]]->cats.data.NonEmptyStream[Int] => Iterable[Int]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc5]
-
-Integral[ProductCodecSuite.this.Cc5]
-1 times = 1ms
-
-
-
-cats.kernel.Order[io.circe.JsonObject]
-
-cats.kernel.Order[io.circe.JsonObject]
-6 times = 4ms
-
-
-
-cats.kernel.Eq[io.circe.Decoder[(Int, Int, Int)]]
-
-cats.kernel.Eq[io.circe.Decoder[(Int, Int, Int)]]
-1 times = 37ms
-
-
-
-cats.kernel.Eq[io.circe.Decoder[(Int, Int, Int)]]->cats.kernel.Eq[(Int, Int, Int)]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => String
-
-(=> (Any, Any) => Nothing) => String
-21 times = 7ms
-
-
-
-String('Decoder[Enumeration]') => ?{def should: ?}
-
-String('Decoder[Enumeration]') => ?{def should: ?}
-2 times = 2ms
-
-
-
-String('Decoder[Enumeration]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc1]
-
-Integral[ProductCodecSuite.this.Cc1]
-1 times = 2ms
-
-
-
-String('b') => ?{def :=: ?}
-
-String('b') => ?{def :=: ?}
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Long]
-
-org.scalacheck.Shrink[Long]
-16 times = 68ms
-
-
-
-org.scalacheck.Shrink[Long]->Fractional[Long]
-
-
-
-
-
-org.scalacheck.Shrink[Long]->Integral[Long]
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc11]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc11]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[Int]]
-
-cats.kernel.Eq[io.circe.KeyDecoder[Int]]
-4 times = 18ms
-
-
-
-shapeless.IsTuple[io.circe.KeyDecoder[Int]]
-
-shapeless.IsTuple[io.circe.KeyDecoder[Int]]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[Int]]->shapeless.IsTuple[io.circe.KeyDecoder[Int]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.util.Either[Int,String]]
-
-org.scalacheck.Arbitrary[scala.util.Either[Int,String]]
-1 times = 18ms
-
-
-
-org.scalacheck.util.Buildable[(Int, String),scala.util.Either[Int,String]]
-
-org.scalacheck.util.Buildable[(Int, String),scala.util.Either[Int,String]]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scala.util.Either[Int,String]]->org.scalacheck.util.Buildable[(Int, String),scala.util.Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.util.Either[Int,String]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, String)]
-
-org.scalacheck.Arbitrary[(Int, String)]
-1 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[scala.util.Either[Int,String]]->org.scalacheck.Arbitrary[(Int, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.util.Either[Int,String]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[scala.util.Either[Int,String]]
-
-scala.reflect.ClassTag[scala.util.Either[Int,String]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.util.Either[Int,String]]->scala.reflect.ClassTag[scala.util.Either[Int,String]]
-
-
-
-
-
-String('fromDouble') => ?{def should: ?}
-
-String('fromDouble') => ?{def should: ?}
-2 times = 2ms
-
-
-
-String('fromDouble') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.ApplicativeError[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-cats.ApplicativeError[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure]]
-1 times = 6ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-((Any, Any, Any) => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-
-((Any, Any, Any) => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(String, Int)]
-
-scala.reflect.ClassTag[(String, Int)]
-4 times = 2ms
-
-
-
-(Any => Nothing) => ((?A, ?B) => ?ASSERTION)
-
-(Any => Nothing) => ((?A, ?B) => ?ASSERTION)
-1 times = 0ms
-
-
-
-Integral[Boolean]
-
-Integral[Boolean]
-3 times = 2ms
-
-
-
-String('A JSON array') => ?{def should: ?}
-
-String('A JSON array') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('A JSON array') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Order[Vector[io.circe.Json]]
-
-cats.kernel.Order[Vector[io.circe.Json]]
-2 times = 3ms
-
-
-
-cats.Eq[Option[Vector[io.circe.Json]]]->cats.kernel.Order[Vector[io.circe.Json]]
-
-
-
-
-
-cats.kernel.PartialOrder[Vector[io.circe.Json]]
-
-cats.kernel.PartialOrder[Vector[io.circe.Json]]
-10 times = 42ms
-
-
-
-cats.Eq[Option[Vector[io.circe.Json]]]->cats.kernel.PartialOrder[Vector[io.circe.Json]]
-
-
-
-
-
-cats.kernel.Eq[Vector[io.circe.Json]]
-
-cats.kernel.Eq[Vector[io.circe.Json]]
-10 times = 83ms
-
-
-
-cats.Eq[Option[Vector[io.circe.Json]]]->cats.kernel.Eq[Vector[io.circe.Json]]
-
-
-
-
-
-cats.Eq[scala.collection.immutable.Set[Int]]
-
-cats.Eq[scala.collection.immutable.Set[Int]]
-1 times = 3ms
-
-
-
-shapeless.IsTuple[scala.collection.immutable.Set[Int]]
-
-shapeless.IsTuple[scala.collection.immutable.Set[Int]]
-2 times = 1ms
-
-
-
-cats.Eq[scala.collection.immutable.Set[Int]]->shapeless.IsTuple[scala.collection.immutable.Set[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[(String, io.circe.Json)]]
-
-org.scalacheck.Arbitrary[List[(String, io.circe.Json)]]
-5 times = 56ms
-
-
-
-org.scalacheck.Arbitrary[List[(String, io.circe.Json)]]->org.scalacheck.Arbitrary[(String, io.circe.Json)]
-
-
-
-
-
-scala.reflect.ClassTag[List[(String, io.circe.Json)]]
-
-scala.reflect.ClassTag[List[(String, io.circe.Json)]]
-5 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[List[(String, io.circe.Json)]]->scala.reflect.ClassTag[List[(String, io.circe.Json)]]
-
-
-
-
-
-org.scalacheck.util.Buildable[(String, io.circe.Json),List[(String, io.circe.Json)]]
-
-org.scalacheck.util.Buildable[(String, io.circe.Json),List[(String, io.circe.Json)]]
-10 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[List[(String, io.circe.Json)]]->org.scalacheck.util.Buildable[(String, io.circe.Json),List[(String, io.circe.Json)]]
-
-
-
-
-
-List[(String, io.circe.Json)] => Traversable[(String, io.circe.Json)]
-
-List[(String, io.circe.Json)] => Traversable[(String, io.circe.Json)]
-5 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[List[(String, io.circe.Json)]]->List[(String, io.circe.Json)] => Traversable[(String, io.circe.Json)]
-
-
-
-
-
-String('encodeVector') => ?{def should: ?}
-
-String('encodeVector') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('encodeVector') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Int],io.circe.Json,Vector[io.circe.Json]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Int],io.circe.Json,Vector[io.circe.Json]]
-1 times = 0ms
-
-
-
-((Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-
-((Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-1 times = 0ms
-
-
-
-Int(2) => ?{def asJson: ?}
-
-Int(2) => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-StdLibCodecSuite.this.PropertyCheckConfigurable
-
-StdLibCodecSuite.this.PropertyCheckConfigurable
-3 times = 1ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Order[Long]
-
-cats.kernel.Order[Long]
-23 times = 18ms
-
-
-
-Integral[(Byte, Int)]
-
-Integral[(Byte, Int)]
-1 times = 0ms
-
-
-
-cats.Eq[Option[Int]]
-
-cats.Eq[Option[Int]]
-4 times = 22ms
-
-
-
-cats.Eq[Option[Int]]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.Eq[Option[Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 48ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[String,Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[String,Int]]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-1 times = 0ms
-
-
-
-String('kleisli') => ?{def should: ?}
-
-String('kleisli') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('kleisli') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[Either[Unit,Int]]
-
-cats.kernel.Eq[Either[Unit,Int]]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[Either[Unit,Int]]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Order[Unit]
-
-cats.kernel.Order[Unit]
-6 times = 4ms
-
-
-
-cats.kernel.Eq[Either[Unit,Int]]->cats.kernel.Order[Unit]
-
-
-
-
-
-cats.Eq[scala.collection.immutable.Set[B]]
-
-cats.Eq[scala.collection.immutable.Set[B]]
-1 times = 2ms
-
-
-
-shapeless.IsTuple[scala.collection.immutable.Set[B]]
-
-shapeless.IsTuple[scala.collection.immutable.Set[B]]
-1 times = 7ms
-
-
-
-cats.Eq[scala.collection.immutable.Set[B]]->shapeless.IsTuple[scala.collection.immutable.Set[B]]
-
-
-
-
-
-List[io.circe.Json] => Traversable[io.circe.Json]
-
-List[io.circe.Json] => Traversable[io.circe.Json]
-13 times = 9ms
-
-
-
-cats.Order[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]]
-
-cats.Order[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]]
-1 times = 1ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc22]
-
-Fractional[ProductCodecSuite.this.Cc22]
-1 times = 1ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-1 times = 0ms
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-String('JsonObject.fromFoldable') => ?{def should: ?}
-
-String('JsonObject.fromFoldable') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('JsonObject.fromFoldable') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('A JSON object') => ?{def should: ?}
-
-String('A JSON object') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('A JSON object') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-shapeless.IsTuple[scala.math.BigDecimal]
-
-shapeless.IsTuple[scala.math.BigDecimal]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int)]
-6 times = 57ms
-
-
-
-scala.reflect.ClassTag[(Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int)]
-6 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)]->scala.reflect.ClassTag[(Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Int, String),Either[Int,String]]
-
-scala.collection.generic.CanBuildFrom[F,(Int, String),Either[Int,String]]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc10]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc10]]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-1 times = 0ms
-
-
-
-Integral[scala.collection.immutable.Map[Symbol,Int]]
-
-Integral[scala.collection.immutable.Map[Symbol,Int]]
-1 times = 1ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc5]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc5]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc5]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc5]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc5]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc5]]
-
-
-
-
-
-String('a') => ?{def :=: ?}
-
-String('a') => ?{def :=: ?}
-1 times = 0ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc6]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc6]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 46ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,Seq[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,Seq[Int]]
-1 times = 1ms
-
-
-
-shapeless.IsTuple[Option[io.circe.JsonNumber]]
-
-shapeless.IsTuple[Option[io.circe.JsonNumber]]
-2 times = 1ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc11]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc11]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc11]->shapeless.IsTuple[ProductCodecSuite.this.Cc11]
-
-
-
-
-
-cats.kernel.Eq[Unit]
-
-cats.kernel.Eq[Unit]
-4 times = 42ms
-
-
-
-cats.kernel.Eq[Unit]->shapeless.Generic.Aux[Unit,L]
-
-
-
-
-
-cats.kernel.Eq[Unit]->cats.kernel.Eq[shapeless.HNil]
-
-
-
-
-
-shapeless.IsTuple[Unit]
-
-shapeless.IsTuple[Unit]
-4 times = 3ms
-
-
-
-cats.kernel.Eq[Unit]->shapeless.IsTuple[Unit]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 13ms
-
-
-
-cats.kernel.Eq[Option[io.circe.Json]]
-
-cats.kernel.Eq[Option[io.circe.Json]]
-8 times = 67ms
-
-
-
-cats.kernel.Order[io.circe.Json]
-
-cats.kernel.Order[io.circe.Json]
-250 times = 197ms
-
-
-
-cats.kernel.Eq[Option[io.circe.Json]]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Json]
-
-cats.kernel.Eq[io.circe.Json]
-179 times = 571ms
-
-
-
-cats.kernel.Eq[Option[io.circe.Json]]->cats.kernel.Eq[io.circe.Json]
-
-
-
-
-
-cats.kernel.PartialOrder[io.circe.Json]
-
-cats.kernel.PartialOrder[io.circe.Json]
-210 times = 276ms
-
-
-
-cats.kernel.Eq[Option[io.circe.Json]]->cats.kernel.PartialOrder[io.circe.Json]
-
-
-
-
-
-shapeless.IsTuple[Option[io.circe.Json]]
-
-shapeless.IsTuple[Option[io.circe.Json]]
-3 times = 2ms
-
-
-
-cats.kernel.Eq[Option[io.circe.Json]]->shapeless.IsTuple[Option[io.circe.Json]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,io.circe.Json,Vector[io.circe.Json]]
-
-scala.collection.generic.CanBuildFrom[F,io.circe.Json,Vector[io.circe.Json]]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-String('emap') => ?{def should: ?}
-
-String('emap') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('emap') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc8]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc8]
-1 times = 1ms
-
-
-
-cats.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-cats.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-3 times = 39ms
-
-
-
-cats.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]->cats.Eq[io.circe.DecodingFailure]
-
-
-
-
-
-cats.Order[io.circe.DecodingFailure]
-
-cats.Order[io.circe.DecodingFailure]
-13 times = 19ms
-
-
-
-cats.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]->cats.Order[io.circe.DecodingFailure]
-
-
-
-
-
-shapeless.IsTuple[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-shapeless.IsTuple[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-7 times = 4ms
-
-
-
-cats.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]->shapeless.IsTuple[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-cats.PartialOrder[io.circe.DecodingFailure]
-
-cats.PartialOrder[io.circe.DecodingFailure]
-10 times = 21ms
-
-
-
-cats.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]->cats.PartialOrder[io.circe.DecodingFailure]
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-1 times = 0ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc20]
-
-Fractional[ProductCodecSuite.this.Cc20]
-1 times = 1ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-1 times = 0ms
-
-
-
-cats.kernel.Order[Vector[io.circe.Json]]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-1 times = 0ms
-
-
-
-io.circe.Encoder[String]
-
-io.circe.Encoder[String]
-8 times = 13ms
-
-
-
-org.scalacheck.Shrink[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-
-org.scalacheck.Shrink[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-1 times = 3ms
-
-
-
-org.scalacheck.Shrink[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]->Fractional[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-
-
-
-
-
-Integral[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-
-Integral[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]->Integral[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-
-
-
-
-
-shapeless.IsTuple[io.circe.Decoder[Int]]
-
-shapeless.IsTuple[io.circe.Decoder[Int]]
-1 times = 0ms
-
-
-
-String('encodeList') => ?{def should: ?}
-
-String('encodeList') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('encodeList') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('up') => ?{def should: ?}
-
-String('up') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('up') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.reflect.ClassTag[Byte]
-
-scala.reflect.ClassTag[Byte]
-10 times = 8ms
-
-
-
-(=> (Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String)
-
-(=> (Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String)
-1 times = 1ms
-
-
-
-io.circe.Decoder[(Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int)]
-1 times = 13ms
-
-
-
-io.circe.Decoder[(Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int)]]
-
-
-
-
-
-String => scala.collection.GenTraversableOnce[?]
-
-String => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Either[Int,String]],io.circe.Json,That]
-
-scala.collection.generic.CanBuildFrom[List[Either[Int,String]],io.circe.Json,That]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 18ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Stream[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Stream[Int]]
-1 times = 0ms
-
-
-
-String('A JSON string') => ?{def should: ?}
-
-String('A JSON string') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('A JSON string') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Decoder[Float]
-
-io.circe.Decoder[Float]
-2 times = 4ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-
-(=> (Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-1 times = 0ms
-
-
-
-String('d') => ?{def ->: ?}
-
-String('d') => ?{def ->: ?}
-3 times = 2ms
-
-
-
-io.circe.Encoder[List[Int]]
-
-io.circe.Encoder[List[Int]]
-7 times = 22ms
-
-
-
-io.circe.Encoder[List[Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-
-(Any => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-1 times = 1ms
-
-
-
-cats.kernel.Order[cats.data.NonEmptyList[io.circe.DecodingFailure]]->cats.Order[io.circe.DecodingFailure]
-
-
-
-
-
-io.circe.Decoder.Result[BigInt] => ?{def isEmpty: ?}
-
-io.circe.Decoder.Result[BigInt] => ?{def isEmpty: ?}
-1 times = 1ms
-
-
-
-cats.Foldable[io.circe.Decoder.Result]
-
-cats.Foldable[io.circe.Decoder.Result]
-20 times = 13ms
-
-
-
-io.circe.Decoder.Result[BigInt] => ?{def isEmpty: ?}->cats.Foldable[io.circe.Decoder.Result]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc3]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc3]]
-1 times = 0ms
-
-
-
-cats.kernel.PartialOrder[io.circe.CursorOp]
-
-cats.kernel.PartialOrder[io.circe.CursorOp]
-32 times = 43ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc11]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc11]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Symbol]
-
-org.scalacheck.Arbitrary[Symbol]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.collection.mutable.HashMap[Long,Int]]
-
-scala.reflect.ClassTag[scala.collection.mutable.HashMap[Long,Int]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with Option[Int]]
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with Option[Int]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[BigDecimal]
-
-io.circe.Encoder[BigDecimal]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc2]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc2]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Symbol, Int)]
-
-org.scalacheck.Shrink[(Symbol, Int)]
-1 times = 10ms
-
-
-
-org.scalacheck.Shrink[(Symbol, Int)]->Integral[(Symbol, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[Symbol]
-
-org.scalacheck.Shrink[Symbol]
-1 times = 4ms
-
-
-
-org.scalacheck.Shrink[(Symbol, Int)]->org.scalacheck.Shrink[Symbol]
-
-
-
-
-
-org.scalacheck.Shrink[(Symbol, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-Double(200.2) => ?{def asJson: ?}
-
-Double(200.2) => ?{def asJson: ?}
-2 times = 1ms
-
-
-
-org.scalacheck.util.Buildable[io.circe.CursorOp,List[io.circe.CursorOp]]
-
-org.scalacheck.util.Buildable[io.circe.CursorOp,List[io.circe.CursorOp]]
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,io.circe.CursorOp,List[io.circe.CursorOp]]
-
-scala.collection.generic.CanBuildFrom[F,io.circe.CursorOp,List[io.circe.CursorOp]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[io.circe.CursorOp,List[io.circe.CursorOp]]->scala.collection.generic.CanBuildFrom[F,io.circe.CursorOp,List[io.circe.CursorOp]]
-
-
-
-
-
-Int(4) => ?{def asJson: ?}
-
-Int(4) => ?{def asJson: ?}
-4 times = 2ms
-
-
-
-io.circe.Decoder[(Int, String, Double)]
-
-io.circe.Decoder[(Int, String, Double)]
-1 times = 8ms
-
-
-
-io.circe.Decoder[(Int, String, Double)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, String, Double)]->io.circe.Decoder[String]
-
-
-
-
-
-io.circe.Decoder[Double]
-
-io.circe.Decoder[Double]
-3 times = 5ms
-
-
-
-io.circe.Decoder[(Int, String, Double)]->io.circe.Decoder[Double]
-
-
-
-
-
-io.circe.Encoder[Map[Symbol,Int]]
-
-io.circe.Encoder[Map[Symbol,Int]]
-1 times = 2ms
-
-
-
-io.circe.Encoder[Map[Symbol,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.KeyEncoder[Symbol]
-
-io.circe.KeyEncoder[Symbol]
-1 times = 0ms
-
-
-
-io.circe.Encoder[Map[Symbol,Int]]->io.circe.KeyEncoder[Symbol]
-
-
-
-
-
-org.scalacheck.Arbitrary[io.circe.JsonNumber]
-
-org.scalacheck.Arbitrary[io.circe.JsonNumber]
-1 times = 0ms
-
-
-
-io.circe.Encoder[Short]
-
-io.circe.Encoder[Short]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Byte, Int)]
-
-org.scalacheck.Arbitrary[(Byte, Int)]
-1 times = 8ms
-
-
-
-scala.reflect.ClassTag[(Byte, Int)]
-
-scala.reflect.ClassTag[(Byte, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Byte, Int)]->scala.reflect.ClassTag[(Byte, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Byte]
-
-org.scalacheck.Arbitrary[Byte]
-9 times = 35ms
-
-
-
-org.scalacheck.Arbitrary[(Byte, Int)]->org.scalacheck.Arbitrary[Byte]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Byte, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-1 times = 0ms
-
-
-
-Option[io.circe.JsonNumber] => ?{def ===: ?}
-
-Option[io.circe.JsonNumber] => ?{def ===: ?}
-4 times = 43ms
-
-
-
-cats.Eq[Option[io.circe.JsonNumber]]
-
-cats.Eq[Option[io.circe.JsonNumber]]
-8 times = 77ms
-
-
-
-Option[io.circe.JsonNumber] => ?{def ===: ?}->cats.Eq[Option[io.circe.JsonNumber]]
-
-
-
-
-
-Option[List[String]] => ?{def ===: ?}
-
-Option[List[String]] => ?{def ===: ?}
-1 times = 10ms
-
-
-
-Option[List[String]] => ?{def ===: ?}->cats.Eq[Option[List[String]]]
-
-
-
-
-
-(Any => Nothing) => AccumulatingDecoderSpec.this.PropertyCheckConfigParam
-
-(Any => Nothing) => AccumulatingDecoderSpec.this.PropertyCheckConfigParam
-6 times = 1ms
-
-
-
-shapeless.IsTuple[cats.data.EitherT[io.circe.Decoder,io.circe.DecodingFailure,Int]]
-
-shapeless.IsTuple[cats.data.EitherT[io.circe.Decoder,io.circe.DecodingFailure,Int]]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[cats.data.NonEmptyList[Int]]
-
-shapeless.IsTuple[cats.data.NonEmptyList[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Int,Seq[Int]]
-
-org.scalacheck.util.Buildable[Int,Seq[Int]]
-1 times = 25ms
-
-
-
-org.scalacheck.util.Buildable[Int,Seq[Int]]->scala.collection.generic.CanBuildFrom[F,Int,Seq[Int]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Stream[Int]]
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Stream[Int]]
-1 times = 0ms
-
-
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Int => Int]
-
-scala.reflect.ClassTag[Int => Int]
-6 times = 4ms
-
-
-
-scala.reflect.ClassTag[(java.util.UUID, Int)]
-
-scala.reflect.ClassTag[(java.util.UUID, Int)]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc3]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc3]
-1 times = 1ms
-
-
-
-Vector[(String, io.circe.Json)] => ?{def ===: ?}
-
-Vector[(String, io.circe.Json)] => ?{def ===: ?}
-2 times = 51ms
-
-
-
-Vector[(String, io.circe.Json)] => ?{def ===: ?}->cats.Eq[Vector[(String, io.circe.Json)]]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-shapeless.IsTuple[Option[Unit]]
-
-shapeless.IsTuple[Option[Unit]]
-1 times = 0ms
-
-
-
-cats.functor.Contravariant[io.circe.ArrayEncoder]
-
-cats.functor.Contravariant[io.circe.ArrayEncoder]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Int,Int]]
-
-cats.kernel.Eq[scala.collection.immutable.Map[Int,Int]]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Int,Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int)]
-1 times = 10ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-org.scalacheck.Shrink[Option[Int]]
-
-org.scalacheck.Shrink[Option[Int]]
-1 times = 12ms
-
-
-
-org.scalacheck.Shrink[Option[Int]]->Integral[Option[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[Option[Int]]->Fractional[Option[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[Option[Int]]->org.scalacheck.util.Buildable[Int,Option[Int]]
-
-
-
-
-
-Option[Int] => Traversable[Int]
-
-Option[Int] => Traversable[Int]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Option[Int]]->Option[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.Shrink[Option[Int]]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-String('a') => ?{def ->: ?}
-
-String('a') => ?{def ->: ?}
-12 times = 12ms
-
-
-
-Either[io.circe.ParsingFailure,io.circe.Json] => ?{def ===: ?}
-
-Either[io.circe.ParsingFailure,io.circe.Json] => ?{def ===: ?}
-2 times = 5ms
-
-
-
-cats.Eq[Option[String]]
-
-cats.Eq[Option[String]]
-8 times = 30ms
-
-
-
-cats.Eq[Option[String]]->cats.kernel.Order[String]
-
-
-
-
-
-shapeless.IsTuple[Option[String]]
-
-shapeless.IsTuple[Option[String]]
-1 times = 0ms
-
-
-
-cats.Eq[Option[String]]->shapeless.IsTuple[Option[String]]
-
-
-
-
-
-Integral[(Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[Bomb$3]]
-
-io.circe.export.Exported[io.circe.Decoder[Bomb$3]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.SortedMap[Long,Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.SortedMap[Long,Int]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Char]
-
-scala.reflect.ClassTag[Char]
-2 times = 1ms
-
-
-
-Integral[io.circe.tests.examples.Foo]
-
-Integral[io.circe.tests.examples.Foo]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Int]]
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Int]]
-4 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-io.circe.Encoder[List[Boolean]]
-
-io.circe.Encoder[List[Boolean]]
-3 times = 9ms
-
-
-
-io.circe.Encoder[Boolean]
-
-io.circe.Encoder[Boolean]
-7 times = 11ms
-
-
-
-io.circe.Encoder[List[Boolean]]->io.circe.Encoder[Boolean]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[io.circe.Json],(io.circe.Json, Int),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[io.circe.Json],(io.circe.Json, Int),That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc16]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc16]
-1 times = 1ms
-
-
-
-(=> Double) => Int
-
-(=> Double) => Int
-18 times = 16ms
-
-
-
-(Any => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-
-(Any => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc14]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc14]
-1 times = 0ms
-
-
-
-Integral[Symbol]
-
-Integral[Symbol]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[String,Int]]
-
-cats.kernel.Eq[scala.collection.immutable.Map[String,Int]]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[String,Int]]->shapeless.IsTuple[scala.collection.immutable.Map[String,Int]]
-
-
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[String,Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-result1.type => ?{def ===: ?}
-
-result1.type => ?{def ===: ?}
-1 times = 9ms
-
-
-
-result1.type => ?{def ===: ?}->cats.Eq[io.circe.JsonObject]
-
-
-
-
-
-result1.type => ?{def ===: ?}->cats.Eq[Option[io.circe.JsonObject]]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Long, Int),scala.collection.mutable.HashMap[Long,Int]]
-
-org.scalacheck.util.Buildable[(Long, Int),scala.collection.mutable.HashMap[Long,Int]]
-2 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Long, Int),scala.collection.mutable.HashMap[Long,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(Long, Int),scala.collection.mutable.HashMap[Long,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(Long, Int),scala.collection.mutable.HashMap[Long,Int]]->scala.collection.generic.CanBuildFrom[F,(Long, Int),scala.collection.mutable.HashMap[Long,Int]]
-
-
-
-
-
-key.type => ?{def ->: ?}
-
-key.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc14]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc14]]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-Either[String,(String, io.circe.Json, Boolean)] => Traversable[(String, (String, io.circe.Json, Boolean))]
-
-Either[String,(String, io.circe.Json, Boolean)] => Traversable[(String, (String, io.circe.Json, Boolean))]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.mutable.HashMap[Long,Int]]
-
-org.scalacheck.Arbitrary[scala.collection.mutable.HashMap[Long,Int]]
-1 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.mutable.HashMap[Long,Int]]->scala.reflect.ClassTag[scala.collection.mutable.HashMap[Long,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.mutable.HashMap[Long,Int]]->org.scalacheck.util.Buildable[(Long, Int),scala.collection.mutable.HashMap[Long,Int]]
-
-
-
-
-
-scala.collection.mutable.HashMap[Long,Int] => Traversable[(Long, Int)]
-
-scala.collection.mutable.HashMap[Long,Int] => Traversable[(Long, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.mutable.HashMap[Long,Int]]->scala.collection.mutable.HashMap[Long,Int] => Traversable[(Long, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.mutable.HashMap[Long,Int]]->org.scalacheck.Arbitrary[(Long, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 34ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc6]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc6]
-1 times = 7ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc6]
-
-Fractional[ProductCodecSuite.this.Cc6]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc6]->Fractional[ProductCodecSuite.this.Cc6]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc6]
-
-Integral[ProductCodecSuite.this.Cc6]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc6]->Integral[ProductCodecSuite.this.Cc6]
-
-
-
-
-
-List[Either[Int,String]] => Traversable[Either[Int,String]]
-
-List[Either[Int,String]] => Traversable[Either[Int,String]]
-2 times = 1ms
-
-
-
-org.scalacheck.Shrink[Set[Int]]
-
-org.scalacheck.Shrink[Set[Int]]
-1 times = 9ms
-
-
-
-org.scalacheck.Shrink[Set[Int]]->Set[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.util.Buildable[Int,Set[Int]]
-
-org.scalacheck.util.Buildable[Int,Set[Int]]
-2 times = 2ms
-
-
-
-org.scalacheck.Shrink[Set[Int]]->org.scalacheck.util.Buildable[Int,Set[Int]]
-
-
-
-
-
-Integral[Set[Int]]
-
-Integral[Set[Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[Set[Int]]->Integral[Set[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[Set[Int]]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-List[String] => ?{def ===: ?}
-
-List[String] => ?{def ===: ?}
-2 times = 13ms
-
-
-
-List[String] => ?{def ===: ?}->cats.Eq[List[String]]
-
-
-
-
-
-(=> Any => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-8 times = 1ms
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,((String, io.circe.Json), Boolean),((String, io.circe.Json)) => Boolean]
-
-scala.collection.generic.CanBuildFrom[F,((String, io.circe.Json), Boolean),((String, io.circe.Json)) => Boolean]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-1 times = 0ms
-
-
-
-io.circe.Encoder[List[io.circe.Json]]
-
-io.circe.Encoder[List[io.circe.Json]]
-2 times = 6ms
-
-
-
-io.circe.Encoder[io.circe.Json]
-
-io.circe.Encoder[io.circe.Json]
-9 times = 16ms
-
-
-
-io.circe.Encoder[List[io.circe.Json]]->io.circe.Encoder[io.circe.Json]
-
-
-
-
-
-((io.circe.Json, io.circe.Json, io.circe.Json)) => ?{def asJson: ?}
-
-((io.circe.Json, io.circe.Json, io.circe.Json)) => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Int, Int),Int => Int]
-
-scala.collection.generic.CanBuildFrom[F,(Int, Int),Int => Int]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc10]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc10]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc10]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc10]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Symbol,Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Symbol,Int]]
-1 times = 10ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Symbol,Int]]->org.scalacheck.util.Buildable[(Symbol, Int),scala.collection.immutable.Map[Symbol,Int]]
-
-
-
-
-
-scala.collection.immutable.Map[Symbol,Int] => Traversable[(Symbol, Int)]
-
-scala.collection.immutable.Map[Symbol,Int] => Traversable[(Symbol, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Symbol,Int]]->scala.collection.immutable.Map[Symbol,Int] => Traversable[(Symbol, Int)]
-
-
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[Symbol,Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[Symbol,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Symbol,Int]]->scala.reflect.ClassTag[scala.collection.immutable.Map[Symbol,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Symbol, Int)]
-
-org.scalacheck.Arbitrary[(Symbol, Int)]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Symbol,Int]]->org.scalacheck.Arbitrary[(Symbol, Int)]
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc6]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc6]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc6]->shapeless.IsTuple[ProductCodecSuite.this.Cc6]
-
-
-
-
-
-cats.kernel.Eq[List[(String, io.circe.Json)]]
-
-cats.kernel.Eq[List[(String, io.circe.Json)]]
-2 times = 83ms
-
-
-
-cats.kernel.Eq[List[(String, io.circe.Json)]]->cats.kernel.Eq[(String, io.circe.Json)]
-
-
-
-
-
-shapeless.IsTuple[List[(String, io.circe.Json)]]
-
-shapeless.IsTuple[List[(String, io.circe.Json)]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[List[(String, io.circe.Json)]]->shapeless.IsTuple[List[(String, io.circe.Json)]]
-
-
-
-
-
-cats.kernel.Eq[List[(String, io.circe.Json)]]->cats.kernel.PartialOrder[(String, io.circe.Json)]
-
-
-
-
-
-cats.kernel.Eq[List[(String, io.circe.Json)]]->cats.kernel.Order[(String, io.circe.Json)]
-
-
-
-
-
-cats.Foldable[List]
-
-cats.Foldable[List]
-16 times = 6ms
-
-
-
-List[Either[String,(String, io.circe.Json, Boolean)]] => Traversable[Either[String,(String, io.circe.Json, Boolean)]]
-
-List[Either[String,(String, io.circe.Json, Boolean)]] => Traversable[Either[String,(String, io.circe.Json, Boolean)]]
-1 times = 1ms
-
-
-
-(=> Any => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-
-(=> Any => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-1 times = 0ms
-
-
-
-io.circe.ACursor => ?{def ===: ?}
-
-io.circe.ACursor => ?{def ===: ?}
-1 times = 4ms
-
-
-
-cats.Eq[io.circe.ACursor]
-
-cats.Eq[io.circe.ACursor]
-2 times = 6ms
-
-
-
-io.circe.ACursor => ?{def ===: ?}->cats.Eq[io.circe.ACursor]
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-1 times = 0ms
-
-
-
-cats.Eq[List[io.circe.Json]]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-cats.Eq[List[io.circe.Json]]->cats.kernel.Eq[io.circe.Json]
-
-
-
-
-
-cats.Eq[List[io.circe.Json]]->cats.kernel.PartialOrder[io.circe.Json]
-
-
-
-
-
-shapeless.IsTuple[List[io.circe.Json]]
-
-shapeless.IsTuple[List[io.circe.Json]]
-1 times = 0ms
-
-
-
-cats.Eq[List[io.circe.Json]]->shapeless.IsTuple[List[io.circe.Json]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],(String, io.circe.Json),Iterable[(String, io.circe.Json)]]
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],(String, io.circe.Json),Iterable[(String, io.circe.Json)]]
-1 times = 0ms
-
-
-
-String('A tuple encoder') => ?{def should: ?}
-
-String('A tuple encoder') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('A tuple encoder') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.ParsingFailure => ?{def show: ?}
-
-io.circe.ParsingFailure => ?{def show: ?}
-1 times = 1ms
-
-
-
-cats.Show[io.circe.ParsingFailure]
-
-cats.Show[io.circe.ParsingFailure]
-2 times = 0ms
-
-
-
-io.circe.ParsingFailure => ?{def show: ?}->cats.Show[io.circe.ParsingFailure]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,List[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,List[Int]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Either[Int,String]],Option[io.circe.Json],That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Either[Int,String]],Option[io.circe.Json],That]
-1 times = 1ms
-
-
-
-cats.kernel.Order[io.circe.Decoder.Result[List[Boolean]]]
-
-cats.kernel.Order[io.circe.Decoder.Result[List[Boolean]]]
-4 times = 7ms
-
-
-
-cats.kernel.Order[io.circe.DecodingFailure]
-
-cats.kernel.Order[io.circe.DecodingFailure]
-16 times = 12ms
-
-
-
-cats.kernel.Order[io.circe.Decoder.Result[List[Boolean]]]->cats.kernel.Order[io.circe.DecodingFailure]
-
-
-
-
-
-String('parse and decode(Accumulating)') => ?{def should: ?}
-
-String('parse and decode(Accumulating)') => ?{def should: ?}
-2 times = 4ms
-
-
-
-String('parse and decode(Accumulating)') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[io.circe.DecodingFailure]]->org.scalacheck.Arbitrary[io.circe.DecodingFailure]
-
-
-
-
-
-shapeless.IsTuple[io.circe.CursorOp]
-
-shapeless.IsTuple[io.circe.CursorOp]
-32 times = 24ms
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[Either[Int,String]]]
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[Either[Int,String]]]
-1 times = 10ms
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[Either[Int,String]]]->org.scalacheck.Arbitrary[Either[Int,String]]
-
-
-
-
-
-(=> Any => Nothing) => String
-
-(=> Any => Nothing) => String
-101 times = 23ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-
-(Any => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Either[Int,String]]
-
-io.circe.Decoder[Either[Int,String]]
-1 times = 9ms
-
-
-
-io.circe.Decoder[Either[Int,String]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[Either[Int,String]]->io.circe.Decoder[String]
-
-
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Either[Int,String]]]
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Either[Int,String]]]
-1 times = 5ms
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Either[Int,String]]]->Integral[cats.data.NonEmptyList[Either[Int,String]]]
-
-
-
-
-
-cats.data.NonEmptyList[Either[Int,String]] => Traversable[Either[Int,String]]
-
-cats.data.NonEmptyList[Either[Int,String]] => Traversable[Either[Int,String]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Either[Int,String]]]->cats.data.NonEmptyList[Either[Int,String]] => Traversable[Either[Int,String]]
-
-
-
-
-
-Fractional[cats.data.NonEmptyList[Either[Int,String]]]
-
-Fractional[cats.data.NonEmptyList[Either[Int,String]]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyList[Either[Int,String]]]->Fractional[cats.data.NonEmptyList[Either[Int,String]]]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String)
-
-(=> (Any, Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String)
-1 times = 0ms
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-(=> Any => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-
-(=> Any => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-1 times = 0ms
-
-
-
-pz.type => ?{def =!=: ?}
-
-pz.type => ?{def =!=: ?}
-1 times = 5ms
-
-
-
-cats.Eq[io.circe.JsonNumber]
-
-cats.Eq[io.circe.JsonNumber]
-10 times = 38ms
-
-
-
-pz.type => ?{def =!=: ?}->cats.Eq[io.circe.JsonNumber]
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc6]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc6]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc6]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc6]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc6]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc6]]
-
-
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Set[Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Set[Int]]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc9]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc9]]
-1 times = 0ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[List[Boolean]]
-
-cats.kernel.Eq[List[Boolean]]
-4 times = 24ms
-
-
-
-cats.kernel.Order[Boolean]
-
-cats.kernel.Order[Boolean]
-6 times = 4ms
-
-
-
-cats.kernel.Eq[List[Boolean]]->cats.kernel.Order[Boolean]
-
-
-
-
-
-cats.kernel.Eq[Boolean]
-
-cats.kernel.Eq[Boolean]
-5 times = 13ms
-
-
-
-cats.kernel.Eq[List[Boolean]]->cats.kernel.Eq[Boolean]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc21]
-
-Integral[ProductCodecSuite.this.Cc21]
-1 times = 1ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.Decoder,io.circe.DecodingFailure,Int]]
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.Decoder,io.circe.DecodingFailure,Int]]
-1 times = 24ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.Decoder,io.circe.DecodingFailure,Int]]->cats.Order[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.Decoder,io.circe.DecodingFailure,Int]]->shapeless.IsTuple[cats.data.EitherT[io.circe.Decoder,io.circe.DecodingFailure,Int]]
-
-
-
-
-
-cats.PartialOrder[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]]
-
-cats.PartialOrder[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]]
-1 times = 2ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.Decoder,io.circe.DecodingFailure,Int]]->cats.PartialOrder[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]]
-
-
-
-
-
-cats.Eq[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]]
-
-cats.Eq[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]]
-1 times = 14ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.Decoder,io.circe.DecodingFailure,Int]]->cats.Eq[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]]
-
-
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Order[List[String]]->cats.kernel.Order[String]
-
-
-
-
-
-io.circe.Encoder[Long]
-
-io.circe.Encoder[Long]
-3 times = 6ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-1 times = 0ms
-
-
-
-a.type => ?{def ++: ?}
-
-a.type => ?{def ++: ?}
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Symbol,Int]]
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Symbol,Int]]
-1 times = 17ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Symbol,Int]]->org.scalacheck.util.Buildable[(Symbol, Int),scala.collection.immutable.Map[Symbol,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Symbol,Int]]->Integral[scala.collection.immutable.Map[Symbol,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Symbol,Int]]->org.scalacheck.Shrink[(Symbol, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Symbol,Int]]->scala.collection.immutable.Map[Symbol,Int] => Traversable[(Symbol, Int)]
-
-
-
-
-
-Fractional[scala.collection.immutable.Map[Symbol,Int]]
-
-Fractional[scala.collection.immutable.Map[Symbol,Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Symbol,Int]]->Fractional[scala.collection.immutable.Map[Symbol,Int]]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => AccumulatingDecoderSpec.this.PropertyCheckConfigParam
-
-(=> (Any, Any, Any) => Nothing) => AccumulatingDecoderSpec.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-cats.Functor[io.circe.Decoder.Result]
-
-cats.Functor[io.circe.Decoder.Result]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Int, String),scala.util.Either[Int,String]]
-
-scala.collection.generic.CanBuildFrom[F,(Int, String),scala.util.Either[Int,String]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(Int, String),scala.util.Either[Int,String]]->scala.collection.generic.CanBuildFrom[F,(Int, String),scala.util.Either[Int,String]]
-
-
-
-
-
-Vector[Int] => Traversable[Int]
-
-Vector[Int] => Traversable[Int]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-String('leftAt') => ?{def should: ?}
-
-String('leftAt') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('leftAt') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> Any => Nothing) => SerializableSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => SerializableSuite.this.PropertyCheckConfigParam
-2 times = 0ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int)]
-1 times = 50ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int)]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int),L]
-1 times = 9ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil]
-19 times = 483ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[io.circe.ObjectEncoder[Int]]
-
-cats.kernel.Eq[io.circe.ObjectEncoder[Int]]
-2 times = 10ms
-
-
-
-shapeless.IsTuple[io.circe.ObjectEncoder[Int]]
-
-shapeless.IsTuple[io.circe.ObjectEncoder[Int]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[io.circe.ObjectEncoder[Int]]->shapeless.IsTuple[io.circe.ObjectEncoder[Int]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.ObjectEncoder[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-(Any => Nothing) => (org.scalacheck.Gen[?A], String)
-
-(Any => Nothing) => (org.scalacheck.Gen[?A], String)
-1 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,(String, io.circe.Json, Boolean)]]
-
-org.scalacheck.Arbitrary[Either[String,(String, io.circe.Json, Boolean)]]
-1 times = 30ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,(String, io.circe.Json, Boolean)]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-scala.reflect.ClassTag[Either[String,(String, io.circe.Json, Boolean)]]
-
-scala.reflect.ClassTag[Either[String,(String, io.circe.Json, Boolean)]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,(String, io.circe.Json, Boolean)]]->scala.reflect.ClassTag[Either[String,(String, io.circe.Json, Boolean)]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, (String, io.circe.Json, Boolean))]
-
-org.scalacheck.Arbitrary[(String, (String, io.circe.Json, Boolean))]
-1 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,(String, io.circe.Json, Boolean)]]->org.scalacheck.Arbitrary[(String, (String, io.circe.Json, Boolean))]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json, Boolean)]
-
-org.scalacheck.Arbitrary[(String, io.circe.Json, Boolean)]
-2 times = 16ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,(String, io.circe.Json, Boolean)]]->org.scalacheck.Arbitrary[(String, io.circe.Json, Boolean)]
-
-
-
-
-
-org.scalacheck.util.Buildable[(String, (String, io.circe.Json, Boolean)),Either[String,(String, io.circe.Json, Boolean)]]
-
-org.scalacheck.util.Buildable[(String, (String, io.circe.Json, Boolean)),Either[String,(String, io.circe.Json, Boolean)]]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,(String, io.circe.Json, Boolean)]]->org.scalacheck.util.Buildable[(String, (String, io.circe.Json, Boolean)),Either[String,(String, io.circe.Json, Boolean)]]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc8]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc8]
-1 times = 6ms
-
-
-
-Integral[ProductCodecSuite.this.Cc8]
-
-Integral[ProductCodecSuite.this.Cc8]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc8]->Integral[ProductCodecSuite.this.Cc8]
-
-
-
-
-
-Fractional[ProductCodecSuite.this.Cc8]
-
-Fractional[ProductCodecSuite.this.Cc8]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc8]->Fractional[ProductCodecSuite.this.Cc8]
-
-
-
-
-
-(=> Unit) => String
-
-(=> Unit) => String
-1 times = 0ms
-
-
-
-String => ?{def ===: ?}
-
-String => ?{def ===: ?}
-5 times = 19ms
-
-
-
-String => ?{def ===: ?}->cats.Eq[String]
-
-
-
-
-
-scala.collection.immutable.SortedMap[Long,Int] => Iterable[(Long, Int)]
-
-scala.collection.immutable.SortedMap[Long,Int] => Iterable[(Long, Int)]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc13]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc13]]
-1 times = 0ms
-
-
-
-result.type => ?{def isEmpty: ?}
-
-result.type => ?{def isEmpty: ?}
-1 times = 1ms
-
-
-
-result.type => ?{def isEmpty: ?}->cats.Foldable[io.circe.Decoder.Result]
-
-
-
-
-
-cats.Monoid[io.circe.Decoder.Result[Byte]]
-
-cats.Monoid[io.circe.Decoder.Result[Byte]]
-1 times = 3ms
-
-
-
-result.type => ?{def isEmpty: ?}->cats.Monoid[io.circe.Decoder.Result[Byte]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Int],io.circe.Printer.Pieces,Seq[io.circe.Printer.Pieces]]
-
-scala.collection.generic.CanBuildFrom[Seq[Int],io.circe.Printer.Pieces,Seq[io.circe.Printer.Pieces]]
-1 times = 3ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc18]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc18]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Some[Int]]
-
-org.scalacheck.Shrink[Some[Int]]
-1 times = 8ms
-
-
-
-org.scalacheck.Shrink[Some[Int]]->org.scalacheck.util.Buildable[Int,Some[Int]]
-
-
-
-
-
-Some[Int] => Traversable[Int]
-
-Some[Int] => Traversable[Int]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Some[Int]]->Some[Int] => Traversable[Int]
-
-
-
-
-
-Integral[Some[Int]]
-
-Integral[Some[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Some[Int]]->Integral[Some[Int]]
-
-
-
-
-
-Fractional[Some[Int]]
-
-Fractional[Some[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Some[Int]]->Fractional[Some[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[Some[Int]]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Byte]
-
-cats.kernel.Eq[Byte]
-3 times = 7ms
-
-
-
-cats.kernel.Eq[Byte]->shapeless.IsTuple[Byte]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Short, Int),scala.collection.immutable.Map[Short,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(Short, Int),scala.collection.immutable.Map[Short,Int]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc5]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc5]
-1 times = 1ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-1 times = 0ms
-
-
-
-scala.concurrent.ExecutionContext
-
-scala.concurrent.ExecutionContext
-4 times = 6ms
-
-
-
-Integral[ProductCodecSuite.this.Cc22]
-
-Integral[ProductCodecSuite.this.Cc22]
-1 times = 1ms
-
-
-
-io.circe.Decoder.Result[Vector[Int]] => ?{def ===: ?}
-
-io.circe.Decoder.Result[Vector[Int]] => ?{def ===: ?}
-1 times = 1ms
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],String,List[String]]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[Long]
-
-org.scalacheck.Arbitrary[Long]
-16 times = 71ms
-
-
-
-org.scalacheck.Arbitrary[Long]->scala.reflect.ClassTag[Long]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-3 times = 335ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-4 times = 430ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-io.circe.KeyEncoder[Byte]
-
-io.circe.KeyEncoder[Byte]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[None.type]
-
-org.scalacheck.Shrink[None.type]
-1 times = 3ms
-
-
-
-org.scalacheck.Shrink[None.type]->Fractional[None.type]
-
-
-
-
-
-Integral[None.type]
-
-Integral[None.type]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[None.type]->Integral[None.type]
-
-
-
-
-
-org.scalacheck.util.Buildable[(String, io.circe.Json),List[(String, io.circe.Json)]]->scala.collection.generic.CanBuildFrom[F,(String, io.circe.Json),List[(String, io.circe.Json)]]
-
-
-
-
-
-scala.reflect.ClassTag[((String, io.circe.Json)) => Boolean]
-
-scala.reflect.ClassTag[((String, io.circe.Json)) => Boolean]
-1 times = 0ms
-
-
-
-(Any => Nothing) => JawnParserSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => JawnParserSuite.this.PropertyCheckConfigParam
-1 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc20]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc20]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Byte,Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Byte,Int]]
-1 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Byte,Int]]->org.scalacheck.Arbitrary[(Byte, Int)]
-
-
-
-
-
-scala.collection.immutable.Map[Byte,Int] => Traversable[(Byte, Int)]
-
-scala.collection.immutable.Map[Byte,Int] => Traversable[(Byte, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Byte,Int]]->scala.collection.immutable.Map[Byte,Int] => Traversable[(Byte, Int)]
-
-
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[Byte,Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[Byte,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Byte,Int]]->scala.reflect.ClassTag[scala.collection.immutable.Map[Byte,Int]]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Byte, Int),scala.collection.immutable.Map[Byte,Int]]
-
-org.scalacheck.util.Buildable[(Byte, Int),scala.collection.immutable.Map[Byte,Int]]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Byte,Int]]->org.scalacheck.util.Buildable[(Byte, Int),scala.collection.immutable.Map[Byte,Int]]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.SortedMap[Long,Int]]
-
-io.circe.Encoder[scala.collection.immutable.SortedMap[Long,Int]]
-1 times = 3ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.SortedMap[Long,Int]]->scala.collection.immutable.SortedMap[Long,Int] => Iterable[(Long, Int)]
-
-
-
-
-
-io.circe.KeyEncoder[Long]
-
-io.circe.KeyEncoder[Long]
-3 times = 0ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.SortedMap[Long,Int]]->io.circe.KeyEncoder[Long]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.SortedMap[Long,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int)]
-1 times = 22ms
-
-
-
-Integral[(Int, Int, Int)]
-
-Integral[(Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int)]->Integral[(Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 4ms
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-io.circe.Encoder[(Int,)]
-
-io.circe.Encoder[(Int,)]
-1 times = 9ms
-
-
-
-io.circe.Encoder[(Int,)]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int,)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int,)]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int,)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int,)]]
-
-
-
-
-
-((Int,)) => Iterable[Int]
-
-((Int,)) => Iterable[Int]
-1 times = 1ms
-
-
-
-io.circe.Encoder[(Int,)]->((Int,)) => Iterable[Int]
-
-
-
-
-
-Int(1) => ?{def to: ?}
-
-Int(1) => ?{def to: ?}
-4 times = 2ms
-
-
-
-scala.concurrent.Future[Seq[io.circe.Printer.Pieces]] => MemoizedPiecesSuite.this.FutureConcept[?]
-
-scala.concurrent.Future[Seq[io.circe.Printer.Pieces]] => MemoizedPiecesSuite.this.FutureConcept[?]
-1 times = 2ms
-
-
-
-Fractional[scala.math.BigInt]
-
-Fractional[scala.math.BigInt]
-1 times = 1ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 22ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Either[String,(String, io.circe.Json, Boolean)],List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-scala.collection.generic.CanBuildFrom[F,Either[String,(String, io.circe.Json, Boolean)],List[Either[String,(String, io.circe.Json, Boolean)]]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc22]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc22]
-1 times = 4ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc22]->Fractional[ProductCodecSuite.this.Cc22]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc22]->Integral[ProductCodecSuite.this.Cc22]
-
-
-
-
-
-org.scalacheck.Arbitrary[None.type]
-
-org.scalacheck.Arbitrary[None.type]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[(Int,)]
-
-cats.kernel.Eq[(Int,)]
-1 times = 39ms
-
-
-
-cats.kernel.Eq[(Int,)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int,)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-shapeless.IsTuple[(Int,)]
-
-shapeless.IsTuple[(Int,)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int,)]->shapeless.IsTuple[(Int,)]
-
-
-
-
-
-shapeless.Generic.Aux[(Int,),L]
-
-shapeless.Generic.Aux[(Int,),L]
-1 times = 17ms
-
-
-
-cats.kernel.Eq[(Int,)]->shapeless.Generic.Aux[(Int,),L]
-
-
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: shapeless.HNil]
-25 times = 211ms
-
-
-
-cats.kernel.Eq[(Int,)]->cats.kernel.Eq[Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Unit]]->cats.kernel.Eq[Unit]
-
-
-
-
-
-shapeless.IsTuple[scala.util.Either[io.circe.DecodingFailure,Unit]]
-
-shapeless.IsTuple[scala.util.Either[io.circe.DecodingFailure,Unit]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Unit]]->shapeless.IsTuple[scala.util.Either[io.circe.DecodingFailure,Unit]]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Unit]]->cats.kernel.Order[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[io.circe.DecodingFailure]
-
-cats.kernel.Eq[io.circe.DecodingFailure]
-9 times = 29ms
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Unit]]->cats.kernel.Eq[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.PartialOrder[io.circe.DecodingFailure]
-
-cats.kernel.PartialOrder[io.circe.DecodingFailure]
-12 times = 16ms
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Unit]]->cats.kernel.PartialOrder[io.circe.DecodingFailure]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int)]
-1 times = 25ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 1ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc11]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc11]
-1 times = 6ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc11]
-
-Fractional[ProductCodecSuite.this.Cc11]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc11]->Fractional[ProductCodecSuite.this.Cc11]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc11]
-
-Integral[ProductCodecSuite.this.Cc11]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc11]->Integral[ProductCodecSuite.this.Cc11]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[java.util.UUID,Int]]
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[java.util.UUID,Int]]
-1 times = 15ms
-
-
-
-Integral[scala.collection.immutable.Map[java.util.UUID,Int]]
-
-Integral[scala.collection.immutable.Map[java.util.UUID,Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[java.util.UUID,Int]]->Integral[scala.collection.immutable.Map[java.util.UUID,Int]]
-
-
-
-
-
-org.scalacheck.util.Buildable[(java.util.UUID, Int),scala.collection.immutable.Map[java.util.UUID,Int]]
-
-org.scalacheck.util.Buildable[(java.util.UUID, Int),scala.collection.immutable.Map[java.util.UUID,Int]]
-2 times = 1ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[java.util.UUID,Int]]->org.scalacheck.util.Buildable[(java.util.UUID, Int),scala.collection.immutable.Map[java.util.UUID,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[(java.util.UUID, Int)]
-
-org.scalacheck.Shrink[(java.util.UUID, Int)]
-1 times = 9ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[java.util.UUID,Int]]->org.scalacheck.Shrink[(java.util.UUID, Int)]
-
-
-
-
-
-scala.collection.immutable.Map[java.util.UUID,Int] => Traversable[(java.util.UUID, Int)]
-
-scala.collection.immutable.Map[java.util.UUID,Int] => Traversable[(java.util.UUID, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[java.util.UUID,Int]]->scala.collection.immutable.Map[java.util.UUID,Int] => Traversable[(java.util.UUID, Int)]
-
-
-
-
-
-Fractional[scala.collection.immutable.Map[java.util.UUID,Int]]
-
-Fractional[scala.collection.immutable.Map[java.util.UUID,Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[java.util.UUID,Int]]->Fractional[scala.collection.immutable.Map[java.util.UUID,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Seq[Int]]
-
-org.scalacheck.Arbitrary[Seq[Int]]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[Seq[Int]]->Seq[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Seq[Int]]->org.scalacheck.util.Buildable[Int,Seq[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[Seq[Int]]
-
-scala.reflect.ClassTag[Seq[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Seq[Int]]->scala.reflect.ClassTag[Seq[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Seq[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-shapeless.IsTuple[java.util.UUID]
-
-shapeless.IsTuple[java.util.UUID]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Unit]
-
-scala.reflect.ClassTag[Unit]
-5 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(Int,)]
-
-org.scalacheck.Arbitrary[(Int,)]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[(Int,)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-cats.kernel.PartialOrder[io.circe.JsonObject]
-
-cats.kernel.PartialOrder[io.circe.JsonObject]
-6 times = 7ms
-
-
-
-cats.Eq[List[(String, io.circe.Json)]]
-
-cats.Eq[List[(String, io.circe.Json)]]
-6 times = 160ms
-
-
-
-cats.Eq[List[(String, io.circe.Json)]]->cats.kernel.Eq[(String, io.circe.Json)]
-
-
-
-
-
-cats.Eq[List[(String, io.circe.Json)]]->cats.kernel.PartialOrder[(String, io.circe.Json)]
-
-
-
-
-
-cats.Eq[List[(String, io.circe.Json)]]->cats.kernel.Order[(String, io.circe.Json)]
-
-
-
-
-
-Fractional[Char]
-
-Fractional[Char]
-2 times = 1ms
-
-
-
-org.scalacheck.Shrink[Char]->Fractional[Char]
-
-
-
-
-
-Integral[Char]
-
-Integral[Char]
-2 times = 1ms
-
-
-
-org.scalacheck.Shrink[Char]->Integral[Char]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor1[?A]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor1[?A]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[Vector[Int]]
-
-shapeless.IsTuple[Vector[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 7ms
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 2ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Json :: shapeless.HNil]
-
-cats.kernel.Eq[io.circe.Json :: shapeless.HNil]
-2 times = 19ms
-
-
-
-cats.kernel.Eq[io.circe.Json :: shapeless.HNil]->cats.kernel.Eq[shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Json :: shapeless.HNil]->cats.kernel.Eq[io.circe.Json]
-
-
-
-
-
-shapeless.IsTuple[io.circe.Json :: shapeless.HNil]
-
-shapeless.IsTuple[io.circe.Json :: shapeless.HNil]
-2 times = 1ms
-
-
-
-cats.kernel.Eq[io.circe.Json :: shapeless.HNil]->shapeless.IsTuple[io.circe.Json :: shapeless.HNil]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 18ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int)]
-1 times = 18ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 6ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc17]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc17]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[Short]->shapeless.IsTuple[Short]
-
-
-
-
-
-Integral[(String, Int)]
-
-Integral[(String, Int)]
-1 times = 0ms
-
-
-
-ObjectEncoderSuite.this.PropertyCheckConfigurable
-
-ObjectEncoderSuite.this.PropertyCheckConfigurable
-1 times = 0ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 195ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-1 times = 120ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Fractional[List[(String, io.circe.Json)]]
-
-Fractional[List[(String, io.circe.Json)]]
-2 times = 3ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 42ms
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,Set[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,Set[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Int,Set[Int]]->scala.collection.generic.CanBuildFrom[F,Int,Set[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 58ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc16]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc16]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc16]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc16]
-
-
-
-
-
-(=> Any => Nothing) => JsonNumberSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => JsonNumberSuite.this.PropertyCheckConfigParam
-15 times = 2ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[io.circe.Json] => ?{def asJson: ?}
-
-scala.collection.immutable.Set[io.circe.Json] => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 48ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc13]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc13]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc13]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc13]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc13]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc13]
-
-
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-
-(Any => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-Option[io.circe.JsonObject] => ?{def ===: ?}
-
-Option[io.circe.JsonObject] => ?{def ===: ?}
-1 times = 9ms
-
-
-
-Option[io.circe.JsonObject] => ?{def ===: ?}->cats.Eq[Option[io.circe.JsonObject]]
-
-
-
-
-
-io.circe.Decoder[Map[String,String]]
-
-io.circe.Decoder[Map[String,String]]
-1 times = 6ms
-
-
-
-io.circe.Decoder[Map[String,String]]->io.circe.KeyDecoder[String]
-
-
-
-
-
-io.circe.Decoder[Map[String,String]]->io.circe.Decoder[String]
-
-
-
-
-
-String('filter') => ?{def should: ?}
-
-String('filter') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('filter') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Encoder[cats.data.NonEmptyVector[Int]]
-
-io.circe.Encoder[cats.data.NonEmptyVector[Int]]
-1 times = 6ms
-
-
-
-io.circe.Encoder[cats.data.NonEmptyVector[Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-cats.data.NonEmptyVector[Int] => Iterable[Int]
-
-cats.data.NonEmptyVector[Int] => Iterable[Int]
-1 times = 0ms
-
-
-
-io.circe.Encoder[cats.data.NonEmptyVector[Int]]->cats.data.NonEmptyVector[Int] => Iterable[Int]
-
-
-
-
-
-String('b') => ?{def ->: ?}
-
-String('b') => ?{def ->: ?}
-11 times = 7ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.DecodingFailure],io.circe.Json,That]
-
-scala.collection.generic.CanBuildFrom[List[io.circe.DecodingFailure],io.circe.Json,That]
-1 times = 0ms
-
-
-
-String('y') => ?{def ->: ?}
-
-String('y') => ?{def ->: ?}
-2 times = 1ms
-
-
-
-scala.reflect.ClassTag[(Long, Int)]
-
-scala.reflect.ClassTag[(Long, Int)]
-3 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-Unit => String
-
-Unit => String
-1 times = 0ms
-
-
-
-shapeless.IsTuple[scala.util.Either[Unit,Unit]]
-
-shapeless.IsTuple[scala.util.Either[Unit,Unit]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc21]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc21]
-1 times = 5ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc21]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc21]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc21]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc21]]
-
-
-
-
-
-String('c') => ?{def ->: ?}
-
-String('c') => ?{def ->: ?}
-9 times = 6ms
-
-
-
-Integral[Int]
-
-Integral[Int]
-96 times = 106ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc13]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc13]
-1 times = 6ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc13]
-
-Fractional[ProductCodecSuite.this.Cc13]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc13]->Fractional[ProductCodecSuite.this.Cc13]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc13]
-
-Integral[ProductCodecSuite.this.Cc13]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc13]->Integral[ProductCodecSuite.this.Cc13]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc4]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc4]]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-io.circe.KeyDecoder[Long]
-
-io.circe.KeyDecoder[Long]
-3 times = 0ms
-
-
-
-String('4') => ?{def asJson: ?}
-
-String('4') => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-1 times = 0ms
-
-
-
-Float => Int
-
-Float => Int
-18 times = 17ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Some[Int]]
-
-io.circe.Decoder[Some[Int]]
-1 times = 7ms
-
-
-
-io.circe.Decoder[Some[Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with Some[Int]]
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with Some[Int]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Some[Int]]->scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with Some[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc1]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc1]
-1 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc22]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc22]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 4ms
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-16 times = 674ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)]->cats.kernel.Eq[String]
-
-
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)]->shapeless.IsTuple[(String, io.circe.Json)]
-
-
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)]->cats.kernel.Order[String]
-
-
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)]->cats.kernel.Eq[io.circe.Json]
-
-
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)]->cats.kernel.PartialOrder[io.circe.Json]
-
-
-
-
-
-shapeless.Generic.Aux[(String, io.circe.Json),L]
-
-shapeless.Generic.Aux[(String, io.circe.Json),L]
-1 times = 6ms
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)]->shapeless.Generic.Aux[(String, io.circe.Json),L]
-
-
-
-
-
-cats.kernel.PartialOrder[String]
-
-cats.kernel.PartialOrder[String]
-34 times = 46ms
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)]->cats.kernel.PartialOrder[String]
-
-
-
-
-
-cats.kernel.Eq[String :: io.circe.Json :: shapeless.HNil]
-
-cats.kernel.Eq[String :: io.circe.Json :: shapeless.HNil]
-2 times = 31ms
-
-
-
-cats.kernel.Eq[(String, io.circe.Json)]->cats.kernel.Eq[String :: io.circe.Json :: shapeless.HNil]
-
-
-
-
-
-(Any => Nothing) => org.scalacheck.Gen[=?Nothing]
-
-(Any => Nothing) => org.scalacheck.Gen[=?Nothing]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[List[String]]->cats.kernel.Eq[String]
-
-
-
-
-
-cats.kernel.Eq[List[String]]->cats.kernel.Order[String]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 6ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Map[String,Int] => Traversable[(String, Int)]
-
-Map[String,Int] => Traversable[(String, Int)]
-4 times = 2ms
-
-
-
-ACursorSuite.this.PropertyCheckConfigurable
-
-ACursorSuite.this.PropertyCheckConfigurable
-26 times = 12ms
-
-
-
-String('isEmpty') => ?{def should: ?}
-
-String('isEmpty') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('isEmpty') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('setLefts') => ?{def should: ?}
-
-String('setLefts') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('setLefts') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('deleteGoLeft') => ?{def should: ?}
-
-String('deleteGoLeft') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('deleteGoLeft') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Int,)) => Traversable[Int]
-
-((Int,)) => Traversable[Int]
-1 times = 1ms
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 18ms
-
-
-
-String('focus') => ?{def should: ?}
-
-String('focus') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('focus') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[java.util.UUID,Int]]
-
-cats.kernel.Eq[scala.collection.immutable.Map[java.util.UUID,Int]]
-1 times = 3ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[java.util.UUID,Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc5]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc5]]
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Int, Int),scala.collection.immutable.Map[Int,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(Int, Int),scala.collection.immutable.Map[Int,Int]]
-1 times = 0ms
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int)]
-1 times = 1ms
-
-
-
-Option[Vector[io.circe.Json]] => ?{def ===: ?}
-
-Option[Vector[io.circe.Json]] => ?{def ===: ?}
-1 times = 18ms
-
-
-
-Option[Vector[io.circe.Json]] => ?{def ===: ?}->cats.Eq[Option[Vector[io.circe.Json]]]
-
-
-
-
-
-io.circe.Encoder[cats.data.NonEmptyList[Int]]
-
-io.circe.Encoder[cats.data.NonEmptyList[Int]]
-1 times = 4ms
-
-
-
-io.circe.Encoder[cats.data.NonEmptyList[Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,io.circe.Json,List[io.circe.Json]]
-
-scala.collection.generic.CanBuildFrom[F,io.circe.Json,List[io.circe.Json]]
-1 times = 1ms
-
-
-
-shapeless.IsTuple[cats.data.EitherT[io.circe.KeyDecoder,Unit,Int]]
-
-shapeless.IsTuple[cats.data.EitherT[io.circe.KeyDecoder,Unit,Int]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc9]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc9]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc9]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc9]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc9]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc9]]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-11 times = 761ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc10]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc10]
-1 times = 5ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc10]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc10]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc10]->shapeless.IsTuple[ProductCodecSuite.this.Cc10]
-
-
-
-
-
-String('Printer#reuseWriters') => ?{def should: ?}
-
-String('Printer#reuseWriters') => ?{def should: ?}
-1 times = 4ms
-
-
-
-String('Printer#reuseWriters') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.reflect.ClassTag[Array[String]]
-
-scala.reflect.ClassTag[Array[String]]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.Eq[Option[io.circe.JsonNumber]]->shapeless.IsTuple[Option[io.circe.JsonNumber]]
-
-
-
-
-
-cats.kernel.Order[io.circe.JsonNumber]
-
-cats.kernel.Order[io.circe.JsonNumber]
-8 times = 6ms
-
-
-
-cats.Eq[Option[io.circe.JsonNumber]]->cats.kernel.Order[io.circe.JsonNumber]
-
-
-
-
-
-cats.kernel.Eq[io.circe.JsonNumber]
-
-cats.kernel.Eq[io.circe.JsonNumber]
-9 times = 30ms
-
-
-
-cats.Eq[Option[io.circe.JsonNumber]]->cats.kernel.Eq[io.circe.JsonNumber]
-
-
-
-
-
-cats.kernel.PartialOrder[io.circe.JsonNumber]
-
-cats.kernel.PartialOrder[io.circe.JsonNumber]
-8 times = 12ms
-
-
-
-cats.Eq[Option[io.circe.JsonNumber]]->cats.kernel.PartialOrder[io.circe.JsonNumber]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-
-((Any, Any, Any) => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-4 times = 0ms
-
-
-
-cats.Eq[scala.collection.immutable.Set[Option[io.circe.Json]]]
-
-cats.Eq[scala.collection.immutable.Set[Option[io.circe.Json]]]
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.DecodingFailure],Option[io.circe.Json],That]
-
-scala.collection.generic.CanBuildFrom[List[io.circe.DecodingFailure],Option[io.circe.Json],That]
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String)
-
-((Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String)
-1 times = 11ms
-
-
-
-io.circe.Decoder[AccumulatingDecoderSpec.this.Sample]
-
-io.circe.Decoder[AccumulatingDecoderSpec.this.Sample]
-1 times = 2ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[AccumulatingDecoderSpec.this.Sample]]
-
-io.circe.export.Exported[io.circe.Decoder[AccumulatingDecoderSpec.this.Sample]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[AccumulatingDecoderSpec.this.Sample]->io.circe.export.Exported[io.circe.Decoder[AccumulatingDecoderSpec.this.Sample]]
-
-
-
-
-
-String('fieldSet') => ?{def should: ?}
-
-String('fieldSet') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('fieldSet') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('mapJson') => ?{def should: ?}
-
-String('mapJson') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('mapJson') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int)]
-2 times = 22ms
-
-
-
-Integral[(Int, Int)]
-
-Integral[(Int, Int)]
-2 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int, Int)]->Integral[(Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-shapeless.IsTuple[Int :: Int :: Int :: shapeless.HNil]
-
-shapeless.IsTuple[Int :: Int :: Int :: shapeless.HNil]
-3 times = 1ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil]->shapeless.IsTuple[Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: shapeless.HNil]
-
-
-
-
-
-Integral[scala.math.BigDecimal]
-
-Integral[scala.math.BigDecimal]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-1 times = 0ms
-
-
-
-Double => Int
-
-Double => Int
-18 times = 20ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc14]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc14]
-1 times = 6ms
-
-
-
-Integral[ProductCodecSuite.this.Cc14]
-
-Integral[ProductCodecSuite.this.Cc14]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc14]->Integral[ProductCodecSuite.this.Cc14]
-
-
-
-
-
-Fractional[ProductCodecSuite.this.Cc14]
-
-Fractional[ProductCodecSuite.this.Cc14]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc14]->Fractional[ProductCodecSuite.this.Cc14]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc15]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc15]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc15]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc15]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc15]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc15]
-
-
-
-
-
-shapeless.IsTuple[io.circe.Json]
-
-shapeless.IsTuple[io.circe.Json]
-239 times = 192ms
-
-
-
-cats.kernel.Eq[io.circe.Json]->shapeless.IsTuple[io.circe.Json]
-
-
-
-
-
-io.circe.Decoder[Long]
-
-io.circe.Decoder[Long]
-4 times = 24ms
-
-
-
-List[Int] => ?{def asJson: ?}
-
-List[Int] => ?{def asJson: ?}
-4 times = 3ms
-
-
-
-scala.reflect.ClassTag[(Either[Int,String], Either[Int,String], Either[Int,String])]
-
-scala.reflect.ClassTag[(Either[Int,String], Either[Int,String], Either[Int,String])]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc12]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc12]
-1 times = 3ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc12]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc12]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc12]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc12]]
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc17]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc17]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc17]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc17]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc17]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc17]]
-
-
-
-
-
-Integral[scala.collection.mutable.HashMap[Long,Int]]
-
-Integral[scala.collection.mutable.HashMap[Long,Int]]
-1 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc6]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc6]
-1 times = 5ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc6]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc6]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc6]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc6]]
-
-
-
-
-
-String('prepare') => ?{def should: ?}
-
-String('prepare') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('prepare') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Either[Int,String],Set[Either[Int,String]]]
-
-scala.collection.generic.CanBuildFrom[F,Either[Int,String],Set[Either[Int,String]]]
-1 times = 0ms
-
-
-
-String('accumulating') => ?{def should: ?}
-
-String('accumulating') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('accumulating') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Short,Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Short,Int]]
-1 times = 14ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Short,Int]]->org.scalacheck.Arbitrary[(Short, Int)]
-
-
-
-
-
-scala.collection.immutable.Map[Short,Int] => Traversable[(Short, Int)]
-
-scala.collection.immutable.Map[Short,Int] => Traversable[(Short, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Short,Int]]->scala.collection.immutable.Map[Short,Int] => Traversable[(Short, Int)]
-
-
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[Short,Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[Short,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Short,Int]]->scala.reflect.ClassTag[scala.collection.immutable.Map[Short,Int]]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Short, Int),scala.collection.immutable.Map[Short,Int]]
-
-org.scalacheck.util.Buildable[(Short, Int),scala.collection.immutable.Map[Short,Int]]
-2 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Short,Int]]->org.scalacheck.util.Buildable[(Short, Int),scala.collection.immutable.Map[Short,Int]]
-
-
-
-
-
-cats.kernel.Eq[List[Int]]
-
-cats.kernel.Eq[List[Int]]
-1 times = 3ms
-
-
-
-cats.kernel.Eq[List[Int]]->cats.kernel.Order[Int]
-
-
-
-
-
-shapeless.IsTuple[List[Int]]
-
-shapeless.IsTuple[List[Int]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[List[Int]]->shapeless.IsTuple[List[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[io.circe.tests.examples.Foo]
-
-org.scalacheck.Shrink[io.circe.tests.examples.Foo]
-1 times = 4ms
-
-
-
-org.scalacheck.Shrink[io.circe.tests.examples.Foo]->Integral[io.circe.tests.examples.Foo]
-
-
-
-
-
-Fractional[io.circe.tests.examples.Foo]
-
-Fractional[io.circe.tests.examples.Foo]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[io.circe.tests.examples.Foo]->Fractional[io.circe.tests.examples.Foo]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.JsonObject]
-
-org.scalacheck.Arbitrary[io.circe.JsonObject]
-5 times = 1ms
-
-
-
-Option[Boolean] => ?{def ===: ?}
-
-Option[Boolean] => ?{def ===: ?}
-1 times = 4ms
-
-
-
-cats.Eq[Option[Boolean]]
-
-cats.Eq[Option[Boolean]]
-2 times = 7ms
-
-
-
-Option[Boolean] => ?{def ===: ?}->cats.Eq[Option[Boolean]]
-
-
-
-
-
-json.type => ?{def ===: ?}
-
-json.type => ?{def ===: ?}
-1 times = 5ms
-
-
-
-cats.Eq[io.circe.Json]
-
-cats.Eq[io.circe.Json]
-60 times = 340ms
-
-
-
-json.type => ?{def ===: ?}->cats.Eq[io.circe.Json]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,Option[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,Option[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Int,Option[Int]]->scala.collection.generic.CanBuildFrom[F,Int,Option[Int]]
-
-
-
-
-
-shapeless.IsTuple[Long]
-
-shapeless.IsTuple[Long]
-3 times = 3ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[String,Int]]
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[String,Int]]
-1 times = 15ms
-
-
-
-scala.collection.immutable.Map[String,Int] => Traversable[(String, Int)]
-
-scala.collection.immutable.Map[String,Int] => Traversable[(String, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[String,Int]]->scala.collection.immutable.Map[String,Int] => Traversable[(String, Int)]
-
-
-
-
-
-org.scalacheck.util.Buildable[(String, Int),scala.collection.immutable.Map[String,Int]]
-
-org.scalacheck.util.Buildable[(String, Int),scala.collection.immutable.Map[String,Int]]
-2 times = 2ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[String,Int]]->org.scalacheck.util.Buildable[(String, Int),scala.collection.immutable.Map[String,Int]]
-
-
-
-
-
-Fractional[scala.collection.immutable.Map[String,Int]]
-
-Fractional[scala.collection.immutable.Map[String,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[String,Int]]->Fractional[scala.collection.immutable.Map[String,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[(String, Int)]
-
-org.scalacheck.Shrink[(String, Int)]
-1 times = 10ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[String,Int]]->org.scalacheck.Shrink[(String, Int)]
-
-
-
-
-
-Integral[scala.collection.immutable.Map[String,Int]]
-
-Integral[scala.collection.immutable.Map[String,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[String,Int]]->Integral[scala.collection.immutable.Map[String,Int]]
-
-
-
-
-
-cats.kernel.Eq[scala.collection.immutable.SortedMap[Long,Int]]
-
-cats.kernel.Eq[scala.collection.immutable.SortedMap[Long,Int]]
-1 times = 2ms
-
-
-
-org.scalacheck.Shrink[Unit]
-
-org.scalacheck.Shrink[Unit]
-1 times = 3ms
-
-
-
-Integral[Unit]
-
-Integral[Unit]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Unit]->Integral[Unit]
-
-
-
-
-
-Fractional[Unit]
-
-Fractional[Unit]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Unit]->Fractional[Unit]
-
-
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc11]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc11]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc11]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc11]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc11]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc11]]
-
-
-
-
-
-org.scalacheck.Arbitrary[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-
-org.scalacheck.Arbitrary[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-1 times = 11ms
-
-
-
-org.scalacheck.Arbitrary[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]
-1 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]->org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-1 times = 39ms
-
-
-
-cats.Order[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-
-cats.Order[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.Order[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-
-
-
-
-
-cats.Eq[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-
-cats.Eq[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-1 times = 29ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.Eq[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-
-
-
-
-
-cats.PartialOrder[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-
-cats.PartialOrder[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-1 times = 2ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.PartialOrder[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-
-
-
-
-
-shapeless.IsTuple[cats.data.EitherT[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-
-shapeless.IsTuple[cats.data.EitherT[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->shapeless.IsTuple[cats.data.EitherT[io.circe.AccumulatingDecoder,cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-
-((Any, Any, Any) => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-cats.functor.Invariant[io.circe.AccumulatingDecoder]
-
-cats.functor.Invariant[io.circe.AccumulatingDecoder]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc13]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc13]
-1 times = 4ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc13]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc13]]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-String('Printer.spaces2') => ?{def should: ?}
-
-String('Printer.spaces2') => ?{def should: ?}
-1 times = 3ms
-
-
-
-String('Printer.spaces2') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Either[Int,String]]
-
-scala.reflect.ClassTag[Either[Int,String]]
-8 times = 5ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-
-(Any => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => (org.scalacheck.Gen[?A], String)
-
-(=> Any => Nothing) => (org.scalacheck.Gen[?A], String)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.KeyEncoder[Int]]
-
-org.scalacheck.Arbitrary[io.circe.KeyEncoder[Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.KeyEncoder[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-io.circe.Decoder[List[Boolean]]
-
-io.circe.Decoder[List[Boolean]]
-2 times = 8ms
-
-
-
-io.circe.Decoder[Boolean]
-
-io.circe.Decoder[Boolean]
-5 times = 10ms
-
-
-
-io.circe.Decoder[List[Boolean]]->io.circe.Decoder[Boolean]
-
-
-
-
-
-b.type => ?{def asJson: ?}
-
-b.type => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-String('a stateful Decoder with requireEmpty') => ?{def should: ?}
-
-String('a stateful Decoder with requireEmpty') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('a stateful Decoder with requireEmpty') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-1 times = 1ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-1 times = 0ms
-
-
-
-Integral[Double]
-
-Integral[Double]
-9 times = 7ms
-
-
-
-cats.Applicative[Option]
-
-cats.Applicative[Option]
-2 times = 0ms
-
-
-
-shapeless.IsTuple[None.type]
-
-shapeless.IsTuple[None.type]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Int :: String :: Char :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: String :: Char :: shapeless.HNil]
-1 times = 90ms
-
-
-
-cats.kernel.Eq[Int :: String :: Char :: shapeless.HNil]->cats.kernel.Eq[String :: Char :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: String :: Char :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-shapeless.IsTuple[Int :: String :: Char :: shapeless.HNil]
-
-shapeless.IsTuple[Int :: String :: Char :: shapeless.HNil]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[Int :: String :: Char :: shapeless.HNil]->shapeless.IsTuple[Int :: String :: Char :: shapeless.HNil]
-
-
-
-
-
-io.circe.Encoder[Float]
-
-io.circe.Encoder[Float]
-3 times = 4ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Vector[io.circe.Json]]
-
-scala.reflect.ClassTag[Vector[io.circe.Json]]
-3 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc1]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc1]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc1]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc1]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc19]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc19]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc19]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc19]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc19]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc19]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int)]
-1 times = 15ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int)]]
-
-
-
-
-
-shapeless.IsTuple[io.circe.Decoder.Result[List[Boolean]]]
-
-shapeless.IsTuple[io.circe.Decoder.Result[List[Boolean]]]
-1 times = 0ms
-
-
-
-cats.MonadError[io.circe.Decoder,io.circe.DecodingFailure]
-
-cats.MonadError[io.circe.Decoder,io.circe.DecodingFailure]
-1 times = 5ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Boolean]
-
-org.scalacheck.Arbitrary[Boolean]
-8 times = 19ms
-
-
-
-scala.reflect.ClassTag[Boolean]
-
-scala.reflect.ClassTag[Boolean]
-8 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[Boolean]->scala.reflect.ClassTag[Boolean]
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc17]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc17]
-1 times = 1ms
-
-
-
-cats.Eq[io.circe.Error]
-
-cats.Eq[io.circe.Error]
-2 times = 17ms
-
-
-
-shapeless.IsTuple[io.circe.Error]
-
-shapeless.IsTuple[io.circe.Error]
-2 times = 2ms
-
-
-
-cats.Eq[io.circe.Error]->shapeless.IsTuple[io.circe.Error]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-1 times = 0ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-
-(Any => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-xs.type => ?{def asJson: ?}
-
-xs.type => ?{def asJson: ?}
-2 times = 1ms
-
-
-
-cats.kernel.Eq[scala.util.Either[Unit,Unit]]
-
-cats.kernel.Eq[scala.util.Either[Unit,Unit]]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[scala.util.Either[Unit,Unit]]->cats.kernel.Order[Unit]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[Unit,Unit]]->shapeless.IsTuple[scala.util.Either[Unit,Unit]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Set[Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Set[Int]]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Set[Int]]->scala.reflect.ClassTag[scala.collection.immutable.Set[Int]]
-
-
-
-
-
-scala.collection.immutable.Set[Int] => Traversable[Int]
-
-scala.collection.immutable.Set[Int] => Traversable[Int]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Set[Int]]->scala.collection.immutable.Set[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Set[Int]]
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Set[Int]]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Set[Int]]->org.scalacheck.util.Buildable[Int,scala.collection.immutable.Set[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Set[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor1[?A]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor1[?A]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Either[Int,String], Either[Int,String], Either[Int,String])]
-
-org.scalacheck.Arbitrary[(Either[Int,String], Either[Int,String], Either[Int,String])]
-1 times = 30ms
-
-
-
-org.scalacheck.Arbitrary[(Either[Int,String], Either[Int,String], Either[Int,String])]->scala.reflect.ClassTag[(Either[Int,String], Either[Int,String], Either[Int,String])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Either[Int,String], Either[Int,String], Either[Int,String])]->org.scalacheck.Arbitrary[Either[Int,String]]
-
-
-
-
-
-shapeless.IsTuple[scala.collection.immutable.Stream[Int]]
-
-shapeless.IsTuple[scala.collection.immutable.Stream[Int]]
-1 times = 1ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-1 times = 0ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc15]
-
-Fractional[ProductCodecSuite.this.Cc15]
-1 times = 1ms
-
-
-
-org.scalacheck.util.Buildable[(String, Boolean),String => Boolean]
-
-org.scalacheck.util.Buildable[(String, Boolean),String => Boolean]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, Boolean),String => Boolean]
-
-scala.collection.generic.CanBuildFrom[F,(String, Boolean),String => Boolean]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(String, Boolean),String => Boolean]->scala.collection.generic.CanBuildFrom[F,(String, Boolean),String => Boolean]
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor1[?A]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor1[?A]
-1 times = 0ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-
-(Any => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-1 times = 0ms
-
-
-
-io.circe.Encoder[Either[Int,String]]
-
-io.circe.Encoder[Either[Int,String]]
-1 times = 4ms
-
-
-
-io.circe.Encoder[Either[Int,String]]->io.circe.Encoder[String]
-
-
-
-
-
-io.circe.Encoder[Either[Int,String]]->io.circe.Encoder[Int]
-
-
-
-
-
-cats.kernel.Order[Option[io.circe.Json]]
-
-cats.kernel.Order[Option[io.circe.Json]]
-8 times = 17ms
-
-
-
-cats.kernel.Order[Option[io.circe.Json]]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Arbitrary[Array[String]]
-
-org.scalacheck.Arbitrary[Array[String]]
-1 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[Array[String]]->scala.reflect.ClassTag[Array[String]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Array[String]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-Array[String] => Traversable[String]
-
-Array[String] => Traversable[String]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Array[String]]->Array[String] => Traversable[String]
-
-
-
-
-
-org.scalacheck.util.Buildable[String,Array[String]]
-
-org.scalacheck.util.Buildable[String,Array[String]]
-2 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[Array[String]]->org.scalacheck.util.Buildable[String,Array[String]]
-
-
-
-
-
-cats.Applicative[List]
-
-cats.Applicative[List]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-9 times = 720ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.collection.mutable.HashMap[Long,Int]]
-
-org.scalacheck.Shrink[scala.collection.mutable.HashMap[Long,Int]]
-1 times = 13ms
-
-
-
-org.scalacheck.Shrink[scala.collection.mutable.HashMap[Long,Int]]->org.scalacheck.util.Buildable[(Long, Int),scala.collection.mutable.HashMap[Long,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.mutable.HashMap[Long,Int]]->Integral[scala.collection.mutable.HashMap[Long,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.mutable.HashMap[Long,Int]]->scala.collection.mutable.HashMap[Long,Int] => Traversable[(Long, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Long, Int)]
-
-org.scalacheck.Shrink[(Long, Int)]
-3 times = 24ms
-
-
-
-org.scalacheck.Shrink[scala.collection.mutable.HashMap[Long,Int]]->org.scalacheck.Shrink[(Long, Int)]
-
-
-
-
-
-Fractional[Map[String,Int]]
-
-Fractional[Map[String,Int]]
-2 times = 1ms
-
-
-
-(=> Any => Nothing) => ((?A, ?B) => ?ASSERTION)
-
-(=> Any => Nothing) => ((?A, ?B) => ?ASSERTION)
-1 times = 0ms
-
-
-
-io.circe.Decoder.Result[BigInt] => ?{def ===: ?}
-
-io.circe.Decoder.Result[BigInt] => ?{def ===: ?}
-1 times = 4ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc3]
-
-Fractional[ProductCodecSuite.this.Cc3]
-1 times = 2ms
-
-
-
-cats.functor.Contravariant[io.circe.KeyEncoder]
-
-cats.functor.Contravariant[io.circe.KeyEncoder]
-1 times = 5ms
-
-
-
-scala.collection.immutable.Set[B] => ?{def ===: ?}
-
-scala.collection.immutable.Set[B] => ?{def ===: ?}
-1 times = 12ms
-
-
-
-scala.collection.immutable.Set[B] => ?{def ===: ?}->cats.Eq[scala.collection.immutable.Set[B]]
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc21]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc21]
-1 times = 1ms
-
-
-
-DecoderSuite.this.PropertyCheckConfigurable
-
-DecoderSuite.this.PropertyCheckConfigurable
-28 times = 10ms
-
-
-
-io.circe.Decoder[Map[java.util.UUID,Int]]
-
-io.circe.Decoder[Map[java.util.UUID,Int]]
-1 times = 3ms
-
-
-
-io.circe.Decoder[Map[java.util.UUID,Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.KeyDecoder[java.util.UUID]
-
-io.circe.KeyDecoder[java.util.UUID]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Map[java.util.UUID,Int]]->io.circe.KeyDecoder[java.util.UUID]
-
-
-
-
-
-cats.Eq[Option[List[(String, io.circe.Json)]]]
-
-cats.Eq[Option[List[(String, io.circe.Json)]]]
-2 times = 128ms
-
-
-
-cats.Eq[Option[List[(String, io.circe.Json)]]]->cats.kernel.Eq[List[(String, io.circe.Json)]]
-
-
-
-
-
-cats.kernel.PartialOrder[List[(String, io.circe.Json)]]
-
-cats.kernel.PartialOrder[List[(String, io.circe.Json)]]
-2 times = 25ms
-
-
-
-cats.Eq[Option[List[(String, io.circe.Json)]]]->cats.kernel.PartialOrder[List[(String, io.circe.Json)]]
-
-
-
-
-
-cats.kernel.Order[List[(String, io.circe.Json)]]
-
-cats.kernel.Order[List[(String, io.circe.Json)]]
-2 times = 10ms
-
-
-
-cats.Eq[Option[List[(String, io.circe.Json)]]]->cats.kernel.Order[List[(String, io.circe.Json)]]
-
-
-
-
-
-String('asArray') => ?{def should: ?}
-
-String('asArray') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('asArray') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc14]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc14]
-1 times = 5ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc14]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc14]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc14]->shapeless.IsTuple[ProductCodecSuite.this.Cc14]
-
-
-
-
-
-scala.collection.immutable.Stream[Int] => Traversable[Int]
-
-scala.collection.immutable.Stream[Int] => Traversable[Int]
-1 times = 0ms
-
-
-
-String('Printer.MemoizedPieces') => ?{def should: ?}
-
-String('Printer.MemoizedPieces') => ?{def should: ?}
-1 times = 4ms
-
-
-
-String('Printer.MemoizedPieces') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[scala.collection.mutable.HashMap[Long,Int]]
-
-cats.kernel.Eq[scala.collection.mutable.HashMap[Long,Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]]
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]]->scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Traversable[String] with Option[String]]
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Traversable[String] with Option[String]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Either[io.circe.DecodingFailure,Int]]
-
-cats.kernel.Eq[Either[io.circe.DecodingFailure,Int]]
-1 times = 11ms
-
-
-
-cats.Eq[io.circe.Decoder[Either[io.circe.DecodingFailure,Int]]]->cats.kernel.Eq[Either[io.circe.DecodingFailure,Int]]
-
-
-
-
-
-Option[io.circe.Json] => scala.collection.GenTraversableOnce[B]
-
-Option[io.circe.Json] => scala.collection.GenTraversableOnce[B]
-1 times = 3ms
-
-
-
-(=> Any => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-
-(=> Any => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-1 times = 0ms
-
-
-
-b.type => ?{def isNaN: ?}
-
-b.type => ?{def isNaN: ?}
-1 times = 0ms
-
-
-
-cats.kernel.Order[BigInt]
-
-cats.kernel.Order[BigInt]
-2 times = 1ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 34ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc3]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc3]
-1 times = 6ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc3]->shapeless.IsTuple[ProductCodecSuite.this.Cc3]
-
-
-
-
-
-String('Decoder[Long]') => ?{def should: ?}
-
-String('Decoder[Long]') => ?{def should: ?}
-2 times = 22ms
-
-
-
-String('Decoder[Long]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 6ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc11]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc11]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc11]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc11]
-
-
-
-
-
-shapeless.IsTuple[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]
-
-shapeless.IsTuple[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]
-1 times = 0ms
-
-
-
-cats.kernel.PartialOrder[io.circe.Decoder.Result[List[Boolean]]]
-
-cats.kernel.PartialOrder[io.circe.Decoder.Result[List[Boolean]]]
-4 times = 18ms
-
-
-
-cats.kernel.PartialOrder[io.circe.Decoder.Result[List[Boolean]]]->cats.kernel.Order[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.PartialOrder[io.circe.Decoder.Result[List[Boolean]]]->cats.kernel.PartialOrder[io.circe.DecodingFailure]
-
-
-
-
-
-io.circe.Decoder[Map[Byte,Int]]
-
-io.circe.Decoder[Map[Byte,Int]]
-1 times = 3ms
-
-
-
-io.circe.Decoder[Map[Byte,Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.KeyDecoder[Byte]
-
-io.circe.KeyDecoder[Byte]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Map[Byte,Int]]->io.circe.KeyDecoder[Byte]
-
-
-
-
-
-String('parseByteBuffer and decodeByteBuffer(Accumulating)') => ?{def should: ?}
-
-String('parseByteBuffer and decodeByteBuffer(Accumulating)') => ?{def should: ?}
-1 times = 2ms
-
-
-
-String('parseByteBuffer and decodeByteBuffer(Accumulating)') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(Any => Nothing) => JsonSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => JsonSuite.this.PropertyCheckConfigParam
-14 times = 4ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[scala.util.Either[Int,String]]
-
-shapeless.IsTuple[scala.util.Either[Int,String]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.Encoder[Int]]
-
-org.scalacheck.Arbitrary[io.circe.Encoder[Int]]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.Encoder[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-scala.reflect.ClassTag[Int]
-
-scala.reflect.ClassTag[Int]
-369 times = 269ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 35ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with (Int,)]
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with (Int,)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Short, Int)]
-
-org.scalacheck.Shrink[(Short, Int)]
-1 times = 9ms
-
-
-
-org.scalacheck.Shrink[Short]
-
-org.scalacheck.Shrink[Short]
-4 times = 11ms
-
-
-
-org.scalacheck.Shrink[(Short, Int)]->org.scalacheck.Shrink[Short]
-
-
-
-
-
-Integral[(Short, Int)]
-
-Integral[(Short, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Short, Int)]->Integral[(Short, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Short, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-scala.reflect.ClassTag[Double]
-
-scala.reflect.ClassTag[Double]
-9 times = 4ms
-
-
-
-shapeless.IsTuple[io.circe.ParsingFailure]
-
-shapeless.IsTuple[io.circe.ParsingFailure]
-2 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[String]->scala.reflect.ClassTag[String]
-
-
-
-
-
-Fractional[ProductCodecSuite.this.Cc4]
-
-Fractional[ProductCodecSuite.this.Cc4]
-1 times = 2ms
-
-
-
-JsonSuite.this.PropertyCheckConfigurable
-
-JsonSuite.this.PropertyCheckConfigurable
-14 times = 5ms
-
-
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C) => ?ASSERTION)
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C) => ?ASSERTION)
-1 times = 0ms
-
-
-
-String('withArray') => ?{def should: ?}
-
-String('withArray') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('withArray') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.Eq[Option[Unit]]->shapeless.IsTuple[Option[Unit]]
-
-
-
-
-
-cats.Eq[Option[Unit]]->cats.kernel.Order[Unit]
-
-
-
-
-
-org.scalacheck.Cogen[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-org.scalacheck.Cogen[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[io.circe.DecodingFailure]
-
-org.scalacheck.Cogen[io.circe.DecodingFailure]
-2 times = 0ms
-
-
-
-org.scalacheck.Cogen[cats.data.NonEmptyList[io.circe.DecodingFailure]]->org.scalacheck.Cogen[io.circe.DecodingFailure]
-
-
-
-
-
-(Any => Nothing) => String
-
-(Any => Nothing) => String
-101 times = 30ms
-
-
-
-io.circe.Encoder[scala.collection.mutable.HashMap[Long,Int]]
-
-io.circe.Encoder[scala.collection.mutable.HashMap[Long,Int]]
-1 times = 3ms
-
-
-
-io.circe.Encoder[scala.collection.mutable.HashMap[Long,Int]]->io.circe.KeyEncoder[Long]
-
-
-
-
-
-io.circe.Encoder[scala.collection.mutable.HashMap[Long,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-scala.collection.mutable.HashMap[Long,Int] => Iterable[(Long, Int)]
-
-scala.collection.mutable.HashMap[Long,Int] => Iterable[(Long, Int)]
-1 times = 0ms
-
-
-
-io.circe.Encoder[scala.collection.mutable.HashMap[Long,Int]]->scala.collection.mutable.HashMap[Long,Int] => Iterable[(Long, Int)]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => EncoderSuite.this.PropertyCheckConfigParam
-
-(=> (Any, Any, Any) => Nothing) => EncoderSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc20]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc20]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-2 times = 243ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-org.scalacheck.Shrink[(Either[Int,String], Either[Int,String], Either[Int,String])]
-
-org.scalacheck.Shrink[(Either[Int,String], Either[Int,String], Either[Int,String])]
-1 times = 28ms
-
-
-
-Integral[(Either[Int,String], Either[Int,String], Either[Int,String])]
-
-Integral[(Either[Int,String], Either[Int,String], Either[Int,String])]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Either[Int,String], Either[Int,String], Either[Int,String])]->Integral[(Either[Int,String], Either[Int,String], Either[Int,String])]
-
-
-
-
-
-org.scalacheck.Shrink[(Either[Int,String], Either[Int,String], Either[Int,String])]->org.scalacheck.Shrink[Either[Int,String]]
-
-
-
-
-
-io.circe.Encoder[Set[Int]]
-
-io.circe.Encoder[Set[Int]]
-1 times = 3ms
-
-
-
-io.circe.Encoder[Set[Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(String, Boolean)]
-
-scala.reflect.ClassTag[(String, Boolean)]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Map[Short,Int]]
-
-io.circe.Decoder[Map[Short,Int]]
-1 times = 4ms
-
-
-
-io.circe.Decoder[Map[Short,Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.KeyDecoder[Short]
-
-io.circe.KeyDecoder[Short]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Map[Short,Int]]->io.circe.KeyDecoder[Short]
-
-
-
-
-
-String('asJson') => ?{def should: ?}
-
-String('asJson') => ?{def should: ?}
-1 times = 6ms
-
-
-
-String('asJson') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 4ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.MonadError[io.circe.KeyDecoder,Unit]
-
-cats.MonadError[io.circe.KeyDecoder,Unit]
-1 times = 10ms
-
-
-
-cats.kernel.Eq[io.circe.Decoder.Result[List[Boolean]]]
-
-cats.kernel.Eq[io.circe.Decoder.Result[List[Boolean]]]
-4 times = 60ms
-
-
-
-cats.kernel.Eq[io.circe.Decoder.Result[List[Boolean]]]->cats.kernel.Eq[List[Boolean]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Decoder.Result[List[Boolean]]]->shapeless.IsTuple[io.circe.Decoder.Result[List[Boolean]]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Decoder.Result[List[Boolean]]]->cats.kernel.Order[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Decoder.Result[List[Boolean]]]->cats.kernel.Eq[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Decoder.Result[List[Boolean]]]->cats.kernel.PartialOrder[io.circe.DecodingFailure]
-
-
-
-
-
-String('deepMerge') => ?{def should: ?}
-
-String('deepMerge') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('deepMerge') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 38ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[io.circe.tests.examples.WrappedOptionalField]
-
-cats.kernel.Eq[io.circe.tests.examples.WrappedOptionalField]
-1 times = 4ms
-
-
-
-shapeless.IsTuple[io.circe.tests.examples.WrappedOptionalField]
-
-shapeless.IsTuple[io.circe.tests.examples.WrappedOptionalField]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[io.circe.tests.examples.WrappedOptionalField]->shapeless.IsTuple[io.circe.tests.examples.WrappedOptionalField]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc15]
-
-Integral[ProductCodecSuite.this.Cc15]
-1 times = 1ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc20]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc20]
-1 times = 4ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc20]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc20]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Either[Int,String],List[Either[Int,String]]]
-
-scala.collection.generic.CanBuildFrom[F,Either[Int,String],List[Either[Int,String]]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 37ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[cats.data.Validated[String,Int]]
-
-io.circe.Encoder[cats.data.Validated[String,Int]]
-1 times = 3ms
-
-
-
-io.circe.Encoder[cats.data.Validated[String,Int]]->io.circe.Encoder[String]
-
-
-
-
-
-io.circe.Encoder[cats.data.Validated[String,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc2]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc2]
-1 times = 6ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc2]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc2]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc2]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc2]]
-
-
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-
-(Any => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-
-((Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-1 times = 1ms
-
-
-
-cats.kernel.Eq[io.circe.CursorOp]
-
-cats.kernel.Eq[io.circe.CursorOp]
-32 times = 107ms
-
-
-
-cats.kernel.Eq[io.circe.CursorOp]->shapeless.IsTuple[io.circe.CursorOp]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc18]
-
-Integral[ProductCodecSuite.this.Cc18]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc18]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc18]
-1 times = 1ms
-
-
-
-io.circe.Decoder[(Int, Int)]
-
-io.circe.Decoder[(Int, Int)]
-1 times = 17ms
-
-
-
-io.circe.Decoder[(Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.KeyDecoder[Int]
-
-io.circe.KeyDecoder[Int]
-3 times = 1ms
-
-
-
-io.circe.Decoder[(Int, Int)]->io.circe.KeyDecoder[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(Int, Int),scala.collection.Map[Int,Int] with (Int, Int)]
-
-scala.collection.generic.CanBuildFrom[Nothing,(Int, Int),scala.collection.Map[Int,Int] with (Int, Int)]
-1 times = 4ms
-
-
-
-io.circe.Decoder[(Int, Int)]->scala.collection.generic.CanBuildFrom[Nothing,(Int, Int),scala.collection.Map[Int,Int] with (Int, Int)]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int)]]
-
-
-
-
-
-io.circe.Decoder[Char]
-
-io.circe.Decoder[Char]
-2 times = 5ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-15 times = 714ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc9]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc9]
-1 times = 5ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc9]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc9]]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 41ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-shapeless.IsTuple[(Int, String, Char)]
-
-shapeless.IsTuple[(Int, String, Char)]
-1 times = 1ms
-
-
-
-cats.Eq[Map[String,Int]]
-
-cats.Eq[Map[String,Int]]
-2 times = 14ms
-
-
-
-shapeless.IsTuple[Map[String,Int]]
-
-shapeless.IsTuple[Map[String,Int]]
-2 times = 1ms
-
-
-
-cats.Eq[Map[String,Int]]->shapeless.IsTuple[Map[String,Int]]
-
-
-
-
-
-cats.Eq[Map[String,Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.Eq[io.circe.AccumulatingDecoder[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]->cats.kernel.Eq[Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-
-
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-
-(Any => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-1 times = 1ms
-
-
-
-Boolean(true) => ?{def asJson: ?}
-
-Boolean(true) => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-(Any => Nothing) => JsonNumberSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => JsonNumberSuite.this.PropertyCheckConfigParam
-15 times = 3ms
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 21ms
-
-
-
-cats.Eq[List[Int]]
-
-cats.Eq[List[Int]]
-1 times = 6ms
-
-
-
-cats.Eq[List[Int]]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.Eq[List[Int]]->shapeless.IsTuple[List[Int]]
-
-
-
-
-
-io.circe.Encoder[Seq[Int]]
-
-io.circe.Encoder[Seq[Int]]
-4 times = 12ms
-
-
-
-io.circe.Encoder[Seq[Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int)]
-1 times = 99ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-String('A JSON number') => ?{def should: ?}
-
-String('A JSON number') => ?{def should: ?}
-1 times = 5ms
-
-
-
-String('A JSON number') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-
-(=> (Any, Any, Any) => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Byte]
-
-org.scalacheck.Shrink[Byte]
-9 times = 46ms
-
-
-
-Fractional[Byte]
-
-Fractional[Byte]
-9 times = 12ms
-
-
-
-org.scalacheck.Shrink[Byte]->Fractional[Byte]
-
-
-
-
-
-Integral[Byte]
-
-Integral[Byte]
-9 times = 13ms
-
-
-
-org.scalacheck.Shrink[Byte]->Integral[Byte]
-
-
-
-
-
-((Any, Any) => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-
-((Any, Any) => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-7 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[java.util.UUID,Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[java.util.UUID,Int]]
-1 times = 10ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[java.util.UUID,Int]]->org.scalacheck.util.Buildable[(java.util.UUID, Int),scala.collection.immutable.Map[java.util.UUID,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(java.util.UUID, Int)]
-
-org.scalacheck.Arbitrary[(java.util.UUID, Int)]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[java.util.UUID,Int]]->org.scalacheck.Arbitrary[(java.util.UUID, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[java.util.UUID,Int]]->scala.collection.immutable.Map[java.util.UUID,Int] => Traversable[(java.util.UUID, Int)]
-
-
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[java.util.UUID,Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[java.util.UUID,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[java.util.UUID,Int]]->scala.reflect.ClassTag[scala.collection.immutable.Map[java.util.UUID,Int]]
-
-
-
-
-
-cats.kernel.Eq[Either[io.circe.DecodingFailure,Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Either[io.circe.DecodingFailure,Int]]->cats.kernel.Order[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[Either[io.circe.DecodingFailure,Int]]->cats.kernel.Eq[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[Either[io.circe.DecodingFailure,Int]]->cats.kernel.PartialOrder[io.circe.DecodingFailure]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 31ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-scala.collection.immutable.Map[Int,Int] => Traversable[(Int, Int)]
-
-scala.collection.immutable.Map[Int,Int] => Traversable[(Int, Int)]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => ACursorSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => ACursorSuite.this.PropertyCheckConfigParam
-21 times = 5ms
-
-
-
-String('mapJsonObject') => ?{def should: ?}
-
-String('mapJsonObject') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('mapJsonObject') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Decoder[DecoderSuite.this.NotDecodable]
-
-io.circe.Decoder[DecoderSuite.this.NotDecodable]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => JawnParserSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => JawnParserSuite.this.PropertyCheckConfigParam
-1 times = 1ms
-
-
-
-scala.math.Ordering[String]
-
-scala.math.Ordering[String]
-1 times = 1ms
-
-
-
-scala.math.Ordering[String]->cats.kernel.Order[String]
-
-
-
-
-
-io.circe.Decoder[Map[Symbol,Int]]
-
-io.circe.Decoder[Map[Symbol,Int]]
-1 times = 4ms
-
-
-
-io.circe.Decoder[Map[Symbol,Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.KeyDecoder[Symbol]
-
-io.circe.KeyDecoder[Symbol]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Map[Symbol,Int]]->io.circe.KeyDecoder[Symbol]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 42ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-String('toShort') => ?{def should: ?}
-
-String('toShort') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('toShort') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]->cats.Eq[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]->cats.Order[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]->shapeless.IsTuple[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]->cats.PartialOrder[io.circe.DecodingFailure]
-
-
-
-
-
-org.scalacheck.Shrink[List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-org.scalacheck.Shrink[List[Either[String,(String, io.circe.Json, Boolean)]]]
-1 times = 21ms
-
-
-
-org.scalacheck.Shrink[List[Either[String,(String, io.circe.Json, Boolean)]]]->List[Either[String,(String, io.circe.Json, Boolean)]] => Traversable[Either[String,(String, io.circe.Json, Boolean)]]
-
-
-
-
-
-org.scalacheck.Shrink[Either[String,(String, io.circe.Json, Boolean)]]
-
-org.scalacheck.Shrink[Either[String,(String, io.circe.Json, Boolean)]]
-1 times = 17ms
-
-
-
-org.scalacheck.Shrink[List[Either[String,(String, io.circe.Json, Boolean)]]]->org.scalacheck.Shrink[Either[String,(String, io.circe.Json, Boolean)]]
-
-
-
-
-
-Integral[List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-Integral[List[Either[String,(String, io.circe.Json, Boolean)]]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[List[Either[String,(String, io.circe.Json, Boolean)]]]->Integral[List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-
-
-
-
-org.scalacheck.util.Buildable[Either[String,(String, io.circe.Json, Boolean)],List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-org.scalacheck.util.Buildable[Either[String,(String, io.circe.Json, Boolean)],List[Either[String,(String, io.circe.Json, Boolean)]]]
-2 times = 2ms
-
-
-
-org.scalacheck.Shrink[List[Either[String,(String, io.circe.Json, Boolean)]]]->org.scalacheck.util.Buildable[Either[String,(String, io.circe.Json, Boolean)],List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-
-
-
-
-String('foo') => ?{def ->: ?}
-
-String('foo') => ?{def ->: ?}
-1 times = 6ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc3]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc3]
-1 times = 1ms
-
-
-
-io.circe.Decoder[cats.data.NonEmptyStream[Int]]
-
-io.circe.Decoder[cats.data.NonEmptyStream[Int]]
-1 times = 11ms
-
-
-
-io.circe.Decoder[cats.data.NonEmptyStream[Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[cats.data.NonEmptyStream[Int]]->scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with cats.data.NonEmptyStream[Int]]
-
-
-
-
-
-io.circe.Decoder[cats.data.NonEmptyStream[Int]]->scala.collection.generic.CanBuildFrom[Nothing,Int,Stream[Int]]
-
-
-
-
-
-a.type => ?{def asJson: ?}
-
-a.type => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc20]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc20]
-1 times = 4ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc20]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc20]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, io.circe.Json)],io.circe.Json,List[io.circe.Json]]
-
-scala.collection.generic.CanBuildFrom[List[(String, io.circe.Json)],io.circe.Json,List[io.circe.Json]]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc22]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc22]
-1 times = 0ms
-
-
-
-String('toInt') => ?{def should: ?}
-
-String('toInt') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('toInt') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyVector[Int]]
-
-org.scalacheck.Shrink[cats.data.NonEmptyVector[Int]]
-1 times = 4ms
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyVector[Int]]->Integral[cats.data.NonEmptyVector[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyVector[Int]]->cats.data.NonEmptyVector[Int] => Traversable[Int]
-
-
-
-
-
-Fractional[cats.data.NonEmptyVector[Int]]
-
-Fractional[cats.data.NonEmptyVector[Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[cats.data.NonEmptyVector[Int]]->Fractional[cats.data.NonEmptyVector[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Byte,Int]]
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Byte,Int]]
-1 times = 12ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Byte,Int]]->scala.collection.immutable.Map[Byte,Int] => Traversable[(Byte, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Byte, Int)]
-
-org.scalacheck.Shrink[(Byte, Int)]
-1 times = 8ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Byte,Int]]->org.scalacheck.Shrink[(Byte, Int)]
-
-
-
-
-
-Integral[scala.collection.immutable.Map[Byte,Int]]
-
-Integral[scala.collection.immutable.Map[Byte,Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Byte,Int]]->Integral[scala.collection.immutable.Map[Byte,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Byte,Int]]->org.scalacheck.util.Buildable[(Byte, Int),scala.collection.immutable.Map[Byte,Int]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[scala.util.Either[Unit,Unit]]]
-
-cats.kernel.Eq[io.circe.KeyDecoder[scala.util.Either[Unit,Unit]]]
-1 times = 7ms
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[scala.util.Either[Unit,Unit]]]->cats.kernel.Eq[scala.util.Either[Unit,Unit]]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-1 times = 0ms
-
-
-
-String('rightAt') => ?{def should: ?}
-
-String('rightAt') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('rightAt') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('withFocus') => ?{def should: ?}
-
-String('withFocus') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('withFocus') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],String,That]
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],String,That]
-1 times = 19ms
-
-
-
-String('e') => ?{def ->: ?}
-
-String('e') => ?{def ->: ?}
-4 times = 2ms
-
-
-
-i.type => ?{def asJson: ?}
-
-i.type => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int)]
-1 times = 88ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),L]
-1 times = 15ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[Long]
-
-cats.kernel.Eq[Long]
-1 times = 3ms
-
-
-
-cats.kernel.Eq[Long]->shapeless.IsTuple[Long]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 48ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 43ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.Decoder[Bomb$3]
-
-io.circe.Decoder[Bomb$3]
-1 times = 2ms
-
-
-
-io.circe.Decoder[Bomb$3]->io.circe.export.Exported[io.circe.Decoder[Bomb$3]]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 18ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Long, Int),scala.collection.immutable.Map[Long,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(Long, Int),scala.collection.immutable.Map[Long,Int]]
-1 times = 0ms
-
-
-
-(Any => Nothing) => SerializableSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => SerializableSuite.this.PropertyCheckConfigParam
-2 times = 0ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-1 times = 0ms
-
-
-
-io.circe.ObjectEncoder[Map[String,Int]]
-
-io.circe.ObjectEncoder[Map[String,Int]]
-3 times = 6ms
-
-
-
-io.circe.ObjectEncoder[Map[String,Int]]->io.circe.KeyEncoder[String]
-
-
-
-
-
-io.circe.ObjectEncoder[Map[String,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-Integral[Map[String,Int]]
-
-Integral[Map[String,Int]]
-4 times = 3ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc9]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc9]
-1 times = 5ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc9]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc9]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc9]->shapeless.IsTuple[ProductCodecSuite.this.Cc9]
-
-
-
-
-
-String('delete') => ?{def should: ?}
-
-String('delete') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('delete') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[Set[Int]]
-
-org.scalacheck.Arbitrary[Set[Int]]
-1 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[Set[Int]]->Set[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Set[Int]]->org.scalacheck.util.Buildable[Int,Set[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[Set[Int]]
-
-scala.reflect.ClassTag[Set[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Set[Int]]->scala.reflect.ClassTag[Set[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Set[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-String('fromFloatOrString') => ?{def should: ?}
-
-String('fromFloatOrString') => ?{def should: ?}
-2 times = 162ms
-
-
-
-String('fromFloatOrString') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc4]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc4]
-1 times = 8ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc4]->Fractional[ProductCodecSuite.this.Cc4]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc4]
-
-Integral[ProductCodecSuite.this.Cc4]
-1 times = 2ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc4]->Integral[ProductCodecSuite.this.Cc4]
-
-
-
-
-
-m.type => ?{def asJsonObject: ?}
-
-m.type => ?{def asJsonObject: ?}
-1 times = 0ms
-
-
-
-Int(5) => ?{def asJson: ?}
-
-Int(5) => ?{def asJson: ?}
-6 times = 3ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc14]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc14]]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[List[io.circe.CursorOp]]
-
-shapeless.IsTuple[List[io.circe.CursorOp]]
-1 times = 1ms
-
-
-
-String('Eq[JsonObject]') => ?{def should: ?}
-
-String('Eq[JsonObject]') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('Eq[JsonObject]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc4]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc4]
-1 times = 1ms
-
-
-
-List[io.circe.Json] => ?{def asJson: ?}
-
-List[io.circe.Json] => ?{def asJson: ?}
-2 times = 1ms
-
-
-
-Integral[Set[Either[Int,String]]]
-
-Integral[Set[Either[Int,String]]]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 183ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 19ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-JawnParserSuite.this.PropertyCheckConfigurable
-
-JawnParserSuite.this.PropertyCheckConfigurable
-1 times = 1ms
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc22]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc22]
-1 times = 3ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc22]->shapeless.IsTuple[ProductCodecSuite.this.Cc22]
-
-
-
-
-
-Fractional[ProductCodecSuite.this.Cc19]
-
-Fractional[ProductCodecSuite.this.Cc19]
-1 times = 1ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc13]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc13]
-1 times = 3ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc13]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc13]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc13]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc13]]
-
-
-
-
-
-io.circe.Decoder.Result[String] => ?{def ===: ?}
-
-io.circe.Decoder.Result[String] => ?{def ===: ?}
-1 times = 1ms
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]]->scala.collection.generic.CanBuildFrom[F,Int,List[Int]]
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc21]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc21]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc21]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc21]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc21]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc21]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 25ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-scala.collection.immutable.Map[String,List[Boolean]] => Iterable[(String, List[Boolean])]
-
-scala.collection.immutable.Map[String,List[Boolean]] => Iterable[(String, List[Boolean])]
-1 times = 0ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,List[Boolean]]]
-
-io.circe.Encoder[scala.collection.immutable.Map[String,List[Boolean]]]
-2 times = 16ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,List[Boolean]]]->io.circe.Encoder[List[Boolean]]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,List[Boolean]]]->io.circe.KeyEncoder[String]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,List[Boolean]]]->scala.collection.immutable.Map[String,List[Boolean]] => Iterable[(String, List[Boolean])]
-
-
-
-
-
-io.circe.Encoder[Map[Byte,Int]]
-
-io.circe.Encoder[Map[Byte,Int]]
-1 times = 3ms
-
-
-
-io.circe.Encoder[Map[Byte,Int]]->io.circe.KeyEncoder[Byte]
-
-
-
-
-
-io.circe.Encoder[Map[Byte,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.Encoder[Map[Short,Int]]
-
-io.circe.Encoder[Map[Short,Int]]
-1 times = 2ms
-
-
-
-io.circe.KeyEncoder[Short]
-
-io.circe.KeyEncoder[Short]
-1 times = 0ms
-
-
-
-io.circe.Encoder[Map[Short,Int]]->io.circe.KeyEncoder[Short]
-
-
-
-
-
-io.circe.Encoder[Map[Short,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-Fractional[List[io.circe.Json]]
-
-Fractional[List[io.circe.Json]]
-3 times = 4ms
-
-
-
-Option[Vector[String]] => ?{def ===: ?}
-
-Option[Vector[String]] => ?{def ===: ?}
-1 times = 14ms
-
-
-
-cats.Eq[Option[Vector[String]]]
-
-cats.Eq[Option[Vector[String]]]
-2 times = 22ms
-
-
-
-Option[Vector[String]] => ?{def ===: ?}->cats.Eq[Option[Vector[String]]]
-
-
-
-
-
-org.scalacheck.Shrink[(Long, Int)]->org.scalacheck.Shrink[Long]
-
-
-
-
-
-Integral[(Long, Int)]
-
-Integral[(Long, Int)]
-3 times = 2ms
-
-
-
-org.scalacheck.Shrink[(Long, Int)]->Integral[(Long, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Long, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-cats.kernel.Eq[Array[String]]
-
-cats.kernel.Eq[Array[String]]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[Array[String]]->cats.kernel.Eq[String]
-
-
-
-
-
-shapeless.IsTuple[Array[String]]
-
-shapeless.IsTuple[Array[String]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Array[String]]->shapeless.IsTuple[Array[String]]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[Seq[Int]]
-
-shapeless.IsTuple[Seq[Int]]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[io.circe.JsonNumber]
-
-shapeless.IsTuple[io.circe.JsonNumber]
-19 times = 12ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc16]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc16]
-1 times = 5ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc16]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc16]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc16]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc16]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, (String, io.circe.Json, Boolean))]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-scala.reflect.ClassTag[(String, (String, io.circe.Json, Boolean))]
-
-scala.reflect.ClassTag[(String, (String, io.circe.Json, Boolean))]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(String, (String, io.circe.Json, Boolean))]->scala.reflect.ClassTag[(String, (String, io.circe.Json, Boolean))]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, (String, io.circe.Json, Boolean))]->org.scalacheck.Arbitrary[(String, io.circe.Json, Boolean)]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[(io.circe.Json, Int)],(String, io.circe.Json),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[(io.circe.Json, Int)],(String, io.circe.Json),That]
-1 times = 0ms
-
-
-
-cats.Eq[scala.collection.immutable.Stream[Int]]
-
-cats.Eq[scala.collection.immutable.Stream[Int]]
-1 times = 6ms
-
-
-
-cats.Eq[scala.collection.immutable.Stream[Int]]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.Eq[scala.collection.immutable.Stream[Int]]->shapeless.IsTuple[scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 4ms
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-(=> Any => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-24 times = 4ms
-
-
-
-String('deleteGoField') => ?{def should: ?}
-
-String('deleteGoField') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('deleteGoField') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 66ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-String('data') => ?{def ->: ?}
-
-String('data') => ?{def ->: ?}
-2 times = 3ms
-
-
-
-String('withString') => ?{def should: ?}
-
-String('withString') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('withString') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int)]
-1 times = 43ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-io.circe.Encoder[AccumulatingDecoderSpec.this.BadSample]
-
-io.circe.Encoder[AccumulatingDecoderSpec.this.BadSample]
-1 times = 2ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[AccumulatingDecoderSpec.this.BadSample]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[AccumulatingDecoderSpec.this.BadSample]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[AccumulatingDecoderSpec.this.BadSample]->io.circe.export.Exported[io.circe.ObjectEncoder[AccumulatingDecoderSpec.this.BadSample]]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 145ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 16ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 21ms
-
-
-
-org.scalacheck.util.Buildable[io.circe.Json,Vector[io.circe.Json]]
-
-org.scalacheck.util.Buildable[io.circe.Json,Vector[io.circe.Json]]
-6 times = 6ms
-
-
-
-org.scalacheck.util.Buildable[io.circe.Json,Vector[io.circe.Json]]->scala.collection.generic.CanBuildFrom[F,io.circe.Json,Vector[io.circe.Json]]
-
-
-
-
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Int => Int]]
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Int => Int]]
-2 times = 44ms
-
-
-
-org.scalacheck.Arbitrary[Int => Int]
-
-org.scalacheck.Arbitrary[Int => Int]
-6 times = 95ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Int => Int]]->org.scalacheck.Arbitrary[Int => Int]
-
-
-
-
-
-Fractional[Int]
-
-Fractional[Int]
-96 times = 98ms
-
-
-
-cats.kernel.Eq[io.circe.Encoder[Int]]
-
-cats.kernel.Eq[io.circe.Encoder[Int]]
-2 times = 11ms
-
-
-
-shapeless.IsTuple[io.circe.Encoder[Int]]
-
-shapeless.IsTuple[io.circe.Encoder[Int]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[io.circe.Encoder[Int]]->shapeless.IsTuple[io.circe.Encoder[Int]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Encoder[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, Int),scala.collection.immutable.Map[String,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(String, Int),scala.collection.immutable.Map[String,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(String, Int),scala.collection.immutable.Map[String,Int]]->scala.collection.generic.CanBuildFrom[F,(String, Int),scala.collection.immutable.Map[String,Int]]
-
-
-
-
-
-io.circe.JsonObject => ?{def ===: ?}
-
-io.circe.JsonObject => ?{def ===: ?}
-6 times = 32ms
-
-
-
-io.circe.JsonObject => ?{def ===: ?}->cats.Eq[io.circe.JsonObject]
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc18]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc18]
-1 times = 5ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc18]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc18]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc18]->shapeless.IsTuple[ProductCodecSuite.this.Cc18]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-1 times = 0ms
-
-
-
-String('values') => ?{def should: ?}
-
-String('values') => ?{def should: ?}
-2 times = 1ms
-
-
-
-String('values') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(java.util.UUID, Int),scala.collection.immutable.Map[java.util.UUID,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(java.util.UUID, Int),scala.collection.immutable.Map[java.util.UUID,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(java.util.UUID, Int),scala.collection.immutable.Map[java.util.UUID,Int]]->scala.collection.generic.CanBuildFrom[F,(java.util.UUID, Int),scala.collection.immutable.Map[java.util.UUID,Int]]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.SortedMap[Long,Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.SortedMap[Long,Int]]
-1 times = 14ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.SortedMap[Long,Int]]->scala.reflect.ClassTag[scala.collection.immutable.SortedMap[Long,Int]]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]
-
-org.scalacheck.util.Buildable[(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]
-2 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.SortedMap[Long,Int]]->org.scalacheck.util.Buildable[(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]
-
-
-
-
-
-scala.collection.immutable.SortedMap[Long,Int] => Traversable[(Long, Int)]
-
-scala.collection.immutable.SortedMap[Long,Int] => Traversable[(Long, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.SortedMap[Long,Int]]->scala.collection.immutable.SortedMap[Long,Int] => Traversable[(Long, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.SortedMap[Long,Int]]->org.scalacheck.Arbitrary[(Long, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.SortedMap[Long,Int]]
-
-org.scalacheck.Shrink[scala.collection.immutable.SortedMap[Long,Int]]
-1 times = 14ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.SortedMap[Long,Int]]->org.scalacheck.Shrink[(Long, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.SortedMap[Long,Int]]->org.scalacheck.util.Buildable[(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.SortedMap[Long,Int]]->scala.collection.immutable.SortedMap[Long,Int] => Traversable[(Long, Int)]
-
-
-
-
-
-Integral[scala.collection.immutable.SortedMap[Long,Int]]
-
-Integral[scala.collection.immutable.SortedMap[Long,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.SortedMap[Long,Int]]->Integral[scala.collection.immutable.SortedMap[Long,Int]]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]
-1 times = 2ms
-
-
-
-org.scalacheck.util.Buildable[(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]->scala.collection.generic.CanBuildFrom[F,(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]
-
-
-
-
-
-Integral[String => Boolean]
-
-Integral[String => Boolean]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Short]->scala.reflect.ClassTag[Short]
-
-
-
-
-
-org.scalacheck.Shrink[(java.util.UUID, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-org.scalacheck.Shrink[java.util.UUID]
-
-org.scalacheck.Shrink[java.util.UUID]
-2 times = 7ms
-
-
-
-org.scalacheck.Shrink[(java.util.UUID, Int)]->org.scalacheck.Shrink[java.util.UUID]
-
-
-
-
-
-Integral[(java.util.UUID, Int)]
-
-Integral[(java.util.UUID, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(java.util.UUID, Int)]->Integral[(java.util.UUID, Int)]
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc19]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc19]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc19]->shapeless.IsTuple[ProductCodecSuite.this.Cc19]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Decoder[Int]]
-
-cats.kernel.Eq[io.circe.Decoder[Int]]
-5 times = 22ms
-
-
-
-cats.kernel.Eq[io.circe.Decoder[Int]]->shapeless.IsTuple[io.circe.Decoder[Int]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Decoder[Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Symbol,Int]]
-
-cats.kernel.Eq[scala.collection.immutable.Map[Symbol,Int]]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Symbol,Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[Either[Int,String]],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[Either[Int,String]],Int,That]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 46ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-1 times = 0ms
-
-
-
-AccumulatingDecoderSpec.this.BadSample => ?{def asJson: ?}
-
-AccumulatingDecoderSpec.this.BadSample => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-shapeless.IsTuple[cats.data.NonEmptyVector[Int]]
-
-shapeless.IsTuple[cats.data.NonEmptyVector[Int]]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-1 times = 0ms
-
-
-
-String('mapValues') => ?{def should: ?}
-
-String('mapValues') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('mapValues') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[Either[Int,String]],io.circe.Json,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[Either[Int,String]],io.circe.Json,That]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[String,Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[String,Int]]
-1 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[String,Int]]->scala.reflect.ClassTag[scala.collection.immutable.Map[String,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[String,Int]]->scala.collection.immutable.Map[String,Int] => Traversable[(String, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[String,Int]]->org.scalacheck.util.Buildable[(String, Int),scala.collection.immutable.Map[String,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Int)]
-
-org.scalacheck.Arbitrary[(String, Int)]
-4 times = 33ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[String,Int]]->org.scalacheck.Arbitrary[(String, Int)]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-(=> (Any, Any) => Nothing) => LargeNumberDecoderTests.this.PropertyCheckConfigParam
-
-(=> (Any, Any) => Nothing) => LargeNumberDecoderTests.this.PropertyCheckConfigParam
-2 times = 3ms
-
-
-
-cats.functor.Invariant[io.circe.KeyDecoder]
-
-cats.functor.Invariant[io.circe.KeyDecoder]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc15]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc15]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 128ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-12 times = 765ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-
-(=> (Any, Any) => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-3 times = 0ms
-
-
-
-org.scalacheck.Shrink[Vector[Int]]
-
-org.scalacheck.Shrink[Vector[Int]]
-1 times = 7ms
-
-
-
-org.scalacheck.Shrink[Vector[Int]]->Vector[Int] => Traversable[Int]
-
-
-
-
-
-Integral[Vector[Int]]
-
-Integral[Vector[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Vector[Int]]->Integral[Vector[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[Vector[Int]]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-org.scalacheck.util.Buildable[Int,Vector[Int]]
-
-org.scalacheck.util.Buildable[Int,Vector[Int]]
-2 times = 1ms
-
-
-
-org.scalacheck.Shrink[Vector[Int]]->org.scalacheck.util.Buildable[Int,Vector[Int]]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-1 times = 0ms
-
-
-
-String('0') => ?{def ->: ?}
-
-String('0') => ?{def ->: ?}
-8 times = 5ms
-
-
-
-io.circe.Encoder[Byte]
-
-io.circe.Encoder[Byte]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc6]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc6]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc6]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc6]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc6]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc6]
-
-
-
-
-
-Integral[scala.math.BigInt]
-
-Integral[scala.math.BigInt]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[io.circe.JsonNumber]->shapeless.IsTuple[io.circe.JsonNumber]
-
-
-
-
-
-io.circe.Decoder[(Int,)]
-
-io.circe.Decoder[(Int,)]
-1 times = 16ms
-
-
-
-io.circe.Decoder[(Int,)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int,)]->scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with (Int,)]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int,)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int,)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int,)]->io.circe.export.Exported[io.circe.Decoder[(Int,)]]
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc12]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc12]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc12]->shapeless.IsTuple[ProductCodecSuite.this.Cc12]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-org.scalacheck.Arbitrary[List[Either[String,(String, io.circe.Json, Boolean)]]]
-1 times = 35ms
-
-
-
-org.scalacheck.Arbitrary[List[Either[String,(String, io.circe.Json, Boolean)]]]->List[Either[String,(String, io.circe.Json, Boolean)]] => Traversable[Either[String,(String, io.circe.Json, Boolean)]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Either[String,(String, io.circe.Json, Boolean)]]]->org.scalacheck.Arbitrary[Either[String,(String, io.circe.Json, Boolean)]]
-
-
-
-
-
-scala.reflect.ClassTag[List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-scala.reflect.ClassTag[List[Either[String,(String, io.circe.Json, Boolean)]]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[List[Either[String,(String, io.circe.Json, Boolean)]]]->scala.reflect.ClassTag[List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Either[String,(String, io.circe.Json, Boolean)]]]->org.scalacheck.util.Buildable[Either[String,(String, io.circe.Json, Boolean)],List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc5]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc5]
-1 times = 5ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc5]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc5]]
-
-
-
-
-
-org.scalacheck.Arbitrary[BigInt]
-
-org.scalacheck.Arbitrary[BigInt]
-2 times = 22ms
-
-
-
-scala.reflect.ClassTag[BigInt]
-
-scala.reflect.ClassTag[BigInt]
-2 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[BigInt]->scala.reflect.ClassTag[BigInt]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.Set[io.circe.Json]]
-
-io.circe.Encoder[scala.collection.immutable.Set[io.circe.Json]]
-1 times = 3ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.Set[io.circe.Json]]->io.circe.Encoder[io.circe.Json]
-
-
-
-
-
-String('nonEmpty') => ?{def should: ?}
-
-String('nonEmpty') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('nonEmpty') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.Eq[Float]
-
-cats.Eq[Float]
-3 times = 10ms
-
-
-
-cats.Eq[Float]->shapeless.IsTuple[Float]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,Vector[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,Vector[Int]]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => ((?A, ?B) => ?ASSERTION)
-
-(=> (Any, Any, Any) => Nothing) => ((?A, ?B) => ?ASSERTION)
-1 times = 0ms
-
-
-
-io.circe.Encoder[WeekDay$1.Value]
-
-io.circe.Encoder[WeekDay$1.Value]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[Int :: shapeless.HNil]
-
-shapeless.IsTuple[Int :: shapeless.HNil]
-4 times = 3ms
-
-
-
-shapeless.IsTuple[Test$3]
-
-shapeless.IsTuple[Test$3]
-2 times = 1ms
-
-
-
-(=> Any => Nothing) => PrinterWriterReuseSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => PrinterWriterReuseSuite.this.PropertyCheckConfigParam
-1 times = 1ms
-
-
-
-cats.Eq[List[io.circe.CursorOp]]->cats.kernel.PartialOrder[io.circe.CursorOp]
-
-
-
-
-
-cats.Eq[List[io.circe.CursorOp]]->cats.kernel.Eq[io.circe.CursorOp]
-
-
-
-
-
-cats.Eq[List[io.circe.CursorOp]]->shapeless.IsTuple[List[io.circe.CursorOp]]
-
-
-
-
-
-cats.kernel.Order[io.circe.CursorOp]
-
-cats.kernel.Order[io.circe.CursorOp]
-32 times = 26ms
-
-
-
-cats.Eq[List[io.circe.CursorOp]]->cats.kernel.Order[io.circe.CursorOp]
-
-
-
-
-
-scala.reflect.ClassTag[Map[String,Either[Int,String]]]
-
-scala.reflect.ClassTag[Map[String,Either[Int,String]]]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[io.circe.tests.examples.Foo]
-
-shapeless.IsTuple[io.circe.tests.examples.Foo]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[scala.collection.immutable.SortedMap[Long,Int]]
-
-io.circe.Decoder[scala.collection.immutable.SortedMap[Long,Int]]
-1 times = 9ms
-
-
-
-io.circe.Decoder[scala.collection.immutable.SortedMap[Long,Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[scala.collection.immutable.SortedMap[Long,Int]]->scala.collection.generic.CanBuildFrom[Nothing,(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]
-
-
-
-
-
-io.circe.Decoder[scala.collection.immutable.SortedMap[Long,Int]]->io.circe.KeyDecoder[Long]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-1 times = 0ms
-
-
-
-JsonObjectSuite.this.PropertyCheckConfigurable
-
-JsonObjectSuite.this.PropertyCheckConfigurable
-19 times = 6ms
-
-
-
-shapeless.IsTuple[String :: io.circe.Json :: shapeless.HNil]
-
-shapeless.IsTuple[String :: io.circe.Json :: shapeless.HNil]
-2 times = 1ms
-
-
-
-cats.Eq[String]->shapeless.IsTuple[String]
-
-
-
-
-
-String('field') => ?{def should: ?}
-
-String('field') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('field') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> Any => Nothing) => JsonSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => JsonSuite.this.PropertyCheckConfigParam
-14 times = 3ms
-
-
-
-shapeless.IsTuple[cats.data.Validated[String,Int]]
-
-shapeless.IsTuple[cats.data.Validated[String,Int]]
-1 times = 0ms
-
-
-
-((Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-
-((Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[(Int, String, Char),L]
-
-shapeless.Generic.Aux[(Int, String, Char),L]
-1 times = 8ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc10]
-
-Fractional[ProductCodecSuite.this.Cc10]
-1 times = 1ms
-
-
-
-String('A JSON boolean') => ?{def should: ?}
-
-String('A JSON boolean') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('A JSON boolean') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.functor.Contravariant[io.circe.ObjectEncoder]
-
-cats.functor.Contravariant[io.circe.ObjectEncoder]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int)]
-1 times = 74ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int),L]
-1 times = 12ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int),L]
-
-
-
-
-
-String('Show[ParsingFailure]') => ?{def should: ?}
-
-String('Show[ParsingFailure]') => ?{def should: ?}
-1 times = 6ms
-
-
-
-String('Show[ParsingFailure]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc4]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc4]
-1 times = 2ms
-
-
-
-String('fromDoubleOrNull') => ?{def should: ?}
-
-String('fromDoubleOrNull') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('fromDoubleOrNull') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc12]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc12]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc12]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc12]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc12]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc12]
-
-
-
-
-
-org.scalacheck.Arbitrary[MemoizedPiecesSuite.this.Depths]
-
-org.scalacheck.Arbitrary[MemoizedPiecesSuite.this.Depths]
-1 times = 8ms
-
-
-
-scala.reflect.ClassTag[MemoizedPiecesSuite.this.Depths]
-
-scala.reflect.ClassTag[MemoizedPiecesSuite.this.Depths]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[MemoizedPiecesSuite.this.Depths]->scala.reflect.ClassTag[MemoizedPiecesSuite.this.Depths]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 188ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 17ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-1 times = 0ms
-
-
-
-String('An optional object field decoder') => ?{def should: ?}
-
-String('An optional object field decoder') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('An optional object field decoder') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc22]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc22]
-1 times = 4ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc22]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc22]]
-
-
-
-
-
-String('withBoolean') => ?{def should: ?}
-
-String('withBoolean') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('withBoolean') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[Seq[Int]]
-
-org.scalacheck.Shrink[Seq[Int]]
-1 times = 6ms
-
-
-
-org.scalacheck.Shrink[Seq[Int]]->Seq[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.Shrink[Seq[Int]]->org.scalacheck.util.Buildable[Int,Seq[Int]]
-
-
-
-
-
-Integral[Seq[Int]]
-
-Integral[Seq[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Seq[Int]]->Integral[Seq[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[Seq[Int]]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Set[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Set[Int]]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc11]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc11]]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => JsonNumberSuite.this.PropertyCheckConfigParam
-
-((Any, Any) => Nothing) => JsonNumberSuite.this.PropertyCheckConfigParam
-3 times = 0ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-1 times = 0ms
-
-
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-
-(=> (Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-1 times = 2ms
-
-
-
-Fractional[(String, io.circe.Json)]
-
-Fractional[(String, io.circe.Json)]
-5 times = 4ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc1]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc1]
-1 times = 7ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc1]->shapeless.IsTuple[ProductCodecSuite.this.Cc1]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Seq[Int]]
-
-io.circe.Decoder[Seq[Int]]
-4 times = 17ms
-
-
-
-io.circe.Decoder[Seq[Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-Integral[java.util.UUID]
-
-Integral[java.util.UUID]
-2 times = 1ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-1 times = 0ms
-
-
-
-PrinterWriterReuseSuite.this.PatienceConfig
-
-PrinterWriterReuseSuite.this.PatienceConfig
-1 times = 1ms
-
-
-
-SyntaxSuite.this.PropertyCheckConfigurable
-
-SyntaxSuite.this.PropertyCheckConfigurable
-2 times = 0ms
-
-
-
-io.circe.Encoder[Double]
-
-io.circe.Encoder[Double]
-8 times = 12ms
-
-
-
-cats.kernel.Eq[io.circe.ArrayEncoder[Int]]
-
-cats.kernel.Eq[io.circe.ArrayEncoder[Int]]
-2 times = 10ms
-
-
-
-shapeless.IsTuple[io.circe.ArrayEncoder[Int]]
-
-shapeless.IsTuple[io.circe.ArrayEncoder[Int]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[io.circe.ArrayEncoder[Int]]->shapeless.IsTuple[io.circe.ArrayEncoder[Int]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.ArrayEncoder[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Shrink[List[io.circe.CursorOp]]
-
-org.scalacheck.Shrink[List[io.circe.CursorOp]]
-2 times = 13ms
-
-
-
-org.scalacheck.Shrink[List[io.circe.CursorOp]]->Integral[List[io.circe.CursorOp]]
-
-
-
-
-
-org.scalacheck.Shrink[List[io.circe.CursorOp]]->org.scalacheck.util.Buildable[io.circe.CursorOp,List[io.circe.CursorOp]]
-
-
-
-
-
-List[io.circe.CursorOp] => Traversable[io.circe.CursorOp]
-
-List[io.circe.CursorOp] => Traversable[io.circe.CursorOp]
-2 times = 0ms
-
-
-
-org.scalacheck.Shrink[List[io.circe.CursorOp]]->List[io.circe.CursorOp] => Traversable[io.circe.CursorOp]
-
-
-
-
-
-org.scalacheck.Shrink[io.circe.CursorOp]
-
-org.scalacheck.Shrink[io.circe.CursorOp]
-2 times = 5ms
-
-
-
-org.scalacheck.Shrink[List[io.circe.CursorOp]]->org.scalacheck.Shrink[io.circe.CursorOp]
-
-
-
-
-
-actual.type => ?{def ===: ?}
-
-actual.type => ?{def ===: ?}
-1 times = 5ms
-
-
-
-actual.type => ?{def ===: ?}->cats.Eq[io.circe.Json]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with cats.data.NonEmptyList[Int]]
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with cats.data.NonEmptyList[Int]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc11]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc11]
-1 times = 4ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc11]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc11]]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => ((?A, ?B) => ?ASSERTION)
-
-((Any, Any, Any) => Nothing) => ((?A, ?B) => ?ASSERTION)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Int => Int]->org.scalacheck.Arbitrary[(Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int => Int]->scala.reflect.ClassTag[Int => Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int => Int]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Int, Int),Int => Int]
-
-org.scalacheck.util.Buildable[(Int, Int),Int => Int]
-4 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[Int => Int]->org.scalacheck.util.Buildable[(Int, Int),Int => Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int => Int]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-cats.Eq[Test$3]
-
-cats.Eq[Test$3]
-2 times = 7ms
-
-
-
-cats.Eq[Test$3]->shapeless.IsTuple[Test$3]
-
-
-
-
-
-List[Option[io.circe.Json]] => ?{def ===: ?}
-
-List[Option[io.circe.Json]] => ?{def ===: ?}
-4 times = 81ms
-
-
-
-cats.Eq[List[Option[io.circe.Json]]]
-
-cats.Eq[List[Option[io.circe.Json]]]
-8 times = 151ms
-
-
-
-List[Option[io.circe.Json]] => ?{def ===: ?}->cats.Eq[List[Option[io.circe.Json]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc9]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc9]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc9]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc9]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc16]
-
-Integral[ProductCodecSuite.this.Cc16]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, String, Char)]
-
-cats.kernel.Eq[(Int, String, Char)]
-1 times = 112ms
-
-
-
-cats.kernel.Eq[(Int, String, Char)]->cats.kernel.Order[Char]
-
-
-
-
-
-cats.kernel.Eq[(Int, String, Char)]->cats.kernel.Order[String]
-
-
-
-
-
-cats.kernel.Eq[(Int, String, Char)]->cats.kernel.PartialOrder[Char]
-
-
-
-
-
-cats.kernel.Eq[(Int, String, Char)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, String, Char)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, String, Char)]->cats.kernel.Eq[Int :: String :: Char :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[(Int, String, Char)]->cats.kernel.PartialOrder[String]
-
-
-
-
-
-cats.kernel.Eq[(Int, String, Char)]->shapeless.IsTuple[(Int, String, Char)]
-
-
-
-
-
-cats.kernel.Eq[(Int, String, Char)]->shapeless.Generic.Aux[(Int, String, Char),L]
-
-
-
-
-
-List[io.circe.Json] => ?{def ===: ?}
-
-List[io.circe.Json] => ?{def ===: ?}
-2 times = 20ms
-
-
-
-List[io.circe.Json] => ?{def ===: ?}->cats.Eq[List[io.circe.Json]]
-
-
-
-
-
-String('failedWithMessage') => ?{def should: ?}
-
-String('failedWithMessage') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('failedWithMessage') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 66ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.CursorOp],io.circe.CursorOp,That]
-
-scala.collection.generic.CanBuildFrom[List[io.circe.CursorOp],io.circe.CursorOp,That]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 79ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 9ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 4ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-io.circe.Encoder[Char]
-
-io.circe.Encoder[Char]
-3 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc4]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc4]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[scala.util.Either[Unit,Int]]]
-
-cats.kernel.Eq[io.circe.KeyDecoder[scala.util.Either[Unit,Int]]]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[scala.util.Either[Unit,Int]]
-
-cats.kernel.Eq[scala.util.Either[Unit,Int]]
-1 times = 3ms
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[scala.util.Either[Unit,Int]]]->cats.kernel.Eq[scala.util.Either[Unit,Int]]
-
-
-
-
-
-PrinterWriterReuseSuite.this.PropertyCheckConfigurable
-
-PrinterWriterReuseSuite.this.PropertyCheckConfigurable
-1 times = 1ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc5]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc5]
-1 times = 5ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc5]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc5]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc5]->shapeless.IsTuple[ProductCodecSuite.this.Cc5]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-1 times = 0ms
-
-
-
-Integral[scala.util.Either[Int,String]]
-
-Integral[scala.util.Either[Int,String]]
-1 times = 0ms
-
-
-
-cats.Eq[Option[Long]]
-
-cats.Eq[Option[Long]]
-20 times = 73ms
-
-
-
-cats.Eq[Option[Long]]->cats.kernel.Order[Long]
-
-
-
-
-
-cats.kernel.Eq[io.circe.Decoder[scala.util.Either[io.circe.DecodingFailure,Int]]]
-
-cats.kernel.Eq[io.circe.Decoder[scala.util.Either[io.circe.DecodingFailure,Int]]]
-1 times = 13ms
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Int]]
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Int]]
-1 times = 10ms
-
-
-
-cats.kernel.Eq[io.circe.Decoder[scala.util.Either[io.circe.DecodingFailure,Int]]]->cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Int]]
-
-
-
-
-
-io.circe.Decoder[Vector[T]]
-
-io.circe.Decoder[Vector[T]]
-1 times = 2ms
-
-
-
-io.circe.Decoder[T]
-
-io.circe.Decoder[T]
-3 times = 0ms
-
-
-
-io.circe.Decoder[Vector[T]]->io.circe.Decoder[T]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-1 times = 0ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-
-(Any => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Boolean]->Integral[Boolean]
-
-
-
-
-
-Fractional[Boolean]
-
-Fractional[Boolean]
-3 times = 2ms
-
-
-
-org.scalacheck.Shrink[Boolean]->Fractional[Boolean]
-
-
-
-
-
-Option[String] => ?{def ===: ?}
-
-Option[String] => ?{def ===: ?}
-1 times = 4ms
-
-
-
-Option[String] => ?{def ===: ?}->cats.Eq[Option[String]]
-
-
-
-
-
-cats.kernel.PartialOrder[Vector[io.circe.Json]]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-cats.kernel.PartialOrder[Vector[io.circe.Json]]->cats.kernel.PartialOrder[io.circe.Json]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with cats.data.NonEmptyVector[Int]]
-
-scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with cats.data.NonEmptyVector[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Unit]]
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Unit]]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Unit]]->org.scalacheck.Arbitrary[Unit]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc22]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc22]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[io.circe.numbers.testing.JsonNumberString]
-
-scala.reflect.ClassTag[io.circe.numbers.testing.JsonNumberString]
-1 times = 0ms
-
-
-
-io.circe.Decoder.Result[(Int, String, Char)] => ?{def ===: ?}
-
-io.circe.Decoder.Result[(Int, String, Char)] => ?{def ===: ?}
-1 times = 129ms
-
-
-
-cats.Eq[io.circe.Decoder.Result[(Int, String, Char)]]
-
-cats.Eq[io.circe.Decoder.Result[(Int, String, Char)]]
-1 times = 127ms
-
-
-
-io.circe.Decoder.Result[(Int, String, Char)] => ?{def ===: ?}->cats.Eq[io.circe.Decoder.Result[(Int, String, Char)]]
-
-
-
-
-
-cats.kernel.PartialOrder[List[(String, io.circe.Json)]]->cats.kernel.PartialOrder[(String, io.circe.Json)]
-
-
-
-
-
-cats.kernel.PartialOrder[List[(String, io.circe.Json)]]->cats.kernel.Order[(String, io.circe.Json)]
-
-
-
-
-
-io.circe.Decoder[Byte]
-
-io.circe.Decoder[Byte]
-4 times = 10ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-String('withFocusM') => ?{def should: ?}
-
-String('withFocusM') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('withFocusM') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[Short]->Integral[Short]
-
-
-
-
-
-Fractional[Short]
-
-Fractional[Short]
-4 times = 3ms
-
-
-
-org.scalacheck.Shrink[Short]->Fractional[Short]
-
-
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-
-(Any => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(io.circe.Json, io.circe.Json, io.circe.Json)]
-
-io.circe.Encoder[(io.circe.Json, io.circe.Json, io.circe.Json)]
-1 times = 9ms
-
-
-
-io.circe.Encoder[(io.circe.Json, io.circe.Json, io.circe.Json)]->io.circe.Encoder[io.circe.Json]
-
-
-
-
-
-io.circe.Encoder[None.type]
-
-io.circe.Encoder[None.type]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[List[io.circe.Json]]
-
-org.scalacheck.Shrink[List[io.circe.Json]]
-13 times = 83ms
-
-
-
-org.scalacheck.Shrink[List[io.circe.Json]]->Integral[List[io.circe.Json]]
-
-
-
-
-
-org.scalacheck.Shrink[List[io.circe.Json]]->List[io.circe.Json] => Traversable[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Shrink[List[io.circe.Json]]->org.scalacheck.Shrink[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Shrink[List[io.circe.Json]]->Fractional[List[io.circe.Json]]
-
-
-
-
-
-org.scalacheck.util.Buildable[io.circe.Json,List[io.circe.Json]]
-
-org.scalacheck.util.Buildable[io.circe.Json,List[io.circe.Json]]
-26 times = 30ms
-
-
-
-org.scalacheck.Shrink[List[io.circe.Json]]->org.scalacheck.util.Buildable[io.circe.Json,List[io.circe.Json]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Either[Int,String])]
-
-org.scalacheck.Arbitrary[(String, Either[Int,String])]
-1 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[(String, Either[Int,String])]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-scala.reflect.ClassTag[(String, Either[Int,String])]
-
-scala.reflect.ClassTag[(String, Either[Int,String])]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(String, Either[Int,String])]->scala.reflect.ClassTag[(String, Either[Int,String])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Either[Int,String])]->org.scalacheck.Arbitrary[Either[Int,String]]
-
-
-
-
-
-String('size') => ?{def should: ?}
-
-String('size') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('size') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Integral[scala.collection.immutable.Set[Int]]
-
-Integral[scala.collection.immutable.Set[Int]]
-1 times = 0ms
-
-
-
-String('toIterable') => ?{def should: ?}
-
-String('toIterable') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('toIterable') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,Double]]
-
-io.circe.Encoder[scala.collection.immutable.Map[String,Double]]
-5 times = 14ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,Double]]->io.circe.KeyEncoder[String]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,Double]]->io.circe.Encoder[Double]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 32ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 61ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-org.scalacheck.Gen.Choose[Int]
-
-org.scalacheck.Gen.Choose[Int]
-3 times = 9ms
-
-
-
-(=> (Any, Any) => Nothing) => ACursorSuite.this.PropertyCheckConfigParam
-
-(=> (Any, Any) => Nothing) => ACursorSuite.this.PropertyCheckConfigParam
-5 times = 1ms
-
-
-
-String(' ') => ?{def *: ?}
-
-String(' ') => ?{def *: ?}
-16 times = 32ms
-
-
-
-shapeless.IsTuple[io.circe.Decoder.Result[(Int, String, Char)]]
-
-shapeless.IsTuple[io.circe.Decoder.Result[(Int, String, Char)]]
-1 times = 1ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc14]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc14]
-1 times = 3ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc14]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc14]]
-
-
-
-
-
-String('Decoder[Double]') => ?{def should: ?}
-
-String('Decoder[Double]') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('Decoder[Double]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc13]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc13]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc7]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc7]
-1 times = 1ms
-
-
-
-a.type => ?{def isNaN: ?}
-
-a.type => ?{def isNaN: ?}
-1 times = 5ms
-
-
-
-io.circe.Decoder[BigInt]
-
-io.circe.Decoder[BigInt]
-3 times = 13ms
-
-
-
-cats.kernel.Order[Vector[String]]
-
-cats.kernel.Order[Vector[String]]
-2 times = 3ms
-
-
-
-cats.kernel.Order[Vector[String]]->cats.kernel.Order[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Unit]->scala.reflect.ClassTag[Unit]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],(String, io.circe.Json),That]
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],(String, io.circe.Json),That]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 31ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-(((String, io.circe.Json)) => Boolean) => Traversable[((String, io.circe.Json), Boolean)]
-
-(((String, io.circe.Json)) => Boolean) => Traversable[((String, io.circe.Json), Boolean)]
-1 times = 0ms
-
-
-
-resultAlias.type => ?{def ===: ?}
-
-resultAlias.type => ?{def ===: ?}
-1 times = 10ms
-
-
-
-resultAlias.type => ?{def ===: ?}->cats.Eq[List[io.circe.Json]]
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-1 times = 0ms
-
-
-
-String('lefts') => ?{def should: ?}
-
-String('lefts') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('lefts') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc4]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc4]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc4]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc4]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => AccumulatingDecoderSpec.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => AccumulatingDecoderSpec.this.PropertyCheckConfigParam
-6 times = 1ms
-
-
-
-io.circe.Decoder[None.type]
-
-io.circe.Decoder[None.type]
-1 times = 2ms
-
-
-
-org.scalacheck.util.Buildable[io.circe.Json,List[io.circe.Json]]->scala.collection.generic.CanBuildFrom[F,io.circe.Json,List[io.circe.Json]]
-
-
-
-
-
-String('Decoder[Int]') => ?{def should: ?}
-
-String('Decoder[Int]') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('Decoder[Int]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[String,Char,That]
-
-scala.collection.generic.CanBuildFrom[String,Char,That]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[Unit]
-
-org.scalacheck.Cogen[Unit]
-1 times = 2ms
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 18ms
-
-
-
-org.scalacheck.Shrink[Array[String]]
-
-org.scalacheck.Shrink[Array[String]]
-1 times = 7ms
-
-
-
-org.scalacheck.Shrink[Array[String]]->Array[String] => Traversable[String]
-
-
-
-
-
-org.scalacheck.Shrink[Array[String]]->org.scalacheck.Shrink[String]
-
-
-
-
-
-org.scalacheck.Shrink[Array[String]]->org.scalacheck.util.Buildable[String,Array[String]]
-
-
-
-
-
-Integral[Array[String]]
-
-Integral[Array[String]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Array[String]]->Integral[Array[String]]
-
-
-
-
-
-org.scalacheck.Shrink[(Byte, Int)]->Integral[(Byte, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Byte, Int)]->org.scalacheck.Shrink[Byte]
-
-
-
-
-
-org.scalacheck.Shrink[(Byte, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Traversable[String] with Array[String]]
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Traversable[String] with Array[String]]
-1 times = 2ms
-
-
-
-io.circe.Decoder.Result[Test$3] => ?{def ===: ?}
-
-io.circe.Decoder.Result[Test$3] => ?{def ===: ?}
-1 times = 1ms
-
-
-
-String('truncateToByte') => ?{def should: ?}
-
-String('truncateToByte') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('truncateToByte') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc20]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc20]
-1 times = 6ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc20]->Fractional[ProductCodecSuite.this.Cc20]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc20]
-
-Integral[ProductCodecSuite.this.Cc20]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc20]->Integral[ProductCodecSuite.this.Cc20]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc17]
-
-Integral[ProductCodecSuite.this.Cc17]
-1 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc10]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc10]]
-1 times = 0ms
-
-
-
-io.circe.KeyEncoder[java.util.UUID]
-
-io.circe.KeyEncoder[java.util.UUID]
-1 times = 0ms
-
-
-
-String('truncateToLong') => ?{def should: ?}
-
-String('truncateToLong') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('truncateToLong') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.IsTuple[Int]
-
-shapeless.IsTuple[Int]
-11 times = 7ms
-
-
-
-cats.kernel.Eq[Int]->shapeless.IsTuple[Int]
-
-
-
-
-
-cats.Eq[Int]->shapeless.IsTuple[Int]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(Int, String),scala.collection.Map[Int,String] with (Int, String)]
-
-scala.collection.generic.CanBuildFrom[Nothing,(Int, String),scala.collection.Map[Int,String] with (Int, String)]
-1 times = 0ms
-
-
-
-scala.util.Either[Int,String] => Traversable[(Int, String)]
-
-scala.util.Either[Int,String] => Traversable[(Int, String)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Byte]->scala.reflect.ClassTag[Byte]
-
-
-
-
-
-io.circe.Encoder[Seq[Long]]
-
-io.circe.Encoder[Seq[Long]]
-1 times = 4ms
-
-
-
-io.circe.Encoder[Seq[Long]]->io.circe.Encoder[Long]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc19]
-
-Integral[ProductCodecSuite.this.Cc19]
-1 times = 1ms
-
-
-
-String('top') => ?{def should: ?}
-
-String('top') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('top') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('+:') => ?{def should: ?}
-
-String('+:') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('+:') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc8]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc8]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc8]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc8]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc8]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc8]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[(io.circe.Json, Int)],(String, io.circe.Json),That]
-
-scala.collection.generic.CanBuildFrom[List[(io.circe.Json, Int)],(String, io.circe.Json),That]
-1 times = 0ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-1 times = 0ms
-
-
-
-cats.PartialOrder[io.circe.KeyDecoder[Either[Unit,Int]]]
-
-cats.PartialOrder[io.circe.KeyDecoder[Either[Unit,Int]]]
-1 times = 1ms
-
-
-
-cats.Eq[Option[io.circe.JsonObject]]->cats.kernel.Order[io.circe.JsonObject]
-
-
-
-
-
-cats.Eq[Option[io.circe.JsonObject]]->cats.kernel.PartialOrder[io.circe.JsonObject]
-
-
-
-
-
-cats.kernel.Eq[io.circe.JsonObject]
-
-cats.kernel.Eq[io.circe.JsonObject]
-8 times = 22ms
-
-
-
-cats.Eq[Option[io.circe.JsonObject]]->cats.kernel.Eq[io.circe.JsonObject]
-
-
-
-
-
-Integral[io.circe.CursorOp]
-
-Integral[io.circe.CursorOp]
-2 times = 1ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json)) => Boolean]
-
-org.scalacheck.Arbitrary[((String, io.circe.Json)) => Boolean]
-1 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json)) => Boolean]->org.scalacheck.Cogen[(String, io.circe.Json)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json)) => Boolean]->scala.reflect.ClassTag[((String, io.circe.Json)) => Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json)) => Boolean]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.util.Buildable[((String, io.circe.Json), Boolean),((String, io.circe.Json)) => Boolean]
-
-org.scalacheck.util.Buildable[((String, io.circe.Json), Boolean),((String, io.circe.Json)) => Boolean]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json)) => Boolean]->org.scalacheck.util.Buildable[((String, io.circe.Json), Boolean),((String, io.circe.Json)) => Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json), Boolean)]
-
-org.scalacheck.Arbitrary[((String, io.circe.Json), Boolean)]
-1 times = 10ms
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json)) => Boolean]->org.scalacheck.Arbitrary[((String, io.circe.Json), Boolean)]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-5 times = 506ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-6 times = 577ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-scala.reflect.ClassTag[String => Boolean]
-
-scala.reflect.ClassTag[String => Boolean]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.math.BigInt]
-
-org.scalacheck.Shrink[scala.math.BigInt]
-1 times = 3ms
-
-
-
-org.scalacheck.Shrink[scala.math.BigInt]->Fractional[scala.math.BigInt]
-
-
-
-
-
-org.scalacheck.Shrink[scala.math.BigInt]->Integral[scala.math.BigInt]
-
-
-
-
-
-Vector[io.circe.Json] => Traversable[io.circe.Json]
-
-Vector[io.circe.Json] => Traversable[io.circe.Json]
-3 times = 2ms
-
-
-
-(Any => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-
-(Any => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-1 times = 1ms
-
-
-
-io.circe.Decoder[Array[String]]
-
-io.circe.Decoder[Array[String]]
-1 times = 11ms
-
-
-
-io.circe.Decoder[Array[String]]->io.circe.Decoder[String]
-
-
-
-
-
-io.circe.Decoder[Array[String]]->scala.collection.generic.CanBuildFrom[Nothing,String,Traversable[String] with Array[String]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Array[String]]
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Array[String]]
-1 times = 1ms
-
-
-
-io.circe.Decoder[Array[String]]->scala.collection.generic.CanBuildFrom[Nothing,String,Array[String]]
-
-
-
-
-
-io.circe.Decoder[Set[T]]
-
-io.circe.Decoder[Set[T]]
-1 times = 7ms
-
-
-
-io.circe.Decoder[Set[T]]->io.circe.Decoder[T]
-
-
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-
-(Any => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-1 times = 0ms
-
-
-
-Unit => Throwable
-
-Unit => Throwable
-1 times = 0ms
-
-
-
-io.circe.Decoder.Result[WeekDay$2.Value] => ?{def isEmpty: ?}
-
-io.circe.Decoder.Result[WeekDay$2.Value] => ?{def isEmpty: ?}
-1 times = 2ms
-
-
-
-io.circe.Decoder.Result[WeekDay$2.Value] => ?{def isEmpty: ?}->cats.Foldable[io.circe.Decoder.Result]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[io.circe.Json],io.circe.Json,Iterable[io.circe.Json]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[io.circe.Json],io.circe.Json,Iterable[io.circe.Json]]
-1 times = 5ms
-
-
-
-String('An optional array position decoder') => ?{def should: ?}
-
-String('An optional array position decoder') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('An optional array position decoder') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Decoder[(String, String, String)]
-
-io.circe.Decoder[(String, String, String)]
-1 times = 10ms
-
-
-
-io.circe.Decoder[(String, String, String)]->io.circe.Decoder[String]
-
-
-
-
-
-io.circe.Decoder.Result[Short] => ?{def ===: ?}
-
-io.circe.Decoder.Result[Short] => ?{def ===: ?}
-1 times = 1ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]]
-
-org.scalacheck.Arbitrary[Vector[Int]]
-1 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]]->Vector[Int] => Traversable[Int]
-
-
-
-
-
-scala.reflect.ClassTag[Vector[Int]]
-
-scala.reflect.ClassTag[Vector[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]]->scala.reflect.ClassTag[Vector[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]]->org.scalacheck.util.Buildable[Int,Vector[Int]]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-1 times = 0ms
-
-
-
-io.circe.Decoder[io.circe.Json]
-
-io.circe.Decoder[io.circe.Json]
-11 times = 52ms
-
-
-
-String('apply') => ?{def should: ?}
-
-String('apply') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('apply') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-1 times = 0ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-
-(Any => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc22]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc22]
-1 times = 3ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc22]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc22]]
-
-
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json)]
-
-org.scalacheck.Shrink[(String, io.circe.Json)]
-5 times = 31ms
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json)]->org.scalacheck.Shrink[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json)]->Fractional[(String, io.circe.Json)]
-
-
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json)]->org.scalacheck.Shrink[String]
-
-
-
-
-
-Integral[(String, io.circe.Json)]
-
-Integral[(String, io.circe.Json)]
-5 times = 4ms
-
-
-
-org.scalacheck.Shrink[(String, io.circe.Json)]->Integral[(String, io.circe.Json)]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[scala.collection.immutable.Map[String,io.circe.Json]]
-
-shapeless.IsTuple[scala.collection.immutable.Map[String,io.circe.Json]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(java.util.UUID, Int)]->scala.reflect.ClassTag[(java.util.UUID, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[java.util.UUID]
-
-org.scalacheck.Arbitrary[java.util.UUID]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(java.util.UUID, Int)]->org.scalacheck.Arbitrary[java.util.UUID]
-
-
-
-
-
-org.scalacheck.Arbitrary[(java.util.UUID, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-Fractional[ProductCodecSuite.this.Cc21]
-
-Fractional[ProductCodecSuite.this.Cc21]
-1 times = 1ms
-
-
-
-cats.kernel.PartialOrder[Option[io.circe.Json]]
-
-cats.kernel.PartialOrder[Option[io.circe.Json]]
-8 times = 34ms
-
-
-
-cats.kernel.PartialOrder[Option[io.circe.Json]]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-cats.kernel.PartialOrder[Option[io.circe.Json]]->cats.kernel.PartialOrder[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Shrink[List[(String, io.circe.Json)]]
-
-org.scalacheck.Shrink[List[(String, io.circe.Json)]]
-5 times = 61ms
-
-
-
-org.scalacheck.Shrink[List[(String, io.circe.Json)]]->org.scalacheck.util.Buildable[(String, io.circe.Json),List[(String, io.circe.Json)]]
-
-
-
-
-
-org.scalacheck.Shrink[List[(String, io.circe.Json)]]->Fractional[List[(String, io.circe.Json)]]
-
-
-
-
-
-org.scalacheck.Shrink[List[(String, io.circe.Json)]]->List[(String, io.circe.Json)] => Traversable[(String, io.circe.Json)]
-
-
-
-
-
-org.scalacheck.Shrink[List[(String, io.circe.Json)]]->org.scalacheck.Shrink[(String, io.circe.Json)]
-
-
-
-
-
-Integral[List[(String, io.circe.Json)]]
-
-Integral[List[(String, io.circe.Json)]]
-5 times = 5ms
-
-
-
-org.scalacheck.Shrink[List[(String, io.circe.Json)]]->Integral[List[(String, io.circe.Json)]]
-
-
-
-
-
-org.scalacheck.util.Buildable[(String, Int),Map[String,Int]]
-
-org.scalacheck.util.Buildable[(String, Int),Map[String,Int]]
-8 times = 8ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, Int),Map[String,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(String, Int),Map[String,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(String, Int),Map[String,Int]]->scala.collection.generic.CanBuildFrom[F,(String, Int),Map[String,Int]]
-
-
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Set[Int]]
-
-cats.kernel.Eq[scala.collection.immutable.Set[Int]]
-1 times = 3ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Set[Int]]->shapeless.IsTuple[scala.collection.immutable.Set[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Int,Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Int,Int]]
-1 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Int,Int]]->org.scalacheck.Arbitrary[(Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Int,Int]]->scala.collection.immutable.Map[Int,Int] => Traversable[(Int, Int)]
-
-
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[Int,Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Map[Int,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Int,Int]]->scala.reflect.ClassTag[scala.collection.immutable.Map[Int,Int]]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Int, Int),scala.collection.immutable.Map[Int,Int]]
-
-org.scalacheck.util.Buildable[(Int, Int),scala.collection.immutable.Map[Int,Int]]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Map[Int,Int]]->org.scalacheck.util.Buildable[(Int, Int),scala.collection.immutable.Map[Int,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[io.circe.numbers.testing.JsonNumberString]
-
-org.scalacheck.Arbitrary[io.circe.numbers.testing.JsonNumberString]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.numbers.testing.JsonNumberString]->scala.reflect.ClassTag[io.circe.numbers.testing.JsonNumberString]
-
-
-
-
-
-scala.reflect.ClassTag[(Symbol, Int)]
-
-scala.reflect.ClassTag[(Symbol, Int)]
-1 times = 0ms
-
-
-
-String('f') => ?{def ->: ?}
-
-String('f') => ?{def ->: ?}
-5 times = 3ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-
-(Any => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-1 times = 0ms
-
-
-
-cats.Eq[Byte]
-
-cats.Eq[Byte]
-2 times = 7ms
-
-
-
-cats.Eq[Byte]->shapeless.IsTuple[Byte]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 28ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-String('JsonObject.apply') => ?{def should: ?}
-
-String('JsonObject.apply') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('JsonObject.apply') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]]
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]]
-1 times = 37ms
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]
-1 times = 35ms
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]]->cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc20]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc20]
-1 times = 1ms
-
-
-
-Integral[String]
-
-Integral[String]
-32 times = 31ms
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor20[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T]
-1 times = 0ms
-
-
-
-n2.type => ?{def ===: ?}
-
-n2.type => ?{def ===: ?}
-1 times = 4ms
-
-
-
-n2.type => ?{def ===: ?}->cats.Eq[io.circe.JsonNumber]
-
-
-
-
-
-(Any => Nothing) => PrinterWriterReuseSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => PrinterWriterReuseSuite.this.PropertyCheckConfigParam
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.ObjectEncoder[Int]]
-
-org.scalacheck.Arbitrary[io.circe.ObjectEncoder[Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.ObjectEncoder[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc2]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc2]
-1 times = 7ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc2]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc2]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc2]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc2]]
-
-
-
-
-
-cats.kernel.Monoid[Byte]
-
-cats.kernel.Monoid[Byte]
-1 times = 1ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-
-(Any => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-1 times = 0ms
-
-
-
-String => ?{def contains(x$1: ? >: Char('e')): ?}
-
-String => ?{def contains(x$1: ? >: Char('e')): ?}
-1 times = 1ms
-
-
-
-String('decodeSet') => ?{def should: ?}
-
-String('decodeSet') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('decodeSet') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc16]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc16]]
-1 times = 0ms
-
-
-
-io.circe.Encoder[Unit]
-
-io.circe.Encoder[Unit]
-1 times = 1ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 52ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-cats.Eq[Option[Vector[String]]]->cats.kernel.Eq[Vector[String]]
-
-
-
-
-
-cats.Eq[Option[Vector[String]]]->cats.kernel.Order[Vector[String]]
-
-
-
-
-
-org.scalatest.enablers.CheckerAsserting[Unit]
-
-org.scalatest.enablers.CheckerAsserting[Unit]
-2 times = 0ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Either[Int,String]]->Integral[Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Shrink[Either[Int,String]]->org.scalacheck.Shrink[String]
-
-
-
-
-
-org.scalacheck.Shrink[Either[Int,String]]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-ParserSuite.this.PropertyCheckConfigurable
-
-ParserSuite.this.PropertyCheckConfigurable
-1 times = 0ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc18]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc18]
-1 times = 4ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc18]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc18]]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-
-(=> (Any, Any, Any) => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,Int]]
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,Int]]
-1 times = 13ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,Int]]->org.scalacheck.Shrink[(Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,Int]]->scala.collection.immutable.Map[Int,Int] => Traversable[(Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,Int]]->org.scalacheck.util.Buildable[(Int, Int),scala.collection.immutable.Map[Int,Int]]
-
-
-
-
-
-Integral[scala.collection.immutable.Map[Int,Int]]
-
-Integral[scala.collection.immutable.Map[Int,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,Int]]->Integral[scala.collection.immutable.Map[Int,Int]]
-
-
-
-
-
-(Any => Nothing) => ((?A, ?B, ?C) => ?ASSERTION)
-
-(Any => Nothing) => ((?A, ?B, ?C) => ?ASSERTION)
-1 times = 0ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-
-(Any => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-1 times = 0ms
-
-
-
-Fractional[ProductCodecSuite.this.Cc5]
-
-Fractional[ProductCodecSuite.this.Cc5]
-1 times = 1ms
-
-
-
-(Any => Nothing) => SyntaxSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => SyntaxSuite.this.PropertyCheckConfigParam
-2 times = 0ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Either[String,(String, io.circe.Json, Boolean)]]->org.scalacheck.Shrink[(String, io.circe.Json, Boolean)]
-
-
-
-
-
-org.scalacheck.Shrink[Either[String,(String, io.circe.Json, Boolean)]]->Either[String,(String, io.circe.Json, Boolean)] => Traversable[(String, (String, io.circe.Json, Boolean))]
-
-
-
-
-
-org.scalacheck.Shrink[Either[String,(String, io.circe.Json, Boolean)]]->org.scalacheck.Shrink[String]
-
-
-
-
-
-Fractional[Either[String,(String, io.circe.Json, Boolean)]]
-
-Fractional[Either[String,(String, io.circe.Json, Boolean)]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Either[String,(String, io.circe.Json, Boolean)]]->Fractional[Either[String,(String, io.circe.Json, Boolean)]]
-
-
-
-
-
-Integral[Either[String,(String, io.circe.Json, Boolean)]]
-
-Integral[Either[String,(String, io.circe.Json, Boolean)]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Either[String,(String, io.circe.Json, Boolean)]]->Integral[Either[String,(String, io.circe.Json, Boolean)]]
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalacheck.Gen[=?Nothing]
-
-((Any, Any) => Nothing) => org.scalacheck.Gen[=?Nothing]
-1 times = 2ms
-
-
-
-io.circe.Decoder[(Int, String)]
-
-io.circe.Decoder[(Int, String)]
-1 times = 9ms
-
-
-
-io.circe.Decoder[(Int, String)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, String)]->io.circe.Decoder[String]
-
-
-
-
-
-io.circe.Decoder[(Int, String)]->io.circe.KeyDecoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, String)]->scala.collection.generic.CanBuildFrom[Nothing,(Int, String),scala.collection.Map[Int,String] with (Int, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 73ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-String('foldWith') => ?{def should: ?}
-
-String('foldWith') => ?{def should: ?}
-1 times = 6ms
-
-
-
-String('foldWith') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(Any => Nothing) => MemoizedPiecesSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => MemoizedPiecesSuite.this.PropertyCheckConfigParam
-1 times = 2ms
-
-
-
-cats.Eq[Option[io.circe.Json]]
-
-cats.Eq[Option[io.circe.Json]]
-118 times = 1119ms
-
-
-
-cats.Eq[Option[io.circe.Json]]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-cats.Eq[Option[io.circe.Json]]->cats.kernel.Eq[io.circe.Json]
-
-
-
-
-
-cats.Eq[Option[io.circe.Json]]->cats.kernel.PartialOrder[io.circe.Json]
-
-
-
-
-
-cats.Eq[Option[io.circe.Json]]->shapeless.IsTuple[Option[io.circe.Json]]
-
-
-
-
-
-scala.collection.immutable.Map[String,List[Boolean]] => ?{def asJson: ?}
-
-scala.collection.immutable.Map[String,List[Boolean]] => ?{def asJson: ?}
-2 times = 1ms
-
-
-
-org.scalatest.enablers.TableAsserting[org.scalatest.Assertion]
-
-org.scalatest.enablers.TableAsserting[org.scalatest.Assertion]
-2 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc4]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc4]
-1 times = 6ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc4]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc4]]
-
-
-
-
-
-io.circe.Decoder[cats.data.NonEmptyList[String]]
-
-io.circe.Decoder[cats.data.NonEmptyList[String]]
-1 times = 8ms
-
-
-
-io.circe.Decoder[cats.data.NonEmptyList[String]]->io.circe.Decoder[String]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Traversable[String] with cats.data.NonEmptyList[String]]
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Traversable[String] with cats.data.NonEmptyList[String]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[cats.data.NonEmptyList[String]]->scala.collection.generic.CanBuildFrom[Nothing,String,Traversable[String] with cats.data.NonEmptyList[String]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.util.Either[Int,String]]
-
-org.scalacheck.Shrink[scala.util.Either[Int,String]]
-1 times = 9ms
-
-
-
-org.scalacheck.Shrink[scala.util.Either[Int,String]]->Integral[scala.util.Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.util.Either[Int,String]]->scala.util.Either[Int,String] => Traversable[(Int, String)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.util.Either[Int,String]]->org.scalacheck.Shrink[String]
-
-
-
-
-
-org.scalacheck.Shrink[scala.util.Either[Int,String]]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-String('findAllByKey and its alias, \\\\') => ?{def should: ?}
-
-String('findAllByKey and its alias, \\') => ?{def should: ?}
-4 times = 4ms
-
-
-
-String('findAllByKey and its alias, \\\\') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalatest.words.ResultOfStringPassedToVerb => ?{def in: ?}
-
-org.scalatest.words.ResultOfStringPassedToVerb => ?{def in: ?}
-149 times = 70ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Int],io.circe.Printer.Pieces,That]
-
-scala.collection.generic.CanBuildFrom[Seq[Int],io.circe.Printer.Pieces,That]
-1 times = 3ms
-
-
-
-io.circe.Encoder[Option[Int]]
-
-io.circe.Encoder[Option[Int]]
-1 times = 2ms
-
-
-
-io.circe.Encoder[Option[Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-
-((Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E) => ?ASSERTION)
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor14[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N]
-1 times = 0ms
-
-
-
-cats.SemigroupK[io.circe.AccumulatingDecoder]
-
-cats.SemigroupK[io.circe.AccumulatingDecoder]
-1 times = 0ms
-
-
-
-String('JsonFloat.toLong') => ?{def should: ?}
-
-String('JsonFloat.toLong') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('JsonFloat.toLong') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor21[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U]
-1 times = 0ms
-
-
-
-String('HCursor#history') => ?{def should: ?}
-
-String('HCursor#history') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('HCursor#history') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> Char('e')) => CharSequence
-
-(=> Char('e')) => CharSequence
-1 times = 0ms
-
-
-
-String('Decoder[Float]') => ?{def should: ?}
-
-String('Decoder[Float]') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('Decoder[Float]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[BigInt]
-
-org.scalacheck.Shrink[BigInt]
-2 times = 13ms
-
-
-
-Integral[BigInt]
-
-Integral[BigInt]
-2 times = 4ms
-
-
-
-org.scalacheck.Shrink[BigInt]->Integral[BigInt]
-
-
-
-
-
-Fractional[BigInt]
-
-Fractional[BigInt]
-2 times = 3ms
-
-
-
-org.scalacheck.Shrink[BigInt]->Fractional[BigInt]
-
-
-
-
-
-cats.Eq[Option[Byte]]
-
-cats.Eq[Option[Byte]]
-4 times = 20ms
-
-
-
-cats.Eq[Option[Byte]]->cats.kernel.Eq[Byte]
-
-
-
-
-
-cats.kernel.Order[Byte]
-
-cats.kernel.Order[Byte]
-4 times = 3ms
-
-
-
-cats.Eq[Option[Byte]]->cats.kernel.Order[Byte]
-
-
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor1[?A]
-
-(Any => Nothing) => org.scalatest.prop.TableFor1[?A]
-1 times = 0ms
-
-
-
-s.type => ?{def asJson: ?}
-
-s.type => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 42ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-cats.Eq[scala.collection.immutable.Map[String,io.circe.Json]]
-
-cats.Eq[scala.collection.immutable.Map[String,io.circe.Json]]
-4 times = 25ms
-
-
-
-cats.Eq[scala.collection.immutable.Map[String,io.circe.Json]]->cats.kernel.Eq[io.circe.Json]
-
-
-
-
-
-cats.Eq[scala.collection.immutable.Map[String,io.circe.Json]]->shapeless.IsTuple[scala.collection.immutable.Map[String,io.circe.Json]]
-
-
-
-
-
-io.circe.Decoder[List[Bomb$3]]
-
-io.circe.Decoder[List[Bomb$3]]
-1 times = 4ms
-
-
-
-io.circe.Decoder[List[Bomb$3]]->io.circe.Decoder[Bomb$3]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int)]
-1 times = 33ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.Eq[io.circe.KeyDecoder[Either[Unit,Int]]]
-
-cats.Eq[io.circe.KeyDecoder[Either[Unit,Int]]]
-1 times = 6ms
-
-
-
-cats.Eq[io.circe.KeyDecoder[Either[Unit,Int]]]->cats.kernel.Eq[Either[Unit,Int]]
-
-
-
-
-
-String('encodeFloat') => ?{def should: ?}
-
-String('encodeFloat') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('encodeFloat') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('decodeVector') => ?{def should: ?}
-
-String('decodeVector') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('decodeVector') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Any, Any, Any) => Nothing) => String
-
-((Any, Any, Any) => Nothing) => String
-9 times = 2ms
-
-
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc13]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc13]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc13]->shapeless.IsTuple[ProductCodecSuite.this.Cc13]
-
-
-
-
-
-((Any, Any) => Nothing) => ACursorSuite.this.PropertyCheckConfigParam
-
-((Any, Any) => Nothing) => ACursorSuite.this.PropertyCheckConfigParam
-5 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Unit]]
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Unit]]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Unit]]->org.scalacheck.Arbitrary[Unit]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int)]
-1 times = 19ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 34ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-(=> Any => Nothing) => ParserSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => ParserSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-Int(0) => ?{def asJson: ?}
-
-Int(0) => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc10]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc10]
-1 times = 5ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc10]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc10]]
-
-
-
-
-
-io.circe.Decoder[List[String]]
-
-io.circe.Decoder[List[String]]
-3 times = 12ms
-
-
-
-io.circe.Decoder[List[String]]->io.circe.Decoder[String]
-
-
-
-
-
-String('encodeSet') => ?{def should: ?}
-
-String('encodeSet') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('encodeSet') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Decoder[(Int, String, Char)]
-
-io.circe.Decoder[(Int, String, Char)]
-1 times = 11ms
-
-
-
-io.circe.Decoder[(Int, String, Char)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, String, Char)]->io.circe.Decoder[String]
-
-
-
-
-
-io.circe.Decoder[(Int, String, Char)]->io.circe.Decoder[Char]
-
-
-
-
-
-(Any => Nothing) => ParserSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => ParserSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-String('right') => ?{def should: ?}
-
-String('right') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('right') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)]->cats.kernel.Order[String]
-
-
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)]->cats.kernel.PartialOrder[io.circe.Json]
-
-
-
-
-
-cats.kernel.PartialOrder[(String, io.circe.Json)]->cats.kernel.PartialOrder[String]
-
-
-
-
-
-String('Decoder[BigInt]') => ?{def should: ?}
-
-String('Decoder[BigInt]') => ?{def should: ?}
-2 times = 10ms
-
-
-
-String('Decoder[BigInt]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-1 times = 0ms
-
-
-
-String('container decoder') => ?{def should: ?}
-
-String('container decoder') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('container decoder') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('getOrElse') => ?{def should: ?}
-
-String('getOrElse') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('getOrElse') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-n1.type => ?{def ===: ?}
-
-n1.type => ?{def ===: ?}
-1 times = 9ms
-
-
-
-n1.type => ?{def ===: ?}->cats.Eq[io.circe.JsonNumber]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, (String, io.circe.Json, Boolean)),Either[String,(String, io.circe.Json, Boolean)]]
-
-scala.collection.generic.CanBuildFrom[F,(String, (String, io.circe.Json, Boolean)),Either[String,(String, io.circe.Json, Boolean)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[cats.data.Validated[String,Int]]
-
-io.circe.Decoder[cats.data.Validated[String,Int]]
-1 times = 4ms
-
-
-
-io.circe.Decoder[cats.data.Validated[String,Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[cats.data.Validated[String,Int]]->io.circe.Decoder[String]
-
-
-
-
-
-io.circe.DecodingFailure => ?{def show: ?}
-
-io.circe.DecodingFailure => ?{def show: ?}
-4 times = 3ms
-
-
-
-cats.Show[io.circe.DecodingFailure]
-
-cats.Show[io.circe.DecodingFailure]
-8 times = 2ms
-
-
-
-io.circe.DecodingFailure => ?{def show: ?}->cats.Show[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-(=> Unit) => Int
-
-(=> Unit) => Int
-3 times = 0ms
-
-
-
-org.scalacheck.Shrink[String]->Integral[String]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[io.circe.tests.examples.WrappedOptionalField]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[io.circe.tests.examples.WrappedOptionalField]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int)]
-1 times = 32ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-(Any => Nothing) => ACursorSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => ACursorSuite.this.PropertyCheckConfigParam
-21 times = 6ms
-
-
-
-(=> Long) => Int
-
-(=> Long) => Int
-18 times = 16ms
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil]->cats.kernel.Eq[shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil]->shapeless.IsTuple[Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-org.scalacheck.Shrink[Set[Either[Int,String]]]
-
-org.scalacheck.Shrink[Set[Either[Int,String]]]
-1 times = 15ms
-
-
-
-org.scalacheck.Shrink[Set[Either[Int,String]]]->Integral[Set[Either[Int,String]]]
-
-
-
-
-
-org.scalacheck.Shrink[Set[Either[Int,String]]]->org.scalacheck.Shrink[Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Shrink[Set[Either[Int,String]]]->Set[Either[Int,String]] => Traversable[Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Shrink[Set[Either[Int,String]]]->org.scalacheck.util.Buildable[Either[Int,String],Set[Either[Int,String]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Some[Int]]
-
-org.scalacheck.Arbitrary[Some[Int]]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[Some[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-Int(10) => ?{def asJson: ?}
-
-Int(10) => ?{def asJson: ?}
-2 times = 1ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-
-(Any => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-1 times = 0ms
-
-
-
-e.type => ?{def asJson: ?}
-
-e.type => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-(Any => Nothing) => EncoderSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => EncoderSuite.this.PropertyCheckConfigParam
-4 times = 1ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => ObjectEncoderSuite.this.PropertyCheckConfigParam
-
-(=> (Any, Any, Any) => Nothing) => ObjectEncoderSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[Double]
-
-org.scalacheck.Shrink[Double]
-9 times = 29ms
-
-
-
-org.scalacheck.Shrink[Double]->Fractional[Double]
-
-
-
-
-
-org.scalacheck.Shrink[Double]->Integral[Double]
-
-
-
-
-
-io.circe.Decoder[Option[Int]]
-
-io.circe.Decoder[Option[Int]]
-1 times = 7ms
-
-
-
-io.circe.Decoder[Option[Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[Option[Int]]->scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with Option[Int]]
-
-
-
-
-
-String('deleteGoFirst') => ?{def should: ?}
-
-String('deleteGoFirst') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('deleteGoFirst') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Byte, Int),scala.collection.immutable.Map[Byte,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(Byte, Int),scala.collection.immutable.Map[Byte,Int]]
-1 times = 0ms
-
-
-
-shapeless.IsTuple[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-
-shapeless.IsTuple[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Int, String, Char)]
-
-scala.reflect.ClassTag[(Int, String, Char)]
-1 times = 0ms
-
-
-
-c.type => ?{def asJson: ?}
-
-c.type => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-cats.kernel.Eq[scala.math.BigInt]
-
-cats.kernel.Eq[scala.math.BigInt]
-1 times = 3ms
-
-
-
-shapeless.IsTuple[scala.math.BigInt]
-
-shapeless.IsTuple[scala.math.BigInt]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[scala.math.BigInt]->shapeless.IsTuple[scala.math.BigInt]
-
-
-
-
-
-Int(100) => ?{def asJson: ?}
-
-Int(100) => ?{def asJson: ?}
-2 times = 1ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Seq[?T]
-
-((Nothing, Nothing, Nothing, Nothing)) => Seq[?T]
-1 times = 0ms
-
-
-
-Char('e') => CharSequence
-
-Char('e') => CharSequence
-1 times = 0ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-
-(Any => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Set[String]]
-
-io.circe.Decoder[Set[String]]
-1 times = 4ms
-
-
-
-io.circe.Decoder[Set[String]]->io.circe.Decoder[String]
-
-
-
-
-
-String('asNull') => ?{def should: ?}
-
-String('asNull') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('asNull') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.util.Buildable[(Int, String),Either[Int,String]]
-
-org.scalacheck.util.Buildable[(Int, String),Either[Int,String]]
-1 times = 1ms
-
-
-
-org.scalacheck.util.Buildable[(Int, String),Either[Int,String]]->scala.collection.generic.CanBuildFrom[F,(Int, String),Either[Int,String]]
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc2]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc2]
-1 times = 6ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc2]->shapeless.IsTuple[ProductCodecSuite.this.Cc2]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, String)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, String)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, String)]
-
-scala.reflect.ClassTag[(Int, String)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, String)]->scala.reflect.ClassTag[(Int, String)]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]->cats.kernel.Eq[Unit]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]->cats.kernel.Order[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]->shapeless.IsTuple[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]->cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Unit]]->cats.kernel.PartialOrder[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-String('Encoder[Enumeration]') => ?{def should: ?}
-
-String('Encoder[Enumeration]') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('Encoder[Enumeration]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc21]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc21]
-1 times = 7ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc21]->Integral[ProductCodecSuite.this.Cc21]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc21]->Fractional[ProductCodecSuite.this.Cc21]
-
-
-
-
-
-String('JsonObject.fromIterable') => ?{def should: ?}
-
-String('JsonObject.fromIterable') => ?{def should: ?}
-1 times = 5ms
-
-
-
-String('JsonObject.fromIterable') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[io.circe.JsonNumber]
-
-org.scalacheck.Shrink[io.circe.JsonNumber]
-1 times = 0ms
-
-
-
-io.circe.Decoder[List[Int]]
-
-io.circe.Decoder[List[Int]]
-4 times = 16ms
-
-
-
-io.circe.Decoder[List[Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Int => Int]]
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Int => Int]]
-2 times = 19ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Int => Int]]->org.scalacheck.Arbitrary[Int => Int]
-
-
-
-
-
-org.scalacheck.util.Buildable[((String, io.circe.Json), Boolean),((String, io.circe.Json)) => Boolean]->scala.collection.generic.CanBuildFrom[F,((String, io.circe.Json), Boolean),((String, io.circe.Json)) => Boolean]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 130ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-String('1') => ?{def asJson: ?}
-
-String('1') => ?{def asJson: ?}
-3 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 203ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-io.circe.Decoder.Result[Map[String,Int]] => ?{def ===: ?}
-
-io.circe.Decoder.Result[Map[String,Int]] => ?{def ===: ?}
-2 times = 2ms
-
-
-
-String('%s%s%s') => ?{def format: ?}
-
-String('%s%s%s') => ?{def format: ?}
-8 times = 16ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Short,Int]]
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Short,Int]]
-1 times = 14ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Short,Int]]->scala.collection.immutable.Map[Short,Int] => Traversable[(Short, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Short,Int]]->org.scalacheck.Shrink[(Short, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Short,Int]]->org.scalacheck.util.Buildable[(Short, Int),scala.collection.immutable.Map[Short,Int]]
-
-
-
-
-
-Integral[scala.collection.immutable.Map[Short,Int]]
-
-Integral[scala.collection.immutable.Map[Short,Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Short,Int]]->Integral[scala.collection.immutable.Map[Short,Int]]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc15]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc15]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Either[Int,String]],Some[io.circe.Json],That]
-
-scala.collection.generic.CanBuildFrom[List[Either[Int,String]],Some[io.circe.Json],That]
-1 times = 0ms
-
-
-
-String('obj') => ?{def should: ?}
-
-String('obj') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('obj') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Any, Any, Any) => Nothing) => (?A => ?ASSERTION)
-
-((Any, Any, Any) => Nothing) => (?A => ?ASSERTION)
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc12]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc12]
-1 times = 8ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc12]->Fractional[ProductCodecSuite.this.Cc12]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc12]
-
-Integral[ProductCodecSuite.this.Cc12]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc12]->Integral[ProductCodecSuite.this.Cc12]
-
-
-
-
-
-String('z') => ?{def ->: ?}
-
-String('z') => ?{def ->: ?}
-2 times = 1ms
-
-
-
-String('asBoolean') => ?{def should: ?}
-
-String('asBoolean') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('asBoolean') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalactic.Prettifier
-
-org.scalactic.Prettifier
-413 times = 135ms
-
-
-
-(=> Unit) => Throwable
-
-(=> Unit) => Throwable
-1 times = 0ms
-
-
-
-v.type => ?{def asJson: ?}
-
-v.type => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-Option[io.circe.Json] => scala.collection.GenTraversableOnce[?]
-
-Option[io.circe.Json] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor6[?A,?B,?C,?D,?E,?F]
-1 times = 0ms
-
-
-
-String('asJsonObject') => ?{def should: ?}
-
-String('asJsonObject') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('asJsonObject') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc7]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc7]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc7]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc7]
-
-
-
-
-
-String('A tuple decoder') => ?{def should: ?}
-
-String('A tuple decoder') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('A tuple decoder') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[Vector[io.circe.Json]]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-cats.kernel.Eq[Vector[io.circe.Json]]->cats.kernel.Eq[io.circe.Json]
-
-
-
-
-
-cats.kernel.Eq[Vector[io.circe.Json]]->cats.kernel.PartialOrder[io.circe.Json]
-
-
-
-
-
-shapeless.IsTuple[Vector[io.circe.Json]]
-
-shapeless.IsTuple[Vector[io.circe.Json]]
-2 times = 1ms
-
-
-
-cats.kernel.Eq[Vector[io.circe.Json]]->shapeless.IsTuple[Vector[io.circe.Json]]
-
-
-
-
-
-shapeless.IsTuple[Some[Int]]
-
-shapeless.IsTuple[Some[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Either[Int,String],Set[Either[Int,String]]]->scala.collection.generic.CanBuildFrom[F,Either[Int,String],Set[Either[Int,String]]]
-
-
-
-
-
-cats.Order[Int]
-
-cats.Order[Int]
-2 times = 3ms
-
-
-
-Integral[Vector[io.circe.Json]]
-
-Integral[Vector[io.circe.Json]]
-3 times = 2ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Either[Int,String]],io.circe.Json,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Either[Int,String]],io.circe.Json,That]
-1 times = 1ms
-
-
-
-cats.Eq[io.circe.ParsingFailure]
-
-cats.Eq[io.circe.ParsingFailure]
-2 times = 17ms
-
-
-
-cats.Eq[io.circe.ParsingFailure]->shapeless.IsTuple[io.circe.ParsingFailure]
-
-
-
-
-
-String('replay') => ?{def should: ?}
-
-String('replay') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('replay') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int)]
-1 times = 40ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-String('set') => ?{def should: ?}
-
-String('set') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('set') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[List[(String, io.circe.Json)]] => ?{def ===: ?}
-
-Option[List[(String, io.circe.Json)]] => ?{def ===: ?}
-1 times = 80ms
-
-
-
-Option[List[(String, io.circe.Json)]] => ?{def ===: ?}->cats.Eq[Option[List[(String, io.circe.Json)]]]
-
-
-
-
-
-MemoizedPiecesSuite.this.PropertyCheckConfigurable
-
-MemoizedPiecesSuite.this.PropertyCheckConfigurable
-1 times = 1ms
-
-
-
-io.circe.Encoder[Map[Long,Int]]
-
-io.circe.Encoder[Map[Long,Int]]
-1 times = 2ms
-
-
-
-io.circe.Encoder[Map[Long,Int]]->io.circe.KeyEncoder[Long]
-
-
-
-
-
-io.circe.Encoder[Map[Long,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-
-(=> (Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D, ?E, ?F) => ?ASSERTION)
-1 times = 0ms
-
-
-
-cats.kernel.PartialOrder[cats.data.NonEmptyList[io.circe.DecodingFailure]]->cats.Order[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.PartialOrder[cats.data.NonEmptyList[io.circe.DecodingFailure]]->cats.PartialOrder[io.circe.DecodingFailure]
-
-
-
-
-
-Float => ?{def ===: ?}
-
-Float => ?{def ===: ?}
-1 times = 4ms
-
-
-
-Float => ?{def ===: ?}->cats.Eq[Float]
-
-
-
-
-
-Array[String] => Iterable[String]
-
-Array[String] => Iterable[String]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 136ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Long, Int),scala.collection.immutable.SortedMap[Long,Int]]->Ordering[Long]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json, Boolean)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json, Boolean)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-scala.reflect.ClassTag[(String, io.circe.Json, Boolean)]
-
-scala.reflect.ClassTag[(String, io.circe.Json, Boolean)]
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json, Boolean)]->scala.reflect.ClassTag[(String, io.circe.Json, Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, io.circe.Json, Boolean)]->org.scalacheck.Arbitrary[io.circe.Json]
-
-
-
-
-
-Fractional[ProductCodecSuite.this.Cc16]
-
-Fractional[ProductCodecSuite.this.Cc16]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(Long, Int),scala.collection.mutable.HashMap[Long,Int]]
-
-scala.collection.generic.CanBuildFrom[Nothing,(Long, Int),scala.collection.mutable.HashMap[Long,Int]]
-1 times = 0ms
-
-
-
-Integral[ProductCodecSuite.this.Cc3]
-
-Integral[ProductCodecSuite.this.Cc3]
-1 times = 2ms
-
-
-
-String('Show[DecodingFailure]') => ?{def should: ?}
-
-String('Show[DecodingFailure]') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('Show[DecodingFailure]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[Short] => ?{def ===: ?}
-
-Option[Short] => ?{def ===: ?}
-2 times = 12ms
-
-
-
-Option[Short] => ?{def ===: ?}->cats.Eq[Option[Short]]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc3]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc3]
-1 times = 8ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc3]->Fractional[ProductCodecSuite.this.Cc3]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc3]->Integral[ProductCodecSuite.this.Cc3]
-
-
-
-
-
-scala.collection.immutable.Map[String,Double] => ?{def asJson: ?}
-
-scala.collection.immutable.Map[String,Double] => ?{def asJson: ?}
-5 times = 3ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Map[String,io.circe.Json] => ?{def ===: ?}
-
-scala.collection.immutable.Map[String,io.circe.Json] => ?{def ===: ?}
-2 times = 16ms
-
-
-
-scala.collection.immutable.Map[String,io.circe.Json] => ?{def ===: ?}->cats.Eq[scala.collection.immutable.Map[String,io.circe.Json]]
-
-
-
-
-
-Ordering[Long]->cats.kernel.Order[Long]
-
-
-
-
-
-String('validate') => ?{def should: ?}
-
-String('validate') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('validate') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 129ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-Integral[(Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json), Boolean)]->scala.reflect.ClassTag[((String, io.circe.Json), Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json), Boolean)]->org.scalacheck.Arbitrary[(String, io.circe.Json)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((String, io.circe.Json), Boolean)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-Fractional[MemoizedPiecesSuite.this.Depths]
-
-Fractional[MemoizedPiecesSuite.this.Depths]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[Seq[Int]]
-
-cats.kernel.Eq[Seq[Int]]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[Seq[Int]]->shapeless.IsTuple[Seq[Int]]
-
-
-
-
-
-cats.kernel.Eq[Seq[Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Int]]
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Int]]
-3 times = 9ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.KeyDecoder[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Long,Int]]
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Long,Int]]
-1 times = 12ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Long,Int]]->Integral[scala.collection.immutable.Map[Long,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Long,Int]]->scala.collection.immutable.Map[Long,Int] => Traversable[(Long, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Long,Int]]->org.scalacheck.Shrink[(Long, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Long,Int]]->org.scalacheck.util.Buildable[(Long, Int),scala.collection.immutable.Map[Long,Int]]
-
-
-
-
-
-io.circe.Encoder[java.util.UUID]
-
-io.circe.Encoder[java.util.UUID]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[String => Boolean]
-
-org.scalacheck.Shrink[String => Boolean]
-1 times = 4ms
-
-
-
-org.scalacheck.Shrink[String => Boolean]->(String => Boolean) => Traversable[(String, Boolean)]
-
-
-
-
-
-org.scalacheck.Shrink[String => Boolean]->Integral[String => Boolean]
-
-
-
-
-
-Fractional[String => Boolean]
-
-Fractional[String => Boolean]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[String => Boolean]->Fractional[String => Boolean]
-
-
-
-
-
-String('decodeList') => ?{def should: ?}
-
-String('decodeList') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('decodeList') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[((String, io.circe.Json)) => Boolean]
-
-org.scalacheck.Shrink[((String, io.circe.Json)) => Boolean]
-1 times = 5ms
-
-
-
-org.scalacheck.Shrink[((String, io.circe.Json)) => Boolean]->Fractional[((String, io.circe.Json)) => Boolean]
-
-
-
-
-
-org.scalacheck.Shrink[((String, io.circe.Json)) => Boolean]->(((String, io.circe.Json)) => Boolean) => Traversable[((String, io.circe.Json), Boolean)]
-
-
-
-
-
-Integral[((String, io.circe.Json)) => Boolean]
-
-Integral[((String, io.circe.Json)) => Boolean]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[((String, io.circe.Json)) => Boolean]->Integral[((String, io.circe.Json)) => Boolean]
-
-
-
-
-
-cats.kernel.Eq[String :: io.circe.Json :: shapeless.HNil]->cats.kernel.Eq[String]
-
-
-
-
-
-cats.kernel.Eq[String :: io.circe.Json :: shapeless.HNil]->cats.kernel.Eq[io.circe.Json :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[String :: io.circe.Json :: shapeless.HNil]->shapeless.IsTuple[String :: io.circe.Json :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc8]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc8]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc8]->shapeless.IsTuple[ProductCodecSuite.this.Cc8]
-
-
-
-
-
-String('0') => ?{def *: ?}
-
-String('0') => ?{def *: ?}
-5 times = 6ms
-
-
-
-String('setRights') => ?{def should: ?}
-
-String('setRights') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('setRights') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-1 times = 0ms
-
-
-
-SerializableSuite.this.PropertyCheckConfigurable
-
-SerializableSuite.this.PropertyCheckConfigurable
-2 times = 0ms
-
-
-
-Fractional[io.circe.numbers.testing.JsonNumberString]
-
-Fractional[io.circe.numbers.testing.JsonNumberString]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Long,Int]]
-
-cats.kernel.Eq[scala.collection.immutable.Map[Long,Int]]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Long,Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-String('deleteGoRight') => ?{def should: ?}
-
-String('deleteGoRight') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('deleteGoRight') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[Test$3]]
-
-io.circe.export.Exported[io.circe.Decoder[Test$3]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(Int, Int),scala.collection.immutable.Map[Int,Int]]->scala.collection.generic.CanBuildFrom[F,(Int, Int),scala.collection.immutable.Map[Int,Int]]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-1 times = 0ms
-
-
-
-Boolean => ?{def ===: ?}
-
-Boolean => ?{def ===: ?}
-11 times = 46ms
-
-
-
-Boolean => ?{def ===: ?}->cats.Eq[Boolean]
-
-
-
-
-
-org.scalacheck.Shrink[Map[String,Int]]
-
-org.scalacheck.Shrink[Map[String,Int]]
-4 times = 58ms
-
-
-
-org.scalacheck.Shrink[Map[String,Int]]->Map[String,Int] => Traversable[(String, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[Map[String,Int]]->Fractional[Map[String,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[Map[String,Int]]->Integral[Map[String,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[Map[String,Int]]->org.scalacheck.util.Buildable[(String, Int),Map[String,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[Map[String,Int]]->org.scalacheck.Shrink[(String, Int)]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Int, Int),Int => Int]->scala.collection.generic.CanBuildFrom[F,(Int, Int),Int => Int]
-
-
-
-
-
-org.scalacheck.Shrink[(String, Int)]->Fractional[(String, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(String, Int)]->Integral[(String, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(String, Int)]->org.scalacheck.Shrink[String]
-
-
-
-
-
-org.scalacheck.Shrink[(String, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-org.scalacheck.util.Buildable[String,Array[String]]->scala.collection.generic.CanBuildFrom[F,String,Array[String]]
-
-
-
-
-
-List[(String, io.circe.Json)] => ?{def ===: ?}
-
-List[(String, io.circe.Json)] => ?{def ===: ?}
-2 times = 73ms
-
-
-
-List[(String, io.circe.Json)] => ?{def ===: ?}->cats.Eq[List[(String, io.circe.Json)]]
-
-
-
-
-
-io.circe.Encoder[BigInt]
-
-io.circe.Encoder[BigInt]
-1 times = 1ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc15]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc15]
-1 times = 3ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc15]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc15]]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc18]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc18]
-1 times = 6ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc18]->Fractional[ProductCodecSuite.this.Cc18]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc18]->Integral[ProductCodecSuite.this.Cc18]
-
-
-
-
-
-org.scalacheck.Shrink[Vector[io.circe.Json]]
-
-org.scalacheck.Shrink[Vector[io.circe.Json]]
-3 times = 15ms
-
-
-
-org.scalacheck.Shrink[Vector[io.circe.Json]]->org.scalacheck.Shrink[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Shrink[Vector[io.circe.Json]]->org.scalacheck.util.Buildable[io.circe.Json,Vector[io.circe.Json]]
-
-
-
-
-
-org.scalacheck.Shrink[Vector[io.circe.Json]]->Vector[io.circe.Json] => Traversable[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Shrink[Vector[io.circe.Json]]->Integral[Vector[io.circe.Json]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.DecodingFailure]->shapeless.IsTuple[io.circe.DecodingFailure]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc17]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc17]
-1 times = 7ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc17]->Integral[ProductCodecSuite.this.Cc17]
-
-
-
-
-
-Fractional[ProductCodecSuite.this.Cc17]
-
-Fractional[ProductCodecSuite.this.Cc17]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc17]->Fractional[ProductCodecSuite.this.Cc17]
-
-
-
-
-
-String('deleteLefts') => ?{def should: ?}
-
-String('deleteLefts') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('deleteLefts') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Encoder[(Int, String, Char)]
-
-io.circe.Encoder[(Int, String, Char)]
-1 times = 6ms
-
-
-
-io.circe.Encoder[(Int, String, Char)]->io.circe.Encoder[String]
-
-
-
-
-
-io.circe.Encoder[(Int, String, Char)]->io.circe.Encoder[Char]
-
-
-
-
-
-io.circe.Encoder[(Int, String, Char)]->io.circe.Encoder[Int]
-
-
-
-
-
-cats.kernel.Eq[cats.data.Validated[String,Int]]
-
-cats.kernel.Eq[cats.data.Validated[String,Int]]
-1 times = 6ms
-
-
-
-cats.kernel.Eq[cats.data.Validated[String,Int]]->cats.Order[String]
-
-
-
-
-
-cats.kernel.Eq[cats.data.Validated[String,Int]]->shapeless.IsTuple[cats.data.Validated[String,Int]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.Validated[String,Int]]->cats.Order[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc8]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc8]
-1 times = 5ms
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc8]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc8]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc8]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc8]
-
-
-
-
-
-io.circe.Decoder[Map[Long,Int]]
-
-io.circe.Decoder[Map[Long,Int]]
-1 times = 4ms
-
-
-
-io.circe.Decoder[Map[Long,Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[Map[Long,Int]]->io.circe.KeyDecoder[Long]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor22[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S,?T,?U,?V]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int,)]
-
-org.scalacheck.Shrink[(Int,)]
-1 times = 7ms
-
-
-
-org.scalacheck.Shrink[(Int,)]->Integral[(Int,)]
-
-
-
-
-
-org.scalacheck.Shrink[(Int,)]->((Int,)) => Traversable[Int]
-
-
-
-
-
-Fractional[(Int,)]
-
-Fractional[(Int,)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[(Int,)]->Fractional[(Int,)]
-
-
-
-
-
-org.scalacheck.Shrink[Symbol]->Fractional[Symbol]
-
-
-
-
-
-org.scalacheck.Shrink[Symbol]->Integral[Symbol]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],io.circe.Json,Iterable[io.circe.Json]]
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],io.circe.Json,Iterable[io.circe.Json]]
-1 times = 2ms
-
-
-
-io.circe.Decoder[Set[Int]]
-
-io.circe.Decoder[Set[Int]]
-1 times = 4ms
-
-
-
-io.circe.Decoder[Set[Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[cats.data.NonEmptyVector[Int]]
-
-io.circe.Decoder[cats.data.NonEmptyVector[Int]]
-1 times = 9ms
-
-
-
-io.circe.Decoder[cats.data.NonEmptyVector[Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[cats.data.NonEmptyVector[Int]]->scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with cats.data.NonEmptyVector[Int]]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int)]
-1 times = 26ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int)]]
-
-io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int)]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-
-(Any => Nothing) => org.scalatest.prop.TableFor11[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K]
-1 times = 0ms
-
-
-
-Option[Int] => ?{def ===: ?}
-
-Option[Int] => ?{def ===: ?}
-2 times = 13ms
-
-
-
-Option[Int] => ?{def ===: ?}->cats.Eq[Option[Int]]
-
-
-
-
-
-Fractional[io.circe.CursorOp]
-
-Fractional[io.circe.CursorOp]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc18]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc18]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc18]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc18]
-
-
-
-
-
-io.circe.Decoder.Result[Int] => ?{def ===: ?}
-
-io.circe.Decoder.Result[Int] => ?{def ===: ?}
-10 times = 12ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc3]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc3]
-1 times = 5ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc3]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc3]]
-
-
-
-
-
-Int => ?{def ===: ?}
-
-Int => ?{def ===: ?}
-5 times = 18ms
-
-
-
-Int => ?{def ===: ?}->cats.Eq[Int]
-
-
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc14]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc14]
-1 times = 4ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc14]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc14]]
-
-
-
-
-
-Integral[MemoizedPiecesSuite.this.Depths]
-
-Integral[MemoizedPiecesSuite.this.Depths]
-1 times = 3ms
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[Int]]
-
-cats.kernel.Eq[cats.data.NonEmptyList[Int]]
-1 times = 9ms
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[Int]]->shapeless.IsTuple[cats.data.NonEmptyList[Int]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[Int]]->cats.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyList[Int]]->cats.Order[Int]
-
-
-
-
-
-scala.reflect.ClassTag[List[io.circe.Json]]
-
-scala.reflect.ClassTag[List[io.circe.Json]]
-13 times = 9ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Short,Int]]
-
-cats.kernel.Eq[scala.collection.immutable.Map[Short,Int]]
-1 times = 3ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Short,Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-org.scalacheck.Shrink[io.circe.JsonObject]
-
-org.scalacheck.Shrink[io.circe.JsonObject]
-5 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Set[Int]]->scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Set[Int]]
-
-
-
-
-
-shapeless.IsTuple[Char]
-
-shapeless.IsTuple[Char]
-2 times = 1ms
-
-
-
-cats.kernel.Eq[Char]->shapeless.IsTuple[Char]
-
-
-
-
-
-(=> Float) => Int
-
-(=> Float) => Int
-18 times = 15ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-
-(Any => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Set[Int]]
-
-org.scalacheck.Shrink[scala.collection.immutable.Set[Int]]
-1 times = 6ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Set[Int]]->Integral[scala.collection.immutable.Set[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Set[Int]]->scala.collection.immutable.Set[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Set[Int]]->org.scalacheck.util.Buildable[Int,scala.collection.immutable.Set[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Set[Int]]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-io.circe.Decoder[Test$3]
-
-io.circe.Decoder[Test$3]
-2 times = 5ms
-
-
-
-io.circe.Decoder[Test$3]->io.circe.export.Exported[io.circe.Decoder[Test$3]]
-
-
-
-
-
-Integral[io.circe.numbers.testing.JsonNumberString]
-
-Integral[io.circe.numbers.testing.JsonNumberString]
-1 times = 0ms
-
-
-
-io.circe.Decoder[cats.data.NonEmptyList[Int]]
-
-io.circe.Decoder[cats.data.NonEmptyList[Int]]
-1 times = 13ms
-
-
-
-io.circe.Decoder[cats.data.NonEmptyList[Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[cats.data.NonEmptyList[Int]]->scala.collection.generic.CanBuildFrom[Nothing,Int,Traversable[Int] with cats.data.NonEmptyList[Int]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyVector[Int]]
-
-cats.kernel.Eq[cats.data.NonEmptyVector[Int]]
-1 times = 7ms
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyVector[Int]]->shapeless.IsTuple[cats.data.NonEmptyVector[Int]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.NonEmptyVector[Int]]->cats.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc15]
-
-shapeless.IsTuple[ProductCodecSuite.this.Cc15]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.KeyDecoder,Unit,Int]]
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.KeyDecoder,Unit,Int]]
-1 times = 14ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.KeyDecoder,Unit,Int]]->shapeless.IsTuple[cats.data.EitherT[io.circe.KeyDecoder,Unit,Int]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.KeyDecoder,Unit,Int]]->cats.PartialOrder[io.circe.KeyDecoder[Either[Unit,Int]]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.KeyDecoder,Unit,Int]]->cats.Eq[io.circe.KeyDecoder[Either[Unit,Int]]]
-
-
-
-
-
-cats.Order[io.circe.KeyDecoder[Either[Unit,Int]]]
-
-cats.Order[io.circe.KeyDecoder[Either[Unit,Int]]]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[cats.data.EitherT[io.circe.KeyDecoder,Unit,Int]]->cats.Order[io.circe.KeyDecoder[Either[Unit,Int]]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, io.circe.Json)],String,That]
-
-scala.collection.generic.CanBuildFrom[List[(String, io.circe.Json)],String,That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Stream[Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Stream[Int]]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[scala.util.Either[Int,String]]
-
-cats.kernel.Eq[scala.util.Either[Int,String]]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[scala.util.Either[Int,String]]->cats.kernel.Order[String]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[Int,String]]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[Int,String]]->shapeless.IsTuple[scala.util.Either[Int,String]]
-
-
-
-
-
-io.circe.Decoder.Result[List[Int]] => ?{def ===: ?}
-
-io.circe.Decoder.Result[List[Int]] => ?{def ===: ?}
-1 times = 1ms
-
-
-
-String => ?{def toFloat: ?}
-
-String => ?{def toFloat: ?}
-1 times = 0ms
-
-
-
-String('withNull') => ?{def should: ?}
-
-String('withNull') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('withNull') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.reflect.ClassTag[io.circe.tests.examples.WrappedOptionalField]
-
-scala.reflect.ClassTag[io.circe.tests.examples.WrappedOptionalField]
-1 times = 0ms
-
-
-
-org.scalatest.enablers.TableAsserting[org.scalatest.compatible.Assertion]
-
-org.scalatest.enablers.TableAsserting[org.scalatest.compatible.Assertion]
-2 times = 1ms
-
-
-
-org.scalatest.enablers.CheckerAsserting[org.scalatest.Assertion]
-
-org.scalatest.enablers.CheckerAsserting[org.scalatest.Assertion]
-129 times = 56ms
-
-
-
-String('Eq[JsonNumber]') => ?{def should: ?}
-
-String('Eq[JsonNumber]') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('Eq[JsonNumber]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc20]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc20]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc20]->shapeless.IsTuple[ProductCodecSuite.this.Cc20]
-
-
-
-
-
-((Any, Any) => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-
-((Any, Any) => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-3 times = 0ms
-
-
-
-io.circe.Decoder[java.util.UUID]
-
-io.circe.Decoder[java.util.UUID]
-1 times = 2ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc1]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc1]
-1 times = 8ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc1]->Integral[ProductCodecSuite.this.Cc1]
-
-
-
-
-
-Fractional[ProductCodecSuite.this.Cc1]
-
-Fractional[ProductCodecSuite.this.Cc1]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc1]->Fractional[ProductCodecSuite.this.Cc1]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor12[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[java.util.UUID]
-
-cats.kernel.Eq[java.util.UUID]
-1 times = 3ms
-
-
-
-cats.kernel.Eq[java.util.UUID]->shapeless.IsTuple[java.util.UUID]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-1 times = 25ms
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.kernel.Order[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.kernel.Eq[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]->cats.kernel.PartialOrder[cats.data.NonEmptyList[io.circe.DecodingFailure]]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-14 times = 753ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.data.NonEmptyList[io.circe.Json] => ?{def asJson: ?}
-
-cats.data.NonEmptyList[io.circe.Json] => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-cats.Eq[Option[BigInt]]->cats.kernel.Order[BigInt]
-
-
-
-
-
-cats.Eq[io.circe.Decoder.Result[(Int, String, Char)]]->cats.kernel.Eq[(Int, String, Char)]
-
-
-
-
-
-cats.Eq[io.circe.Decoder.Result[(Int, String, Char)]]->shapeless.IsTuple[io.circe.Decoder.Result[(Int, String, Char)]]
-
-
-
-
-
-cats.Eq[io.circe.Decoder.Result[(Int, String, Char)]]->cats.kernel.Order[io.circe.DecodingFailure]
-
-
-
-
-
-cats.Eq[io.circe.Decoder.Result[(Int, String, Char)]]->cats.kernel.Eq[io.circe.DecodingFailure]
-
-
-
-
-
-cats.Eq[io.circe.Decoder.Result[(Int, String, Char)]]->cats.kernel.PartialOrder[io.circe.DecodingFailure]
-
-
-
-
-
-shapeless.IsTuple[io.circe.KeyEncoder[Int]]
-
-shapeless.IsTuple[io.circe.KeyEncoder[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[MemoizedPiecesSuite.this.Depths]
-
-org.scalacheck.Shrink[MemoizedPiecesSuite.this.Depths]
-1 times = 13ms
-
-
-
-org.scalacheck.Shrink[MemoizedPiecesSuite.this.Depths]->Fractional[MemoizedPiecesSuite.this.Depths]
-
-
-
-
-
-org.scalacheck.Shrink[MemoizedPiecesSuite.this.Depths]->Integral[MemoizedPiecesSuite.this.Depths]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc10]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc10]
-1 times = 8ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc10]->Fractional[ProductCodecSuite.this.Cc10]
-
-
-
-
-
-Integral[ProductCodecSuite.this.Cc10]
-
-Integral[ProductCodecSuite.this.Cc10]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc10]->Integral[ProductCodecSuite.this.Cc10]
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-1 times = 0ms
-
-
-
-Int(1) => ?{def asJson: ?}
-
-Int(1) => ?{def asJson: ?}
-5 times = 3ms
-
-
-
-String('Decoder[Byte]') => ?{def should: ?}
-
-String('Decoder[Byte]') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('Decoder[Byte]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-1 times = 0ms
-
-
-
-String('Decoder[Short]') => ?{def should: ?}
-
-String('Decoder[Short]') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('Decoder[Short]') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Int)]->scala.reflect.ClassTag[(String, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Int)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[String => Boolean]
-
-org.scalacheck.Arbitrary[String => Boolean]
-1 times = 16ms
-
-
-
-org.scalacheck.Arbitrary[String => Boolean]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[String => Boolean]->org.scalacheck.util.Buildable[(String, Boolean),String => Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[String => Boolean]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[String => Boolean]->scala.reflect.ClassTag[String => Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)]
-
-org.scalacheck.Arbitrary[(String, Boolean)]
-1 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[String => Boolean]->org.scalacheck.Arbitrary[(String, Boolean)]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor7[?A,?B,?C,?D,?E,?F,?G]
-1 times = 0ms
-
-
-
-Option[io.circe.Json] => ?{def ===: ?}
-
-Option[io.circe.Json] => ?{def ===: ?}
-59 times = 632ms
-
-
-
-Option[io.circe.Json] => ?{def ===: ?}->cats.Eq[Option[io.circe.Json]]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.IsTuple[Int :: Int :: shapeless.HNil]
-
-shapeless.IsTuple[Int :: Int :: shapeless.HNil]
-3 times = 1ms
-
-
-
-cats.kernel.Eq[Int :: Int :: shapeless.HNil]->shapeless.IsTuple[Int :: Int :: shapeless.HNil]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => ObjectEncoderSuite.this.PropertyCheckConfigParam
-
-((Any, Any, Any) => Nothing) => ObjectEncoderSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int)]
-1 times = 36ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int)]
-1 times = 24ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Seq[?T]
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Seq[?T]
-1 times = 0ms
-
-
-
-(Any => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-cats.Eq[Option[io.circe.Decoder.Result[List[Boolean]]]]->cats.kernel.Order[io.circe.Decoder.Result[List[Boolean]]]
-
-
-
-
-
-cats.Eq[Option[io.circe.Decoder.Result[List[Boolean]]]]->cats.kernel.PartialOrder[io.circe.Decoder.Result[List[Boolean]]]
-
-
-
-
-
-cats.Eq[Option[io.circe.Decoder.Result[List[Boolean]]]]->cats.kernel.Eq[io.circe.Decoder.Result[List[Boolean]]]
-
-
-
-
-
-cats.kernel.Eq[scala.math.BigDecimal]
-
-cats.kernel.Eq[scala.math.BigDecimal]
-1 times = 3ms
-
-
-
-cats.kernel.Eq[scala.math.BigDecimal]->shapeless.IsTuple[scala.math.BigDecimal]
-
-
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Byte,Int]]
-
-cats.kernel.Eq[scala.collection.immutable.Map[Byte,Int]]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[scala.collection.immutable.Map[Byte,Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => JsonNumberSuite.this.PropertyCheckConfigParam
-
-(=> (Any, Any) => Nothing) => JsonNumberSuite.this.PropertyCheckConfigParam
-3 times = 0ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc4]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc4]
-1 times = 7ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc4]->shapeless.IsTuple[ProductCodecSuite.this.Cc4]
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc16]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc16]
-1 times = 4ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc16]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc16]]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor18[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Int]->scala.reflect.ClassTag[Int]
-
-
-
-
-
-cats.Eq[scala.collection.immutable.Set[io.circe.Json]]
-
-cats.Eq[scala.collection.immutable.Set[io.circe.Json]]
-1 times = 3ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc5]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc5]
-1 times = 7ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc5]->Integral[ProductCodecSuite.this.Cc5]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc5]->Fractional[ProductCodecSuite.this.Cc5]
-
-
-
-
-
-io.circe.Encoder[Map[String,Int]]
-
-io.circe.Encoder[Map[String,Int]]
-3 times = 8ms
-
-
-
-io.circe.Encoder[Map[String,Int]]->io.circe.KeyEncoder[String]
-
-
-
-
-
-io.circe.Encoder[Map[String,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc18]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc18]
-1 times = 4ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc18]]
-
-io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc18]]
-1 times = 0ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc18]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc18]]
-
-
-
-
-
-cats.SemigroupK[io.circe.Decoder]
-
-cats.SemigroupK[io.circe.Decoder]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int)]
-1 times = 22ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Short, Int),scala.collection.immutable.Map[Short,Int]]->scala.collection.generic.CanBuildFrom[F,(Short, Int),scala.collection.immutable.Map[Short,Int]]
-
-
-
-
-
-cats.Eq[io.circe.Json]->shapeless.IsTuple[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc17]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc17]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc17]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc17]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String)
-
-((Any, Any, Any) => Nothing) => (org.scalacheck.Gen[?A], String)
-1 times = 0ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc15]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc15]
-1 times = 4ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc15]->shapeless.IsTuple[ProductCodecSuite.this.Cc15]
-
-
-
-
-
-String('HCursor') => ?{def should: ?}
-
-String('HCursor') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('HCursor') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-1 times = 0ms
-
-
-
-io.circe.Encoder[Map[java.util.UUID,Int]]
-
-io.circe.Encoder[Map[java.util.UUID,Int]]
-1 times = 2ms
-
-
-
-io.circe.Encoder[Map[java.util.UUID,Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.Encoder[Map[java.util.UUID,Int]]->io.circe.KeyEncoder[java.util.UUID]
-
-
-
-
-
-String('traverse') => ?{def should: ?}
-
-String('traverse') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('traverse') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor15[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, Either[Int,String]),Map[String,Either[Int,String]]]
-
-scala.collection.generic.CanBuildFrom[F,(String, Either[Int,String]),Map[String,Either[Int,String]]]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc16]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc16]
-1 times = 7ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc16]->Integral[ProductCodecSuite.this.Cc16]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc16]->Fractional[ProductCodecSuite.this.Cc16]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 32ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-io.circe.Decoder.Result[Byte] => ?{def ===: ?}
-
-io.circe.Decoder.Result[Byte] => ?{def ===: ?}
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Int, String, Char)]
-
-org.scalacheck.Arbitrary[(Int, String, Char)]
-1 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[(Int, String, Char)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, String, Char)]->scala.reflect.ClassTag[(Int, String, Char)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, String, Char)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Char]
-
-org.scalacheck.Arbitrary[Char]
-2 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[(Int, String, Char)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Shrink[scala.math.BigDecimal]
-
-org.scalacheck.Shrink[scala.math.BigDecimal]
-1 times = 3ms
-
-
-
-org.scalacheck.Shrink[scala.math.BigDecimal]->Integral[scala.math.BigDecimal]
-
-
-
-
-
-Fractional[scala.math.BigDecimal]
-
-Fractional[scala.math.BigDecimal]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[scala.math.BigDecimal]->Fractional[scala.math.BigDecimal]
-
-
-
-
-
-cats.kernel.Eq[io.circe.tests.examples.Foo]
-
-cats.kernel.Eq[io.circe.tests.examples.Foo]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[io.circe.tests.examples.Foo]->shapeless.IsTuple[io.circe.tests.examples.Foo]
-
-
-
-
-
-EncoderSuite.this.PropertyCheckConfigurable
-
-EncoderSuite.this.PropertyCheckConfigurable
-5 times = 1ms
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor10[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 131ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-13 times = 769ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-io.circe.Decoder[List[T]]
-
-io.circe.Decoder[List[T]]
-1 times = 2ms
-
-
-
-io.circe.Decoder[List[T]]->io.circe.Decoder[T]
-
-
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def asJson: ?}
-
-scala.collection.immutable.Map[String,Int] => ?{def asJson: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Array[String]]->scala.reflect.ClassTag[String]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,io.circe.Json]]
-
-io.circe.Encoder[scala.collection.immutable.Map[String,io.circe.Json]]
-1 times = 4ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,io.circe.Json]]->io.circe.KeyEncoder[String]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.Map[String,io.circe.Json]]->io.circe.Encoder[io.circe.Json]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => AccumulatingDecoderSpec.this.PropertyCheckConfigParam
-
-((Any, Any, Any) => Nothing) => AccumulatingDecoderSpec.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc19]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc19]
-1 times = 6ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc19]->Fractional[ProductCodecSuite.this.Cc19]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc19]->Integral[ProductCodecSuite.this.Cc19]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor16[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 47ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 111ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-1 times = 15ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-(Any => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-
-(Any => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[List[Either[Int,String]]]
-
-scala.reflect.ClassTag[List[Either[Int,String]]]
-2 times = 1ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-1 times = 0ms
-
-
-
-cats.Eq[io.circe.ACursor]->shapeless.IsTuple[io.circe.ACursor]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Either[Int,String]]]
-
-org.scalacheck.Arbitrary[List[Either[Int,String]]]
-2 times = 38ms
-
-
-
-org.scalacheck.Arbitrary[List[Either[Int,String]]]->List[Either[Int,String]] => Traversable[Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Either[Int,String]]]->scala.reflect.ClassTag[List[Either[Int,String]]]
-
-
-
-
-
-org.scalacheck.util.Buildable[Either[Int,String],List[Either[Int,String]]]
-
-org.scalacheck.util.Buildable[Either[Int,String],List[Either[Int,String]]]
-4 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[List[Either[Int,String]]]->org.scalacheck.util.Buildable[Either[Int,String],List[Either[Int,String]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Either[Int,String]]]->org.scalacheck.Arbitrary[Either[Int,String]]
-
-
-
-
-
-org.scalacheck.util.Buildable[(String, (String, io.circe.Json, Boolean)),Either[String,(String, io.circe.Json, Boolean)]]->scala.collection.generic.CanBuildFrom[F,(String, (String, io.circe.Json, Boolean)),Either[String,(String, io.circe.Json, Boolean)]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[(Int, Int, Int)]]
-
-cats.kernel.Eq[io.circe.KeyDecoder[(Int, Int, Int)]]
-1 times = 35ms
-
-
-
-cats.kernel.Eq[io.circe.KeyDecoder[(Int, Int, Int)]]->cats.kernel.Eq[(Int, Int, Int)]
-
-
-
-
-
-String('keys') => ?{def should: ?}
-
-String('keys') => ?{def should: ?}
-2 times = 2ms
-
-
-
-String('keys') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 91ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-(=> Any => Nothing) => MemoizedPiecesSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => MemoizedPiecesSuite.this.PropertyCheckConfigParam
-1 times = 1ms
-
-
-
-String('truncateToShort') => ?{def should: ?}
-
-String('truncateToShort') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('truncateToShort') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 1ms
-
-
-
-org.scalacheck.Shrink[Int]->Integral[Int]
-
-
-
-
-
-org.scalacheck.Shrink[Int]->Fractional[Int]
-
-
-
-
-
-Int(100) => org.scalactic.anyvals.PosZInt
-
-Int(100) => org.scalactic.anyvals.PosZInt
-1 times = 14ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc2]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc2]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc2]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc2]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 40ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-MemoizedPiecesSuite.this.PatienceConfig
-
-MemoizedPiecesSuite.this.PatienceConfig
-1 times = 1ms
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-
-(Any => Nothing) => org.scalatest.prop.TableFor3[?A,?B,?C]
-1 times = 0ms
-
-
-
-String('left') => ?{def should: ?}
-
-String('left') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('left') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc21]
-
-scala.reflect.ClassTag[ProductCodecSuite.this.Cc21]
-1 times = 1ms
-
-
-
-cats.Eq[Long]
-
-cats.Eq[Long]
-2 times = 14ms
-
-
-
-cats.Eq[Long]->shapeless.IsTuple[Long]
-
-
-
-
-
-io.circe.Encoder[io.circe.JsonNumber]
-
-io.circe.Encoder[io.circe.JsonNumber]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Map[String,Either[Int,String]]]
-
-org.scalacheck.Arbitrary[Map[String,Either[Int,String]]]
-1 times = 28ms
-
-
-
-org.scalacheck.Arbitrary[Map[String,Either[Int,String]]]->scala.reflect.ClassTag[Map[String,Either[Int,String]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[String,Either[Int,String]]]->org.scalacheck.Arbitrary[(String, Either[Int,String])]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[String,Either[Int,String]]]->Map[String,Either[Int,String]] => Traversable[(String, Either[Int,String])]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[String,Either[Int,String]]]->org.scalacheck.util.Buildable[(String, Either[Int,String]),Map[String,Either[Int,String]]]
-
-
-
-
-
-cats.FlatMap[io.circe.Decoder.Result]
-
-cats.FlatMap[io.circe.Decoder.Result]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Map[String,Int]]
-
-org.scalacheck.Arbitrary[Map[String,Int]]
-4 times = 51ms
-
-
-
-org.scalacheck.Arbitrary[Map[String,Int]]->scala.reflect.ClassTag[Map[String,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[String,Int]]->Map[String,Int] => Traversable[(String, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[String,Int]]->org.scalacheck.util.Buildable[(String, Int),Map[String,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[String,Int]]->org.scalacheck.Arbitrary[(String, Int)]
-
-
-
-
-
-io.circe.Decoder[Unit]
-
-io.circe.Decoder[Unit]
-1 times = 2ms
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor8[?A,?B,?C,?D,?E,?F,?G,?H]
-1 times = 0ms
-
-
-
-io.circe.Decoder[Option[String]]
-
-io.circe.Decoder[Option[String]]
-3 times = 16ms
-
-
-
-io.circe.Decoder[Option[String]]->io.circe.Decoder[String]
-
-
-
-
-
-io.circe.Decoder[Option[String]]->scala.collection.generic.CanBuildFrom[Nothing,String,Traversable[String] with Option[String]]
-
-
-
-
-
-Option[Long] => ?{def ===: ?}
-
-Option[Long] => ?{def ===: ?}
-10 times = 45ms
-
-
-
-Option[Long] => ?{def ===: ?}->cats.Eq[Option[Long]]
-
-
-
-
-
-String('filterKeys') => ?{def should: ?}
-
-String('filterKeys') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('filterKeys') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-JsonNumberSuite.this.PropertyCheckConfigurable
-
-JsonNumberSuite.this.PropertyCheckConfigurable
-18 times = 6ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor1[?A]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor1[?A]
-1 times = 0ms
-
-
-
-String('fromFloatOrNull') => ?{def should: ?}
-
-String('fromFloatOrNull') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('fromFloatOrNull') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[Int]]
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[Int]]
-4 times = 17ms
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[Int]]->shapeless.IsTuple[io.circe.AccumulatingDecoder[Int]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Order[(String, io.circe.Json)]->cats.kernel.Order[String]
-
-
-
-
-
-cats.kernel.Order[(String, io.circe.Json)]->cats.kernel.Order[io.circe.Json]
-
-
-
-
-
-org.scalacheck.util.Buildable[(String, Either[Int,String]),Map[String,Either[Int,String]]]->scala.collection.generic.CanBuildFrom[F,(String, Either[Int,String]),Map[String,Either[Int,String]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc14]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc14]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc14]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc14]
-
-
-
-
-
-Option[Byte] => ?{def ===: ?}
-
-Option[Byte] => ?{def ===: ?}
-2 times = 11ms
-
-
-
-Option[Byte] => ?{def ===: ?}->cats.Eq[Option[Byte]]
-
-
-
-
-
-(String, io.circe.Json) <:< (T, U)
-
-(String, io.circe.Json) <:< (T, U)
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(Long, Int),scala.collection.immutable.Map[Long,Int]]->scala.collection.generic.CanBuildFrom[F,(Long, Int),scala.collection.immutable.Map[Long,Int]]
-
-
-
-
-
-org.scalacheck.Shrink[List[Either[Int,String]]]
-
-org.scalacheck.Shrink[List[Either[Int,String]]]
-2 times = 25ms
-
-
-
-org.scalacheck.Shrink[List[Either[Int,String]]]->List[Either[Int,String]] => Traversable[Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Shrink[List[Either[Int,String]]]->org.scalacheck.Shrink[Either[Int,String]]
-
-
-
-
-
-Integral[List[Either[Int,String]]]
-
-Integral[List[Either[Int,String]]]
-2 times = 1ms
-
-
-
-org.scalacheck.Shrink[List[Either[Int,String]]]->Integral[List[Either[Int,String]]]
-
-
-
-
-
-org.scalacheck.Shrink[List[Either[Int,String]]]->org.scalacheck.util.Buildable[Either[Int,String],List[Either[Int,String]]]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 57ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)]->scala.reflect.ClassTag[(String, Boolean)]
-
-
-
-
-
-cats.Foldable[scala.collection.immutable.Vector]
-
-cats.Foldable[scala.collection.immutable.Vector]
-1 times = 0ms
-
-
-
-io.circe.Encoder[Array[String]]
-
-io.circe.Encoder[Array[String]]
-1 times = 6ms
-
-
-
-io.circe.Encoder[Array[String]]->io.circe.Encoder[String]
-
-
-
-
-
-io.circe.Encoder[Array[String]]->Array[String] => Iterable[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Char]->scala.reflect.ClassTag[Char]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor13[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M]
-1 times = 0ms
-
-
-
-String('JsonFloat.toBigInt') => ?{def should: ?}
-
-String('JsonFloat.toBigInt') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('JsonFloat.toBigInt') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.Eq[io.circe.JsonNumber]->shapeless.IsTuple[io.circe.JsonNumber]
-
-
-
-
-
-org.scalacheck.Arbitrary[Vector[io.circe.Json]]
-
-org.scalacheck.Arbitrary[Vector[io.circe.Json]]
-3 times = 16ms
-
-
-
-org.scalacheck.Arbitrary[Vector[io.circe.Json]]->scala.reflect.ClassTag[Vector[io.circe.Json]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Vector[io.circe.Json]]->org.scalacheck.util.Buildable[io.circe.Json,Vector[io.circe.Json]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Vector[io.circe.Json]]->Vector[io.circe.Json] => Traversable[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Arbitrary[Vector[io.circe.Json]]->org.scalacheck.Arbitrary[io.circe.Json]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 177ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[io.circe.numbers.testing.JsonNumberString]
-
-org.scalacheck.Shrink[io.circe.numbers.testing.JsonNumberString]
-1 times = 3ms
-
-
-
-org.scalacheck.Shrink[io.circe.numbers.testing.JsonNumberString]->Fractional[io.circe.numbers.testing.JsonNumberString]
-
-
-
-
-
-org.scalacheck.Shrink[io.circe.numbers.testing.JsonNumberString]->Integral[io.circe.numbers.testing.JsonNumberString]
-
-
-
-
-
-String('fromString') => ?{def should: ?}
-
-String('fromString') => ?{def should: ?}
-1 times = 6ms
-
-
-
-String('fromString') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-io.circe.Encoder[Some[Int]]
-
-io.circe.Encoder[Some[Int]]
-1 times = 3ms
-
-
-
-io.circe.Encoder[Some[Int]]->io.circe.Encoder[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Double]
-
-org.scalacheck.Arbitrary[Double]
-9 times = 25ms
-
-
-
-org.scalacheck.Arbitrary[Double]->scala.reflect.ClassTag[Double]
-
-
-
-
-
-((Any, Any) => Nothing) => LargeNumberDecoderTests.this.PropertyCheckConfigParam
-
-((Any, Any) => Nothing) => LargeNumberDecoderTests.this.PropertyCheckConfigParam
-2 times = 8ms
-
-
-
-Int(0) => ?{def to: ?}
-
-Int(0) => ?{def to: ?}
-2 times = 10ms
-
-
-
-io.circe.Decoder[Map[String,Int]]
-
-io.circe.Decoder[Map[String,Int]]
-4 times = 17ms
-
-
-
-io.circe.Decoder[Map[String,Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[Map[String,Int]]->io.circe.KeyDecoder[String]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-
-(=> (Any, Any) => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-7 times = 1ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 33ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-org.scalatest.words.StringVerbStringInvocation
-
-org.scalatest.words.StringVerbStringInvocation
-149 times = 57ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-
-(=> (Any, Any) => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-1 times = 0ms
-
-
-
-cats.Eq[List[Option[io.circe.Json]]]->cats.kernel.Eq[Option[io.circe.Json]]
-
-
-
-
-
-cats.Eq[List[Option[io.circe.Json]]]->cats.kernel.Order[Option[io.circe.Json]]
-
-
-
-
-
-cats.Eq[List[Option[io.circe.Json]]]->cats.kernel.PartialOrder[Option[io.circe.Json]]
-
-
-
-
-
-shapeless.IsTuple[List[Option[io.circe.Json]]]
-
-shapeless.IsTuple[List[Option[io.circe.Json]]]
-1 times = 0ms
-
-
-
-cats.Eq[List[Option[io.circe.Json]]]->shapeless.IsTuple[List[Option[io.circe.Json]]]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-
-(=> (Any, Any, Any) => Nothing) => ((?A, ?B, ?C, ?D) => ?ASSERTION)
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-
-(=> (Any, Any, Any) => Nothing) => JsonObjectSuite.this.PropertyCheckConfigParam
-4 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc5]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc5]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc5]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc5]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor17[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q]
-1 times = 0ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 31ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-cats.Monoid[io.circe.Decoder.Result[Byte]]->cats.kernel.Monoid[Byte]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor2[?A,?B]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 46ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc20]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc20]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc20]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc20]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 29ms
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.ObjectEncoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Encoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Encoder[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Long, Int)]->org.scalacheck.Arbitrary[Long]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Long, Int)]->scala.reflect.ClassTag[(Long, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Long, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc10]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc10]
-1 times = 5ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc10]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc10]]
-
-
-
-
-
-Long => Int
-
-Long => Int
-18 times = 18ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 72ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 32ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]
-1 times = 27ms
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]]->cats.kernel.Eq[scala.util.Either[cats.data.NonEmptyList[io.circe.DecodingFailure],Int]]
-
-
-
-
-
-cats.laws.discipline.CartesianTests.Isomorphisms[io.circe.AccumulatingDecoder]
-
-cats.laws.discipline.CartesianTests.Isomorphisms[io.circe.AccumulatingDecoder]
-1 times = 1ms
-
-
-
-cats.laws.discipline.CartesianTests.Isomorphisms[io.circe.AccumulatingDecoder]->cats.functor.Invariant[io.circe.AccumulatingDecoder]
-
-
-
-
-
-shapeless.IsTuple[Double]
-
-shapeless.IsTuple[Double]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-io.circe.Encoder[cats.data.NonEmptyList[io.circe.Json]]
-
-io.circe.Encoder[cats.data.NonEmptyList[io.circe.Json]]
-1 times = 3ms
-
-
-
-io.circe.Encoder[cats.data.NonEmptyList[io.circe.Json]]->io.circe.Encoder[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc3]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc3]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc3]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc3]
-
-
-
-
-
-String('asObject') => ?{def should: ?}
-
-String('asObject') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('asObject') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[String,Either[Int,String]],(String, io.circe.Json),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[String,Either[Int,String]],(String, io.circe.Json),That]
-1 times = 2ms
-
-
-
-io.circe.Decoder[scala.collection.mutable.HashMap[Long,Int]]
-
-io.circe.Decoder[scala.collection.mutable.HashMap[Long,Int]]
-1 times = 11ms
-
-
-
-io.circe.Decoder[scala.collection.mutable.HashMap[Long,Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[scala.collection.mutable.HashMap[Long,Int]]->io.circe.KeyDecoder[Long]
-
-
-
-
-
-io.circe.Decoder[scala.collection.mutable.HashMap[Long,Int]]->scala.collection.generic.CanBuildFrom[Nothing,(Long, Int),scala.collection.mutable.HashMap[Long,Int]]
-
-
-
-
-
-cats.kernel.Eq[Some[Int]]
-
-cats.kernel.Eq[Some[Int]]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[Some[Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Some[Int]]->shapeless.IsTuple[Some[Int]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[io.circe.Json],io.circe.Json,Vector[io.circe.Json]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[io.circe.Json],io.circe.Json,Vector[io.circe.Json]]
-1 times = 0ms
-
-
-
-String('Json') => ?{def should: ?}
-
-String('Json') => ?{def should: ?}
-1 times = 8ms
-
-
-
-String('Json') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-
-((Any, Any) => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[io.circe.KeyEncoder[Int]]
-
-cats.kernel.Eq[io.circe.KeyEncoder[Int]]
-2 times = 9ms
-
-
-
-cats.kernel.Eq[io.circe.KeyEncoder[Int]]->shapeless.IsTuple[io.circe.KeyEncoder[Int]]
-
-
-
-
-
-cats.kernel.Eq[io.circe.KeyEncoder[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-cats.kernel.Eq[Boolean]->shapeless.IsTuple[Boolean]
-
-
-
-
-
-Int(3) => ?{def asJson: ?}
-
-Int(3) => ?{def asJson: ?}
-3 times = 1ms
-
-
-
-scala.collection.immutable.Map[String,io.circe.Json] => ?{def asJson: ?}
-
-scala.collection.immutable.Map[String,io.circe.Json] => ?{def asJson: ?}
-1 times = 1ms
-
-
-
-cats.laws.discipline.CartesianTests.Isomorphisms[io.circe.KeyDecoder]
-
-cats.laws.discipline.CartesianTests.Isomorphisms[io.circe.KeyDecoder]
-1 times = 0ms
-
-
-
-cats.laws.discipline.CartesianTests.Isomorphisms[io.circe.KeyDecoder]->cats.functor.Invariant[io.circe.KeyDecoder]
-
-
-
-
-
-org.scalacheck.Shrink[java.util.UUID]->Integral[java.util.UUID]
-
-
-
-
-
-Fractional[java.util.UUID]
-
-Fractional[java.util.UUID]
-2 times = 2ms
-
-
-
-org.scalacheck.Shrink[java.util.UUID]->Fractional[java.util.UUID]
-
-
-
-
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Int => Int]]
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Int => Int]]
-2 times = 36ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.Decoder[Int => Int]]->org.scalacheck.Arbitrary[Int => Int]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor19[?A,?B,?C,?D,?E,?F,?G,?H,?I,?J,?K,?L,?M,?N,?O,?P,?Q,?R,?S]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],List[io.circe.Json],That]
-
-scala.collection.generic.CanBuildFrom[List[io.circe.Json],List[io.circe.Json],That]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc17]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc17]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc17]->shapeless.IsTuple[ProductCodecSuite.this.Cc17]
-
-
-
-
-
-cats.Eq[Vector[Int]]
-
-cats.Eq[Vector[Int]]
-1 times = 5ms
-
-
-
-cats.Eq[Vector[Int]]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.Eq[Vector[Int]]->shapeless.IsTuple[Vector[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyVector[Int]]
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyVector[Int]]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyVector[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-String('add') => ?{def should: ?}
-
-String('add') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('add') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 163ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[io.circe.JsonObject]->shapeless.IsTuple[io.circe.JsonObject]
-
-
-
-
-
-io.circe.Decoder[Short]
-
-io.circe.Decoder[Short]
-4 times = 10ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc21]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc21]
-1 times = 5ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc21]->shapeless.IsTuple[ProductCodecSuite.this.Cc21]
-
-
-
-
-
-org.scalacheck.Arbitrary[cats.data.Validated[String,Int]]
-
-org.scalacheck.Arbitrary[cats.data.Validated[String,Int]]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[cats.data.Validated[String,Int]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[cats.data.Validated[String,Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-String('rights') => ?{def should: ?}
-
-String('rights') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('rights') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[io.circe.CursorOp]->Integral[io.circe.CursorOp]
-
-
-
-
-
-org.scalacheck.Shrink[io.circe.CursorOp]->Fractional[io.circe.CursorOp]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int)]
-
-io.circe.Decoder[(Int, Int, Int, Int, Int)]
-1 times = 18ms
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int)]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[(Int, Int, Int, Int, Int)]->io.circe.export.Exported[io.circe.Decoder[(Int, Int, Int, Int, Int)]]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc15]
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc15]
-1 times = 6ms
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc15]->Fractional[ProductCodecSuite.this.Cc15]
-
-
-
-
-
-org.scalacheck.Shrink[ProductCodecSuite.this.Cc15]->Integral[ProductCodecSuite.this.Cc15]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Int]]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Int]]->cats.kernel.Order[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Int]]->cats.kernel.Eq[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[io.circe.DecodingFailure,Int]]->cats.kernel.PartialOrder[io.circe.DecodingFailure]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 163ms
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int),L]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->shapeless.IsTuple[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.PartialOrder[Int]
-
-
-
-
-
-cats.kernel.Eq[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]->cats.kernel.Eq[Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil]
-
-
-
-
-
-cats.kernel.Eq[None.type]
-
-cats.kernel.Eq[None.type]
-1 times = 2ms
-
-
-
-cats.kernel.Eq[None.type]->shapeless.IsTuple[None.type]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 4ms
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Integral[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->Fractional[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-cats.Eq[Double]
-
-cats.Eq[Double]
-1 times = 3ms
-
-
-
-cats.Eq[Double]->shapeless.IsTuple[Double]
-
-
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc7]
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc7]
-1 times = 6ms
-
-
-
-cats.kernel.Eq[ProductCodecSuite.this.Cc7]->shapeless.IsTuple[ProductCodecSuite.this.Cc7]
-
-
-
-
-
-String('deleteRights') => ?{def should: ?}
-
-String('deleteRights') => ?{def should: ?}
-1 times = 1ms
-
-
-
-String('deleteRights') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-1 times = 62ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => String
-
-(=> (Any, Any, Any) => Nothing) => String
-9 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[List[io.circe.Json]]
-
-org.scalacheck.Arbitrary[List[io.circe.Json]]
-13 times = 80ms
-
-
-
-org.scalacheck.Arbitrary[List[io.circe.Json]]->List[io.circe.Json] => Traversable[io.circe.Json]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[io.circe.Json]]->org.scalacheck.util.Buildable[io.circe.Json,List[io.circe.Json]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[io.circe.Json]]->scala.reflect.ClassTag[List[io.circe.Json]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[io.circe.Json]]->org.scalacheck.Arbitrary[io.circe.Json]
-
-
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc4]
-
-io.circe.Encoder[ProductCodecSuite.this.Cc4]
-1 times = 6ms
-
-
-
-io.circe.Encoder[ProductCodecSuite.this.Cc4]->io.circe.export.Exported[io.circe.ObjectEncoder[ProductCodecSuite.this.Cc4]]
-
-
-
-
-
-(Any => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-
-(Any => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-1 times = 0ms
-
-
-
-pz1.type => ?{def ===: ?}
-
-pz1.type => ?{def ===: ?}
-1 times = 4ms
-
-
-
-pz1.type => ?{def ===: ?}->cats.Eq[io.circe.JsonNumber]
-
-
-
-
-
-cats.kernel.Order[List[(String, io.circe.Json)]]->cats.kernel.Order[(String, io.circe.Json)]
-
-
-
-
-
-io.circe.Decoder[Map[Int,Int]]
-
-io.circe.Decoder[Map[Int,Int]]
-1 times = 4ms
-
-
-
-io.circe.Decoder[Map[Int,Int]]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[Map[Int,Int]]->io.circe.KeyDecoder[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Int]]
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Int]]
-4 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.AccumulatingDecoder[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.util.Buildable[Either[String,(String, io.circe.Json, Boolean)],List[Either[String,(String, io.circe.Json, Boolean)]]]->scala.collection.generic.CanBuildFrom[F,Either[String,(String, io.circe.Json, Boolean)],List[Either[String,(String, io.circe.Json, Boolean)]]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-
-cats.kernel.Eq[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-1 times = 14ms
-
-
-
-cats.kernel.Eq[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]->cats.Eq[scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-cats.kernel.Eq[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]->cats.Eq[Int]
-
-
-
-
-
-cats.kernel.Eq[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]->shapeless.IsTuple[cats.data.OneAnd[[+A]scala.collection.immutable.Stream[A],Int]]
-
-
-
-
-
-AccumulatingDecoderSpec.this.PropertyCheckConfigurable
-
-AccumulatingDecoderSpec.this.PropertyCheckConfigurable
-7 times = 2ms
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[(Int, Int, Int)]]
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[(Int, Int, Int)]]
-1 times = 38ms
-
-
-
-cats.kernel.Eq[io.circe.AccumulatingDecoder[(Int, Int, Int)]]->cats.kernel.Eq[(Int, Int, Int)]
-
-
-
-
-
-String('toList') => ?{def should: ?}
-
-String('toList') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('toList') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(Any => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-
-(Any => Nothing) => DecoderSuite.this.PropertyCheckConfigParam
-24 times = 5ms
-
-
-
-String('add, +:, and remove') => ?{def should: ?}
-
-String('add, +:, and remove') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('add, +:, and remove') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-String('2') => ?{def asJson: ?}
-
-String('2') => ?{def asJson: ?}
-2 times = 1ms
-
-
-
-nz1.type => ?{def ===: ?}
-
-nz1.type => ?{def ===: ?}
-1 times = 4ms
-
-
-
-nz1.type => ?{def ===: ?}->cats.Eq[io.circe.JsonNumber]
-
-
-
-
-
-LargeNumberDecoderTests.this.PropertyCheckConfigurable
-
-LargeNumberDecoderTests.this.PropertyCheckConfigurable
-2 times = 3ms
-
-
-
-cats.Eq[Option[Boolean]]->cats.kernel.Order[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Symbol, Int)]->org.scalacheck.Arbitrary[Symbol]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Symbol, Int)]->scala.reflect.ClassTag[(Symbol, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Symbol, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor4[?A,?B,?C,?D]
-1 times = 0ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-
-((Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor5[?A,?B,?C,?D,?E]
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-
-(=> (Any, Any, Any) => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-1 times = 0ms
-
-
-
-io.circe.Encoder[io.circe.tests.examples.WrappedOptionalField]
-
-io.circe.Encoder[io.circe.tests.examples.WrappedOptionalField]
-1 times = 2ms
-
-
-
-io.circe.Encoder[io.circe.tests.examples.WrappedOptionalField]->io.circe.export.Exported[io.circe.ObjectEncoder[io.circe.tests.examples.WrappedOptionalField]]
-
-
-
-
-
-String('toMap') => ?{def should: ?}
-
-String('toMap') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('toMap') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.util.Buildable[(Byte, Int),scala.collection.immutable.Map[Byte,Int]]->scala.collection.generic.CanBuildFrom[F,(Byte, Int),scala.collection.immutable.Map[Byte,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]->scala.collection.immutable.Stream[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]->org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]->scala.reflect.ClassTag[scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[io.circe.tests.examples.WrappedOptionalField]
-
-org.scalacheck.Arbitrary[io.circe.tests.examples.WrappedOptionalField]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[io.circe.tests.examples.WrappedOptionalField]->scala.reflect.ClassTag[io.circe.tests.examples.WrappedOptionalField]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc21]
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc21]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[ProductCodecSuite.this.Cc21]->scala.reflect.ClassTag[ProductCodecSuite.this.Cc21]
-
-
-
-
-
-org.scalacheck.util.Buildable[Either[Int,String],List[Either[Int,String]]]->scala.collection.generic.CanBuildFrom[F,Either[Int,String],List[Either[Int,String]]]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-
-(=> (Any, Any) => Nothing) => StdLibCodecSuite.this.PropertyCheckConfigParam
-1 times = 0ms
-
-
-
-io.circe.Json => ?{def ===: ?}
-
-io.circe.Json => ?{def ===: ?}
-26 times = 189ms
-
-
-
-io.circe.Json => ?{def ===: ?}->cats.Eq[io.circe.Json]
-
-
-
-
-
-org.scalacheck.util.Buildable[Int,Vector[Int]]->scala.collection.generic.CanBuildFrom[F,Int,Vector[Int]]
-
-
-
-
-
-String('fromFloat') => ?{def should: ?}
-
-String('fromFloat') => ?{def should: ?}
-2 times = 1ms
-
-
-
-String('fromFloat') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]]->scala.reflect.ClassTag[Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]]->org.scalacheck.util.Buildable[(Int, String),Either[Int,String]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]]->org.scalacheck.Arbitrary[(Int, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[Int,String]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[Int]]
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[Int]]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[cats.data.NonEmptyList[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-String('toVector') => ?{def should: ?}
-
-String('toVector') => ?{def should: ?}
-1 times = 0ms
-
-
-
-String('toVector') => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-
-(=> Any => Nothing) => org.scalatest.prop.TableFor9[?A,?B,?C,?D,?E,?F,?G,?H,?I]
-1 times = 0ms
-
-
-
-cats.kernel.Eq[scala.util.Either[Unit,Int]]->cats.kernel.Order[Int]
-
-
-
-
-
-cats.kernel.Eq[scala.util.Either[Unit,Int]]->cats.kernel.Order[Unit]
-
-
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc15]
-
-io.circe.Decoder[ProductCodecSuite.this.Cc15]
-1 times = 4ms
-
-
-
-io.circe.Decoder[ProductCodecSuite.this.Cc15]->io.circe.export.Exported[io.circe.Decoder[ProductCodecSuite.this.Cc15]]
-
-
-
-
-
-(=> Any => Nothing) => SyntaxSuite.this.PropertyCheckConfigParam
-
-(=> Any => Nothing) => SyntaxSuite.this.PropertyCheckConfigParam
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int)]
-1 times = 16ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
diff --git a/docs/css/graphviz.svg.css b/docs/css/graphviz.svg.css
deleted file mode 100644
index ba4da2e..0000000
--- a/docs/css/graphviz.svg.css
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (c) 2015 Mountainstorm
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-/* this element needs tooltip positioning to work */
-.graphviz-svg {
- position: relative;
-}
-
-/* stop tooltips wrapping */
-.graphviz-svg .tooltip-inner {
- white-space: nowrap;
-}
-
-/* stop people selecting text on nodes */
-.graphviz-svg text {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- cursor: default;
-}
diff --git a/docs/demo.dot b/docs/demo.dot
deleted file mode 100644
index 954d0fb..0000000
--- a/docs/demo.dot
+++ /dev/null
@@ -1,262 +0,0 @@
-digraph "implicit-searches-1510003565016" {
- graph [ranksep=0];
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]" [label="shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]\l30ms"];
- "io.circe.export.Exported[io.circe.Decoder[String]]" [label="io.circe.export.Exported[io.circe.Decoder[String]]\l31ms"];
- "shapeless.LabelledGeneric.Aux[Qux,R]" [label="shapeless.LabelledGeneric.Aux[Qux,R]\l31ms"];
- "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]" [label="shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]\l11ms"];
- "io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]" [label="io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]\l41ms"];
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]" [label="shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]\l57ms"];
- "io.circe.export.Exported[io.circe.ObjectEncoder[List[String]]]" [style=filled, fillcolor="#ea9d8f",label="io.circe.export.Exported[io.circe.ObjectEncoder[List[String]]]\l999ms"];
- "io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.Nil.type]]" [label="io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.Nil.type]]\l26ms"];
- "io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]" [label="io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]\l166ms"];
- "io.circe.Encoder[String]" [label="io.circe.Encoder[String]\l95ms"];
- "io.circe.export.Exported[io.circe.ObjectEncoder[Foo]]" [style=filled, fillcolor="#ea9d8f",label="io.circe.export.Exported[io.circe.ObjectEncoder[Foo]]\l2049ms"];
- "io.circe.Decoder[scala.collection.immutable.::[String]]" [label="io.circe.Decoder[scala.collection.immutable.::[String]]\l109ms"];
- "io.circe.Decoder[scala.collection.immutable.Nil.type]" [label="io.circe.Decoder[scala.collection.immutable.Nil.type]\l30ms"];
- "io.circe.export.Exported[io.circe.Decoder[Qux]]" [label="io.circe.export.Exported[io.circe.Decoder[Qux]]\l72ms"];
- "io.circe.Decoder[List[String]]" [label="io.circe.Decoder[List[String]]\l395ms"];
- "io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]" [label="io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]\l56ms"];
- "io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]" [label="io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]\l52ms"];
- "io.circe.Decoder[Option[Double]]" [label="io.circe.Decoder[Option[Double]]\l17ms"];
- "shapeless.LabelledGeneric.Aux[String,R]" [label="shapeless.LabelledGeneric.Aux[String,R]\l6ms"];
- "io.circe.generic.decoding.DerivedDecoder[List[String]]" [label="io.circe.generic.decoding.DerivedDecoder[List[String]]\l384ms"];
- "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]" [label="shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]\l8ms"];
- "io.circe.generic.encoding.DerivedObjectEncoder[List[String]]" [style=filled, fillcolor="#ea9d8f",label="io.circe.generic.encoding.DerivedObjectEncoder[List[String]]\l991ms"];
- "io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]" [label="io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]\l68ms"];
- "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]" [label="shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]\l50ms"];
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]" [label="shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]\l18ms"];
- "io.circe.export.Exported[io.circe.ObjectEncoder[String]]" [label="io.circe.export.Exported[io.circe.ObjectEncoder[String]]\l58ms"];
- "io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]" [label="io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]\l214ms"];
- "io.circe.Encoder[List[String]]" [style=filled, fillcolor="#ea9d8f",label="io.circe.Encoder[List[String]]\l1022ms"];
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]" [label="shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]\l13ms"];
- "io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]" [style=filled, fillcolor="#ea9d8f",label="io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]\l524ms"];
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]" [label="shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]\l6ms"];
- "shapeless.LabelledGeneric.Aux[Foo,R]" [label="shapeless.LabelledGeneric.Aux[Foo,R]\l207ms"];
- "shapeless.LabelledGeneric.Aux[Bar,R]" [label="shapeless.LabelledGeneric.Aux[Bar,R]\l38ms"];
- "io.circe.Encoder[Option[Double]]" [label="io.circe.Encoder[Option[Double]]\l23ms"];
- "io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]" [label="io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]\l97ms"];
- "io.circe.Encoder[Bar]" [style=filled, fillcolor="#ea9d8f",label="io.circe.Encoder[Bar]\l1206ms"];
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]" [label="shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]\l20ms"];
- "shapeless.LabelledGeneric.Aux[String,R]" [label="shapeless.LabelledGeneric.Aux[String,R]\l9ms"];
- "shapeless.LabelledGeneric.Aux[Qux,R]" [label="shapeless.LabelledGeneric.Aux[Qux,R]\l90ms"];
- "shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('d')) :: shapeless.HNil,Option[Double] :: shapeless.HNil]" [label="shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('d')) :: shapeless.HNil,Option[Double] :: shapeless.HNil]\l18ms"];
- "shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('tl$access$1')) :: shapeless.HNil,List[String] :: shapeless.HNil]" [label="shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('tl$access$1')) :: shapeless.HNil,List[String] :: shapeless.HNil]\l12ms"];
- "shapeless.LabelledGeneric.Aux[Bar,R]" [label="shapeless.LabelledGeneric.Aux[Bar,R]\l30ms"];
- "io.circe.Decoder[String]" [label="io.circe.Decoder[String]\l49ms"];
- "shapeless.LabelledGeneric.Aux[String,R]" [label="shapeless.LabelledGeneric.Aux[String,R]\l13ms"];
- "shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil]" [label="shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil]\l15ms"];
- "shapeless.LabelledGeneric.Aux[Qux,R]" [label="shapeless.LabelledGeneric.Aux[Qux,R]\l37ms"];
- "io.circe.Encoder[Qux]" [label="io.circe.Encoder[Qux]\l234ms"];
- "io.circe.Decoder[Qux]" [label="io.circe.Decoder[Qux]\l76ms"];
- "shapeless.LabelledGeneric.Aux[String,R]" [label="shapeless.LabelledGeneric.Aux[String,R]\l5ms"];
- "io.circe.Encoder[scala.collection.immutable.::[String]]" [label="io.circe.Encoder[scala.collection.immutable.::[String]]\l232ms"];
- "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]" [label="shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]\l13ms"];
- "io.circe.generic.decoding.DerivedDecoder[Foo]" [style=filled, fillcolor="#ea9d8f",label="io.circe.generic.decoding.DerivedDecoder[Foo]\l576ms"];
- "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]" [label="shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]\l17ms"];
- "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]" [label="shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]\l8ms"];
- "io.circe.export.Exported[io.circe.ObjectEncoder[Qux]]" [label="io.circe.export.Exported[io.circe.ObjectEncoder[Qux]]\l219ms"];
- "io.circe.Encoder[Foo]" [style=filled, fillcolor="#ea9d8f",label="io.circe.Encoder[Foo]\l2114ms"];
- "io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.Nil.type]]" [label="io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.Nil.type]]\l72ms"];
- "io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]" [label="io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]\l21ms"];
- "shapeless.LabelledGeneric.Aux[List[String],R]" [label="shapeless.LabelledGeneric.Aux[List[String],R]\l215ms"];
- "io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]" [label="io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]\l204ms"];
- "io.circe.generic.decoding.ReprDecoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]" [label="io.circe.generic.decoding.ReprDecoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]\l401ms"];
- "io.circe.generic.encoding.DerivedObjectEncoder[String]" [label="io.circe.generic.encoding.DerivedObjectEncoder[String]\l40ms"];
- "io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.::[String]]]" [label="io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.::[String]]]\l211ms"];
- "io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]" [label="io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]\l65ms"];
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]" [label="shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]\l25ms"];
- "io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]" [label="io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]\l34ms"];
- "io.circe.export.Exported[io.circe.Decoder[Bar]]" [label="io.circe.export.Exported[io.circe.Decoder[Bar]]\l437ms"];
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" [style=filled, fillcolor="#ea9d8f",label="shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]\l1969ms"];
- "shapeless.LabelledGeneric.Aux[Foo,R]" [label="shapeless.LabelledGeneric.Aux[Foo,R]\l47ms"];
- "shapeless.LabelledGeneric.Aux[List[String],R]" [label="shapeless.LabelledGeneric.Aux[List[String],R]\l399ms"];
- "io.circe.generic.decoding.DerivedDecoder[Bar]" [label="io.circe.generic.decoding.DerivedDecoder[Bar]\l434ms"];
- "shapeless.LabelledGeneric.Aux[Bar,R]" [label="shapeless.LabelledGeneric.Aux[Bar,R]\l102ms"];
- "io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.::[String]]]" [label="io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.::[String]]]\l99ms"];
- "io.circe.generic.decoding.DerivedDecoder[Qux]" [label="io.circe.generic.decoding.DerivedDecoder[Qux]\l69ms"];
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]" [label="shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]\l10ms"];
- "io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]" [label="io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]\l393ms"];
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]" [label="shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]\l11ms"];
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]" [label="shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]\l8ms"];
- "io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]" [label="io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]\l122ms"];
- "shapeless.LabelledGeneric.Aux[Foo,R]" [label="shapeless.LabelledGeneric.Aux[Foo,R]\l33ms"];
- "io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]" [label="io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]\l23ms"];
- "shapeless.LabelledGeneric.Aux[List[String],R]" [label="shapeless.LabelledGeneric.Aux[List[String],R]\l248ms"];
- "io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]" [style=filled, fillcolor="#ea9d8f",label="io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]\l954ms"];
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]" [label="shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]\l7ms"];
- "io.circe.generic.encoding.DerivedObjectEncoder[Qux]" [label="io.circe.generic.encoding.DerivedObjectEncoder[Qux]\l209ms"];
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]" [label="shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]\l58ms"];
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]" [label="shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]\l38ms"];
- "io.circe.generic.encoding.DerivedObjectEncoder[Foo]" [style=filled, fillcolor="#ea9d8f",label="io.circe.generic.encoding.DerivedObjectEncoder[Foo]\l1744ms"];
- "io.circe.export.Exported[io.circe.Decoder[Foo]]" [style=filled, fillcolor="#ea9d8f",label="io.circe.export.Exported[io.circe.Decoder[Foo]]\l684ms"];
- "io.circe.export.Exported[io.circe.Decoder[List[String]]]" [label="io.circe.export.Exported[io.circe.Decoder[List[String]]]\l387ms"];
- "io.circe.generic.encoding.DerivedObjectEncoder[Bar]" [style=filled, fillcolor="#ea9d8f",label="io.circe.generic.encoding.DerivedObjectEncoder[Bar]\l1184ms"];
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" [style=filled, fillcolor="#ea9d8f",label="shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]\l657ms"];
- "io.circe.Decoder[Bar]" [label="io.circe.Decoder[Bar]\l441ms"];
- "io.circe.export.Exported[io.circe.ObjectEncoder[Bar]]" [style=filled, fillcolor="#ea9d8f",label="io.circe.export.Exported[io.circe.ObjectEncoder[Bar]]\l1192ms"];
- "io.circe.Encoder[scala.collection.immutable.Nil.type]" [label="io.circe.Encoder[scala.collection.immutable.Nil.type]\l86ms"];
- "shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Qux')) :: shapeless.HNil,Qux :+: shapeless.CNil]" [label="shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Qux')) :: shapeless.HNil,Qux :+: shapeless.CNil]\l36ms"];
- "io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]" [style=filled, fillcolor="#ea9d8f",label="io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]\l539ms"];
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]" [label="shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]\l6ms"];
- "io.circe.Decoder[Foo]" [style=filled, fillcolor="#ea9d8f",label="io.circe.Decoder[Foo]\l705ms"];
- "io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]" [style=filled, fillcolor="#ea9d8f",label="io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]\l642ms"];
- "io.circe.generic.decoding.DerivedDecoder[String]" [label="io.circe.generic.decoding.DerivedDecoder[String]\l23ms"];
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]" [label="shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]\l35ms"];
-
- "io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.Nil.type]]" -> "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]]";
- "io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]" -> "io.circe.Encoder[scala.collection.immutable.Nil.type]";
- "io.circe.generic.decoding.DerivedDecoder[List[String]]" -> "shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]]";
- "io.circe.generic.decoding.DerivedDecoder[Qux]" -> "shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]]";
- "io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]" -> "shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]]";
- "io.circe.generic.decoding.DerivedDecoder[Foo]" -> "shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]]";
- "io.circe.generic.encoding.DerivedObjectEncoder[String]" -> "shapeless.LabelledGeneric.Aux[String,R]";
- "io.circe.generic.decoding.DerivedDecoder[String]" -> "shapeless.LabelledGeneric.Aux[String,R]";
- "io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.Nil.type]]" -> "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]]";
- "io.circe.export.Exported[io.circe.ObjectEncoder[String]]" -> "(=> Unit) => shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]";
- "io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]" -> "io.circe.Decoder[Option[Double]]";
- "io.circe.Decoder[Qux]" -> "io.circe.export.Exported[io.circe.Decoder[Qux]]";
- "io.circe.export.Exported[io.circe.Decoder[Qux]]" -> "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Qux]]";
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]" -> "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]";
- "io.circe.generic.decoding.DerivedDecoder[Bar]" -> "shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.DerivedObjectEncoder[String]";
- "shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Qux')) :: shapeless.HNil,Qux :+: shapeless.CNil]" -> "shapeless.ops.coproduct.ZipWithKeys[shapeless.HNil,shapeless.CNil]";
- "shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil]" -> "shapeless.ops.coproduct.ZipWithKeys[shapeless.HNil,shapeless.CNil]";
- "io.circe.Encoder[List[String]]" -> "io.circe.export.Exported[io.circe.ObjectEncoder[List[String]]]";
- "io.circe.Encoder[Foo]" -> "io.circe.export.Exported[io.circe.ObjectEncoder[Foo]]";
- "io.circe.Decoder[Option[Double]]" -> "io.circe.Decoder[Double]";
- "io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]" -> "io.circe.Decoder[List[String]]";
- "io.circe.generic.decoding.ReprDecoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]" -> "io.circe.Decoder[List[String]]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.ReprDecoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]";
- "io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]" -> "io.circe.Decoder[Int]";
- "io.circe.Encoder[Bar]" -> "io.circe.export.Exported[io.circe.ObjectEncoder[Bar]]";
- "io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.::[String]]]" -> "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]]";
- "shapeless.LabelledGeneric.Aux[List[String],R]" -> "shapeless.Generic.Aux[List[String],V]";
- "io.circe.Decoder[Foo]" -> "io.circe.export.Exported[io.circe.Decoder[Foo]]";
- "io.circe.export.Exported[io.circe.Decoder[String]]" -> "Unit => shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]";
- "io.circe.export.Exported[io.circe.ObjectEncoder[String]]" -> "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.DerivedObjectEncoder[List[String]]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.DerivedObjectEncoder[Bar]";
- "io.circe.Decoder[Bar]" -> "io.circe.export.Exported[io.circe.Decoder[Bar]]";
- "shapeless.LabelledGeneric.Aux[Bar,R]" -> "shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out <:< (List[String] :: shapeless.HNil)";
- "shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('d')) :: shapeless.HNil,Option[Double] :: shapeless.HNil]" -> "shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]";
- "shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('tl$access$1')) :: shapeless.HNil,List[String] :: shapeless.HNil]" -> "shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]";
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]" -> "shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]";
- "io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]" -> "io.circe.Decoder[Qux]";
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]" -> "shapeless.ops.hlist.ZipWithKeys.Aux[shapeless.HNil,shapeless.HNil,R]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]";
- "io.circe.generic.encoding.DerivedObjectEncoder[Qux]" -> "shapeless.LabelledGeneric.Aux[Qux,R]";
- "io.circe.generic.decoding.DerivedDecoder[Qux]" -> "shapeless.LabelledGeneric.Aux[Qux,R]";
- "io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.::[String]]]" -> "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]]";
- "io.circe.Decoder[scala.collection.immutable.Nil.type]" -> "io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.Nil.type]]";
- "shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil]" -> "shapeless.Witness.Aux[Symbol @@ String('Nil')]";
- "io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]" -> "shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]";
- "io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]" -> "shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]";
- "io.circe.Encoder[scala.collection.immutable.::[String]]" -> "io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.::[String]]]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]";
- "io.circe.generic.decoding.DerivedDecoder[Bar]" -> "shapeless.LabelledGeneric.Aux[Bar,R]";
- "io.circe.generic.encoding.DerivedObjectEncoder[Bar]" -> "shapeless.LabelledGeneric.Aux[Bar,R]";
- "io.circe.export.Exported[io.circe.Decoder[Foo]]" -> "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]";
- "io.circe.Decoder[scala.collection.immutable.::[String]]" -> "io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.::[String]]]";
- "io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]" -> "io.circe.Encoder[Int]";
- "io.circe.export.Exported[io.circe.Decoder[String]]" -> "(=> Unit) => shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]";
- "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]" -> "shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Qux')) :: shapeless.HNil,Qux :+: shapeless.CNil]";
- "io.circe.export.Exported[io.circe.Decoder[Bar]]" -> "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Bar]]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]";
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]" -> "shapeless.Witness.Aux[Symbol @@ String('i')]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.DerivedObjectEncoder[Foo]";
- "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]" -> "shapeless.Witness.Aux[Symbol @@ String('::')]";
- "io.circe.generic.encoding.DerivedObjectEncoder[Foo]" -> "shapeless.LabelledGeneric.Aux[Foo,R]";
- "io.circe.generic.decoding.DerivedDecoder[Foo]" -> "shapeless.LabelledGeneric.Aux[Foo,R]";
- "io.circe.export.Exported[io.circe.ObjectEncoder[Qux]]" -> "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Qux]]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.ReprObjectEncoder[shapeless.HNil]";
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]" -> "shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.::[String],K]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.DerivedObjectEncoder[Qux]";
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]" -> "shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('d')) :: shapeless.HNil,Option[Double] :: shapeless.HNil]";
- "io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]" -> "io.circe.Encoder[scala.collection.immutable.::[String]]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.DerivedDecoder[List[String]]";
- "io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]" -> "io.circe.Encoder[Qux]";
- "io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]" -> "io.circe.Decoder[scala.collection.immutable.Nil.type]";
- "shapeless.LabelledGeneric.Aux[Bar,R]" -> "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]";
- "io.circe.export.Exported[io.circe.ObjectEncoder[Bar]]" -> "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Bar]]";
- "shapeless.LabelledGeneric.Aux[Qux,R]" -> "this.Out <:< (Int :: Option[Double] :: shapeless.HNil)";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]";
- "io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]" -> "io.circe.Decoder[scala.collection.immutable.::[String]]";
- "io.circe.export.Exported[io.circe.ObjectEncoder[Foo]]" -> "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.DerivedDecoder[Bar]";
- "shapeless.LabelledGeneric.Aux[Foo,R]" -> "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]";
- "io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]" -> "io.circe.Encoder[Option[Double]]";
- "shapeless.LabelledGeneric.Aux[List[String],R]" -> "this.Out <:< (scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil)";
- "shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('tl$access$1')) :: shapeless.HNil,List[String] :: shapeless.HNil]" -> "shapeless.Witness.Aux[Symbol @@ String('tl$access$1')]";
- "shapeless.LabelledGeneric.Aux[Bar,R]" -> "shapeless.DefaultSymbolicLabelling.Aux[Bar,K]";
- "io.circe.Decoder[scala.collection.immutable.::[String]]" -> "scala.collection.generic.CanBuildFrom[Nothing,String,scala.collection.immutable.::[String]]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]";
- "io.circe.export.Exported[io.circe.ObjectEncoder[List[String]]]" -> "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[List[String]]]";
- "io.circe.generic.encoding.DerivedObjectEncoder[Bar]" -> "shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]";
- "io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]" -> "io.circe.Encoder[String]";
- "io.circe.Encoder[scala.collection.immutable.::[String]]" -> "io.circe.Encoder[String]";
- "io.circe.Encoder[List[String]]" -> "io.circe.Encoder[String]";
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]" -> "shapeless.Witness.Aux[Symbol @@ String('xs')]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.ReprDecoder[shapeless.HNil]";
- "io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]" -> "io.circe.Decoder[Bar]";
- "io.circe.generic.decoding.DerivedDecoder[String]" -> "shapeless.ops.function.FnFromProduct.Aux[P => A,String]";
- "io.circe.export.Exported[io.circe.Decoder[String]]" -> "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]";
- "io.circe.Decoder[scala.collection.immutable.::[String]]" -> "io.circe.Decoder[String]";
- "io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]" -> "io.circe.Decoder[String]";
- "io.circe.Decoder[List[String]]" -> "io.circe.Decoder[String]";
- "shapeless.LabelledGeneric.Aux[List[String],R]" -> "shapeless.DefaultSymbolicLabelling.Aux[List[String],K]";
- "shapeless.LabelledGeneric.Aux[Foo,R]" -> "shapeless.DefaultSymbolicLabelling.Aux[Foo,K]";
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]" -> "shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.Nil.type,K]";
- "io.circe.export.Exported[io.circe.ObjectEncoder[String]]" -> "Unit => shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]";
- "shapeless.LabelledGeneric.Aux[Qux,R]" -> "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]";
- "io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]" -> "shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]";
- "shapeless.LabelledGeneric.Aux[String,R]" -> "shapeless.DefaultSymbolicLabelling.Aux[String,K]";
- "io.circe.Decoder[List[String]]" -> "io.circe.export.Exported[io.circe.Decoder[List[String]]]";
- "shapeless.LabelledGeneric.Aux[Foo,R]" -> "this.Out <:< (Bar :+: Qux :+: shapeless.CNil)";
- "shapeless.LabelledGeneric.Aux[List[String],R]" -> "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]";
- "io.circe.export.Exported[io.circe.Decoder[List[String]]]" -> "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[List[String]]]";
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]" -> "this.Out <:< (String :: List[String] :: shapeless.HNil)";
- "io.circe.Decoder[Option[Double]]" -> "scala.collection.generic.CanBuildFrom[Nothing,Double,Traversable[Double] with Option[Double]]";
- "shapeless.LabelledGeneric.Aux[Qux,R]" -> "shapeless.DefaultSymbolicLabelling.Aux[Qux,K]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.DerivedDecoder[Foo]";
- "shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Qux')) :: shapeless.HNil,Qux :+: shapeless.CNil]" -> "shapeless.Witness.Aux[Symbol @@ String('Qux')]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.DerivedDecoder[String]";
- "io.circe.Encoder[String]" -> "io.circe.export.Exported[io.circe.ObjectEncoder[String]]";
- "io.circe.Encoder[Option[Double]]" -> "io.circe.Encoder[Double]";
- "shapeless.LabelledGeneric.Aux[Foo,R]" -> "shapeless.Generic.Aux[Foo,V]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]";
- "io.circe.generic.encoding.DerivedObjectEncoder[List[String]]" -> "shapeless.LabelledGeneric.Aux[List[String],R]";
- "io.circe.generic.decoding.DerivedDecoder[List[String]]" -> "shapeless.LabelledGeneric.Aux[List[String],R]";
- "io.circe.generic.encoding.DerivedObjectEncoder[Qux]" -> "shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]]";
- "io.circe.generic.encoding.DerivedObjectEncoder[Foo]" -> "shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]]";
- "io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]" -> "shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]]";
- "io.circe.generic.encoding.DerivedObjectEncoder[List[String]]" -> "shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]]";
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]" -> "shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out <:< shapeless.HNil";
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]" -> "shapeless.Generic.Aux[scala.collection.immutable.Nil.type,V]";
- "io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]" -> "io.circe.Encoder[List[String]]";
- "io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]" -> "io.circe.Encoder[List[String]]";
- "shapeless.LabelledGeneric.Aux[Qux,R]" -> "shapeless.Generic.Aux[Qux,V]";
- "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]" -> "shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil]";
- "shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]" -> "shapeless.Generic.Aux[scala.collection.immutable.::[String],V]";
- "shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]" -> "shapeless.Witness.Aux[Symbol @@ String('Bar')]";
- "io.circe.Encoder[scala.collection.immutable.::[String]]" -> "scala.collection.immutable.::[String] => Iterable[String]";
- "shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]" -> "io.circe.generic.decoding.DerivedDecoder[Qux]";
- "shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('d')) :: shapeless.HNil,Option[Double] :: shapeless.HNil]" -> "shapeless.Witness.Aux[Symbol @@ String('d')]";
- "io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]" -> "io.circe.Encoder[Bar]";
- "io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]" -> "shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]";
- "io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]" -> "shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]";
- "io.circe.Encoder[scala.collection.immutable.Nil.type]" -> "io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.Nil.type]]";
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]" -> "shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('tl$access$1')) :: shapeless.HNil,List[String] :: shapeless.HNil]";
- "shapeless.LabelledGeneric.Aux[Bar,R]" -> "shapeless.Generic.Aux[Bar,V]";
- "io.circe.Encoder[Qux]" -> "io.circe.export.Exported[io.circe.ObjectEncoder[Qux]]";
- "shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]" -> "io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]";
- "io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]" -> "shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]";
- "io.circe.Decoder[String]" -> "io.circe.export.Exported[io.circe.Decoder[String]]";
- "shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]" -> "shapeless.Witness.Aux[Symbol @@ String('head')]";
-
-}
\ No newline at end of file
diff --git a/docs/demo.svg b/docs/demo.svg
deleted file mode 100644
index 0694002..0000000
--- a/docs/demo.svg
+++ /dev/null
@@ -1,1895 +0,0 @@
-
-
-
-
-
-
-implicit-searches-1510156210480
-
-
-
-io.circe.generic.decoding.DerivedDecoder[List[String]]
-
-io.circe.generic.decoding.DerivedDecoder[List[String]]
-1 times = 560ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]]
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]]
-1 times = 759ms
-
-
-
-io.circe.generic.decoding.DerivedDecoder[List[String]]->shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[List[String],R]
-
-shapeless.LabelledGeneric.Aux[List[String],R]
-1 times = 291ms
-
-
-
-io.circe.generic.decoding.DerivedDecoder[List[String]]->shapeless.LabelledGeneric.Aux[List[String],R]
-
-
-
-
-
-io.circe.Encoder[String]
-
-io.circe.Encoder[String]
-8 times = 140ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[String]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[String]]
-4 times = 102ms
-
-
-
-io.circe.Encoder[String]->io.circe.export.Exported[io.circe.ObjectEncoder[String]]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[String]
-
-io.circe.generic.encoding.DerivedObjectEncoder[String]
-4 times = 63ms
-
-
-
-shapeless.LabelledGeneric.Aux[String,R]
-
-shapeless.LabelledGeneric.Aux[String,R]
-1 times = 13ms
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[String]->shapeless.LabelledGeneric.Aux[String,R]
-
-
-
-
-
-this.Out <:< (scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil)
-
-this.Out <:< (scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil)
-1 times = 0ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]
-2 times = 40ms
-
-
-
-shapeless.Generic.Aux[Qux,V]
-
-shapeless.Generic.Aux[Qux,V]
-1 times = 8ms
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[Foo,K]
-
-shapeless.DefaultSymbolicLabelling.Aux[Foo,K]
-1 times = 9ms
-
-
-
-io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]
-
-io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]
-1 times = 92ms
-
-
-
-io.circe.Decoder[List[String]]
-
-io.circe.Decoder[List[String]]
-2 times = 577ms
-
-
-
-io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]->io.circe.Decoder[List[String]]
-
-
-
-
-
-io.circe.Decoder[String]
-
-io.circe.Decoder[String]
-4 times = 82ms
-
-
-
-io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]->io.circe.Decoder[String]
-
-
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[shapeless.HNil,shapeless.CNil]
-
-shapeless.ops.coproduct.ZipWithKeys[shapeless.HNil,shapeless.CNil]
-6 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,String,scala.collection.immutable.::[String]]
-
-scala.collection.generic.CanBuildFrom[Nothing,String,scala.collection.immutable.::[String]]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('tl$access$1')) :: shapeless.HNil,List[String] :: shapeless.HNil]
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('tl$access$1')) :: shapeless.HNil,List[String] :: shapeless.HNil]
-3 times = 19ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]
-
-shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]
-9 times = 4ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('tl$access$1')) :: shapeless.HNil,List[String] :: shapeless.HNil]->shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]
-
-
-
-
-
-shapeless.Witness.Aux[Symbol @@ String('tl$access$1')]
-
-shapeless.Witness.Aux[Symbol @@ String('tl$access$1')]
-3 times = 11ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('tl$access$1')) :: shapeless.HNil,List[String] :: shapeless.HNil]->shapeless.Witness.Aux[Symbol @@ String('tl$access$1')]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[String]]
-
-io.circe.export.Exported[io.circe.Decoder[String]]
-2 times = 53ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[String]]->shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]
-
-
-
-
-
-Unit => shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]
-
-Unit => shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]
-2 times = 0ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[String]]->Unit => shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]
-
-
-
-
-
-(=> Unit) => shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]
-
-(=> Unit) => shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]
-2 times = 2ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[String]]->(=> Unit) => shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[String]]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]]
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]]
-1 times = 219ms
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Bar]
-
-io.circe.generic.decoding.DerivedDecoder[Bar]
-1 times = 626ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-1 times = 586ms
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Bar]->shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[Bar,R]
-
-shapeless.LabelledGeneric.Aux[Bar,R]
-1 times = 43ms
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Bar]->shapeless.LabelledGeneric.Aux[Bar,R]
-
-
-
-
-
-shapeless.Witness.Aux[Symbol @@ String('head')]
-
-shapeless.Witness.Aux[Symbol @@ String('head')]
-3 times = 10ms
-
-
-
-io.circe.Decoder[Int]
-
-io.circe.Decoder[Int]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]
-1 times = 46ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]->shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]
-
-
-
-
-
-shapeless.Witness.Aux[Symbol @@ String('xs')]
-
-shapeless.Witness.Aux[Symbol @@ String('xs')]
-3 times = 11ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]->shapeless.Witness.Aux[Symbol @@ String('xs')]
-
-
-
-
-
-io.circe.Decoder[scala.collection.immutable.Nil.type]
-
-io.circe.Decoder[scala.collection.immutable.Nil.type]
-1 times = 52ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.Nil.type]]
-
-io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.Nil.type]]
-1 times = 45ms
-
-
-
-io.circe.Decoder[scala.collection.immutable.Nil.type]->io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.Nil.type]]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[List[String]]]
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[List[String]]]
-2 times = 562ms
-
-
-
-shapeless.Generic.Aux[List[String],V]
-
-shapeless.Generic.Aux[List[String],V]
-1 times = 131ms
-
-
-
-io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]
-
-io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]
-1 times = 756ms
-
-
-
-io.circe.Decoder[Qux]
-
-io.circe.Decoder[Qux]
-1 times = 97ms
-
-
-
-io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]->io.circe.Decoder[Qux]
-
-
-
-
-
-io.circe.Decoder[Bar]
-
-io.circe.Decoder[Bar]
-1 times = 637ms
-
-
-
-io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]->io.circe.Decoder[Bar]
-
-
-
-
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]
-1 times = 13ms
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Qux')) :: shapeless.HNil,Qux :+: shapeless.CNil]
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Qux')) :: shapeless.HNil,Qux :+: shapeless.CNil]
-3 times = 30ms
-
-
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]->shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Qux')) :: shapeless.HNil,Qux :+: shapeless.CNil]
-
-
-
-
-
-shapeless.Witness.Aux[Symbol @@ String('Bar')]
-
-shapeless.Witness.Aux[Symbol @@ String('Bar')]
-3 times = 12ms
-
-
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]->shapeless.Witness.Aux[Symbol @@ String('Bar')]
-
-
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.::[String],K]
-
-shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.::[String],K]
-1 times = 9ms
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[shapeless.HNil]
-
-io.circe.generic.encoding.ReprObjectEncoder[shapeless.HNil]
-2 times = 8ms
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[List[String],K]
-
-shapeless.DefaultSymbolicLabelling.Aux[List[String],K]
-1 times = 31ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out <:< shapeless.HNil
-
-shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out <:< shapeless.HNil
-3 times = 1ms
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil]
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil]
-3 times = 21ms
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil]->shapeless.ops.coproduct.ZipWithKeys[shapeless.HNil,shapeless.CNil]
-
-
-
-
-
-shapeless.Witness.Aux[Symbol @@ String('Nil')]
-
-shapeless.Witness.Aux[Symbol @@ String('Nil')]
-3 times = 10ms
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil]->shapeless.Witness.Aux[Symbol @@ String('Nil')]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[List[String]]]
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[List[String]]]
-4 times = 1136ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.Nil.type]
-
-io.circe.Encoder[scala.collection.immutable.Nil.type]
-2 times = 118ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.Nil.type]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.Nil.type]]
-2 times = 106ms
-
-
-
-io.circe.Encoder[scala.collection.immutable.Nil.type]->io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.Nil.type]]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[Bar,R]->shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('xs')) :: shapeless.HNil,List[String] :: shapeless.HNil,R]
-
-
-
-
-
-shapeless.Generic.Aux[Bar,V]
-
-shapeless.Generic.Aux[Bar,V]
-1 times = 7ms
-
-
-
-shapeless.LabelledGeneric.Aux[Bar,R]->shapeless.Generic.Aux[Bar,V]
-
-
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[Bar,K]
-
-shapeless.DefaultSymbolicLabelling.Aux[Bar,K]
-1 times = 4ms
-
-
-
-shapeless.LabelledGeneric.Aux[Bar,R]->shapeless.DefaultSymbolicLabelling.Aux[Bar,K]
-
-
-
-
-
-shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out <:< (List[String] :: shapeless.HNil)
-
-shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out <:< (List[String] :: shapeless.HNil)
-3 times = 1ms
-
-
-
-shapeless.LabelledGeneric.Aux[Bar,R]->shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out <:< (List[String] :: shapeless.HNil)
-
-
-
-
-
-this.Out <:< (String :: List[String] :: shapeless.HNil)
-
-this.Out <:< (String :: List[String] :: shapeless.HNil)
-1 times = 0ms
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[String,K]
-
-shapeless.DefaultSymbolicLabelling.Aux[String,K]
-1 times = 3ms
-
-
-
-shapeless.LabelledGeneric.Aux[String,R]->shapeless.DefaultSymbolicLabelling.Aux[String,K]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Qux]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Qux]]
-2 times = 200ms
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Qux]]
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Qux]]
-2 times = 193ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Qux]]->shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Qux]]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Bar]]
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Bar]]
-2 times = 1315ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]
-1 times = 17ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('d')) :: shapeless.HNil,Option[Double] :: shapeless.HNil]
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('d')) :: shapeless.HNil,Option[Double] :: shapeless.HNil]
-3 times = 19ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]->shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('d')) :: shapeless.HNil,Option[Double] :: shapeless.HNil]
-
-
-
-
-
-shapeless.Witness.Aux[Symbol @@ String('i')]
-
-shapeless.Witness.Aux[Symbol @@ String('i')]
-3 times = 11ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]->shapeless.Witness.Aux[Symbol @@ String('i')]
-
-
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]
-1 times = 12ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]->shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('tl$access$1')) :: shapeless.HNil,List[String] :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]->shapeless.Witness.Aux[Symbol @@ String('head')]
-
-
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]
-
-io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]
-1 times = 257ms
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]->io.circe.Encoder[scala.collection.immutable.Nil.type]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.::[String]]
-
-io.circe.Encoder[scala.collection.immutable.::[String]]
-2 times = 334ms
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]->io.circe.Encoder[scala.collection.immutable.::[String]]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Bar]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Bar]]
-2 times = 1321ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Bar]]->shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Bar]]
-
-
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]
-
-io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]
-1 times = 75ms
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]->io.circe.Encoder[String]
-
-
-
-
-
-io.circe.Encoder[List[String]]
-
-io.circe.Encoder[List[String]]
-4 times = 1161ms
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]->io.circe.Encoder[List[String]]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Foo]
-
-io.circe.generic.encoding.DerivedObjectEncoder[Foo]
-2 times = 1804ms
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Foo]->shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[Foo,R]
-
-shapeless.LabelledGeneric.Aux[Foo,R]
-1 times = 53ms
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Foo]->shapeless.LabelledGeneric.Aux[Foo,R]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[List[String]]
-
-io.circe.generic.encoding.DerivedObjectEncoder[List[String]]
-2 times = 1131ms
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[List[String]]->shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[List[String]]->shapeless.LabelledGeneric.Aux[List[String],R]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[Qux,R]
-
-shapeless.LabelledGeneric.Aux[Qux,R]
-1 times = 52ms
-
-
-
-shapeless.LabelledGeneric.Aux[Qux,R]->shapeless.Generic.Aux[Qux,V]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[Qux,R]->shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('i')) :: (Symbol @@ String('d')) :: shapeless.HNil,Int :: Option[Double] :: shapeless.HNil,R]
-
-
-
-
-
-this.Out <:< (Int :: Option[Double] :: shapeless.HNil)
-
-this.Out <:< (Int :: Option[Double] :: shapeless.HNil)
-1 times = 0ms
-
-
-
-shapeless.LabelledGeneric.Aux[Qux,R]->this.Out <:< (Int :: Option[Double] :: shapeless.HNil)
-
-
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[Qux,K]
-
-shapeless.DefaultSymbolicLabelling.Aux[Qux,K]
-1 times = 5ms
-
-
-
-shapeless.LabelledGeneric.Aux[Qux,R]->shapeless.DefaultSymbolicLabelling.Aux[Qux,K]
-
-
-
-
-
-(=> Unit) => shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]
-
-(=> Unit) => shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]
-4 times = 4ms
-
-
-
-shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.Nil.type,K]
-
-shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.Nil.type,K]
-1 times = 6ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-
-shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-1 times = 3ms
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Qux')) :: shapeless.HNil,Qux :+: shapeless.CNil]->shapeless.ops.coproduct.ZipWithKeys[shapeless.HNil,shapeless.CNil]
-
-
-
-
-
-shapeless.Witness.Aux[Symbol @@ String('Qux')]
-
-shapeless.Witness.Aux[Symbol @@ String('Qux')]
-3 times = 20ms
-
-
-
-shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Qux')) :: shapeless.HNil,Qux :+: shapeless.CNil]->shapeless.Witness.Aux[Symbol @@ String('Qux')]
-
-
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.::[String],V]
-
-shapeless.Generic.Aux[scala.collection.immutable.::[String],V]
-1 times = 11ms
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]]
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]]
-2 times = 306ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[Foo]]
-
-io.circe.export.Exported[io.circe.Decoder[Foo]]
-1 times = 980ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]
-1 times = 923ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[Foo]]->shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[Qux]]
-
-io.circe.export.Exported[io.circe.Decoder[Qux]]
-1 times = 91ms
-
-
-
-io.circe.Decoder[Qux]->io.circe.export.Exported[io.circe.Decoder[Qux]]
-
-
-
-
-
-io.circe.Encoder[Bar]
-
-io.circe.Encoder[Bar]
-2 times = 1332ms
-
-
-
-io.circe.Encoder[Bar]->io.circe.export.Exported[io.circe.ObjectEncoder[Bar]]
-
-
-
-
-
-io.circe.Encoder[Double]
-
-io.circe.Encoder[Double]
-2 times = 8ms
-
-
-
-io.circe.Encoder[Int]
-
-io.circe.Encoder[Int]
-2 times = 7ms
-
-
-
-io.circe.generic.decoding.ReprDecoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]
-
-io.circe.generic.decoding.ReprDecoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]
-1 times = 584ms
-
-
-
-io.circe.generic.decoding.ReprDecoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]->io.circe.Decoder[List[String]]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]
-1 times = 40ms
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]->shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out <:< shapeless.HNil
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]->shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.Nil.type,K]
-
-
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Nil.type,V]
-
-shapeless.Generic.Aux[scala.collection.immutable.Nil.type,V]
-1 times = 10ms
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]->shapeless.Generic.Aux[scala.collection.immutable.Nil.type,V]
-
-
-
-
-
-shapeless.ops.hlist.ZipWithKeys.Aux[shapeless.HNil,shapeless.HNil,R]
-
-shapeless.ops.hlist.ZipWithKeys.Aux[shapeless.HNil,shapeless.HNil,R]
-1 times = 1ms
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]->shapeless.ops.hlist.ZipWithKeys.Aux[shapeless.HNil,shapeless.HNil,R]
-
-
-
-
-
-shapeless.Generic.Aux[Foo,V]
-
-shapeless.Generic.Aux[Foo,V]
-1 times = 11ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Qux]]
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Qux]]
-1 times = 88ms
-
-
-
-shapeless.LabelledGeneric.Aux[Foo,R]->shapeless.DefaultSymbolicLabelling.Aux[Foo,K]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[Foo,R]->shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('Bar')) :: (Symbol @@ String('Qux')) :: shapeless.HNil,Bar :+: Qux :+: shapeless.CNil,R]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[Foo,R]->shapeless.Generic.Aux[Foo,V]
-
-
-
-
-
-this.Out <:< (Bar :+: Qux :+: shapeless.CNil)
-
-this.Out <:< (Bar :+: Qux :+: shapeless.CNil)
-1 times = 0ms
-
-
-
-shapeless.LabelledGeneric.Aux[Foo,R]->this.Out <:< (Bar :+: Qux :+: shapeless.CNil)
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]]
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]]
-2 times = 100ms
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]
-1 times = 68ms
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]->shapeless.DefaultSymbolicLabelling.Aux[scala.collection.immutable.::[String],K]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]->this.Out <:< (String :: List[String] :: shapeless.HNil)
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]->shapeless.ops.hlist.ZipWithKeys.Aux[(Symbol @@ String('head')) :: (Symbol @@ String('tl$access$1')) :: shapeless.HNil,String :: List[String] :: shapeless.HNil,R]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]->shapeless.Generic.Aux[scala.collection.immutable.::[String],V]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]
-
-io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]
-1 times = 40ms
-
-
-
-io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]->shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]->shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[List[String]]]
-
-io.circe.export.Exported[io.circe.Decoder[List[String]]]
-2 times = 564ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[List[String]]]->shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[List[String]]]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Bar]]
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Bar]]
-1 times = 627ms
-
-
-
-io.circe.Encoder[Foo]
-
-io.circe.Encoder[Foo]
-2 times = 2119ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Foo]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Foo]]
-2 times = 2072ms
-
-
-
-io.circe.Encoder[Foo]->io.circe.export.Exported[io.circe.ObjectEncoder[Foo]]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]
-
-io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]
-2 times = 301ms
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]->shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]->shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[Bar]]
-
-io.circe.export.Exported[io.circe.Decoder[Bar]]
-1 times = 630ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[Bar]]->shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Bar]]
-
-
-
-
-
-io.circe.export.Exported[io.circe.Decoder[Qux]]->shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Qux]]
-
-
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]
-
-io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]
-1 times = 678ms
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]->io.circe.Encoder[Bar]
-
-
-
-
-
-io.circe.Encoder[Qux]
-
-io.circe.Encoder[Qux]
-2 times = 212ms
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]->io.circe.Encoder[Qux]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,Double,Traversable[Double] with Option[Double]]
-
-scala.collection.generic.CanBuildFrom[Nothing,Double,Traversable[Double] with Option[Double]]
-1 times = 2ms
-
-
-
-io.circe.generic.decoding.ReprDecoder[shapeless.HNil]
-
-io.circe.generic.decoding.ReprDecoder[shapeless.HNil]
-1 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.::[String]]]
-
-io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.::[String]]]
-1 times = 160ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]]
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]]
-1 times = 157ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.::[String]]]->shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]]
-
-
-
-
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]
-1 times = 14ms
-
-
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]->shapeless.ops.coproduct.ZipWithKeys[(Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.Nil.type :+: shapeless.CNil]
-
-
-
-
-
-shapeless.Witness.Aux[Symbol @@ String('::')]
-
-shapeless.Witness.Aux[Symbol @@ String('::')]
-3 times = 13ms
-
-
-
-shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]->shapeless.Witness.Aux[Symbol @@ String('::')]
-
-
-
-
-
-WebsiteExample.foo.type => ?{def asJson: ?}
-
-WebsiteExample.foo.type => ?{def asJson: ?}
-2 times = 45ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('d')) :: shapeless.HNil,Option[Double] :: shapeless.HNil]->shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]
-
-
-
-
-
-shapeless.Witness.Aux[Symbol @@ String('d')]
-
-shapeless.Witness.Aux[Symbol @@ String('d')]
-3 times = 11ms
-
-
-
-shapeless.ops.hlist.ZipWithKeys[(Symbol @@ String('d')) :: shapeless.HNil,Option[Double] :: shapeless.HNil]->shapeless.Witness.Aux[Symbol @@ String('d')]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[String]
-
-io.circe.generic.decoding.DerivedDecoder[String]
-2 times = 35ms
-
-
-
-io.circe.generic.decoding.DerivedDecoder[String]->shapeless.LabelledGeneric.Aux[String,R]
-
-
-
-
-
-shapeless.ops.function.FnFromProduct.Aux[P => A,String]
-
-shapeless.ops.function.FnFromProduct.Aux[P => A,String]
-1 times = 2ms
-
-
-
-io.circe.generic.decoding.DerivedDecoder[String]->shapeless.ops.function.FnFromProduct.Aux[P => A,String]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Bar]
-
-io.circe.generic.encoding.DerivedObjectEncoder[Bar]
-2 times = 1310ms
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Bar]->shapeless.LabelledGeneric.Aux[Bar,R]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-2 times = 1181ms
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Bar]->shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[shapeless.labelled.FieldType[Symbol @@ String('xs'),List[String]] :: shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-
-
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]
-
-io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]
-1 times = 649ms
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]->io.circe.Encoder[List[String]]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[List[String],R]->this.Out <:< (scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil)
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[List[String],R]->shapeless.Generic.Aux[List[String],V]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[List[String],R]->shapeless.DefaultSymbolicLabelling.Aux[List[String],K]
-
-
-
-
-
-shapeless.LabelledGeneric.Aux[List[String],R]->shapeless.ops.coproduct.ZipWithKeys.Aux[(Symbol @@ String('::')) :: (Symbol @@ String('Nil')) :: shapeless.HNil,scala.collection.immutable.::[String] :+: scala.collection.immutable.Nil.type :+: shapeless.CNil,R]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[String]]->(=> Unit) => shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]
-
-
-
-
-
-Unit => shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]
-
-Unit => shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]
-4 times = 1ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[String]]->Unit => shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]
-4 times = 76ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[String]]->shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[String]]
-
-
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]
-
-io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]
-1 times = 34ms
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]->io.circe.Encoder[Int]
-
-
-
-
-
-io.circe.Encoder[Option[Double]]
-
-io.circe.Encoder[Option[Double]]
-2 times = 17ms
-
-
-
-io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]->io.circe.Encoder[Option[Double]]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Qux]
-
-io.circe.generic.decoding.DerivedDecoder[Qux]
-1 times = 87ms
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Qux]->shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Qux]->shapeless.LabelledGeneric.Aux[Qux,R]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.DerivedDecoder[List[String]]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.DerivedDecoder[Bar]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.ReprDecoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.ReprDecoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.ReprDecoder[shapeless.HNil]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.DerivedDecoder[String]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.DerivedDecoder[Qux]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Foo]
-
-io.circe.generic.decoding.DerivedDecoder[Foo]
-1 times = 811ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.DerivedDecoder[Foo]
-
-
-
-
-
-io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]
-
-io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]
-1 times = 263ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]
-
-io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]
-1 times = 153ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]
-
-
-
-
-
-io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]
-
-io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]
-1 times = 37ms
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[Foo]]->io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Foo]->shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[Foo]->shapeless.LabelledGeneric.Aux[Foo,R]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]
-2 times = 2005ms
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.DerivedObjectEncoder[String]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.ReprObjectEncoder[shapeless.HNil]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.ReprObjectEncoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.ReprObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('head')],String] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('tl$access$1')],List[String]] :: shapeless.HNil]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.DerivedObjectEncoder[Foo]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.DerivedObjectEncoder[List[String]]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.ReprObjectEncoder[Bar with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Bar')],Bar] :+: Qux with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Qux')],Qux] :+: shapeless.CNil]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.DerivedObjectEncoder[Bar]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.ReprObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('xs')],List[String]] :: shapeless.HNil]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.ReprObjectEncoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Qux]
-
-io.circe.generic.encoding.DerivedObjectEncoder[Qux]
-2 times = 188ms
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.DerivedObjectEncoder[Qux]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]
-
-io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]
-2 times = 95ms
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]->io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]
-
-
-
-
-
-io.circe.Decoder[Foo]
-
-io.circe.Decoder[Foo]
-1 times = 990ms
-
-
-
-io.circe.Decoder[Foo]->io.circe.export.Exported[io.circe.Decoder[Foo]]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.::[String]]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.::[String]]]
-2 times = 312ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.::[String]]]->shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.::[String]]]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-
-shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-2 times = 13ms
-
-
-
-io.circe.Encoder[Option[Double]]->io.circe.Encoder[Double]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Qux]->shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[this.Out]]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[Qux]->shapeless.LabelledGeneric.Aux[Qux,R]
-
-
-
-
-
-io.circe.Decoder[List[String]]->io.circe.export.Exported[io.circe.Decoder[List[String]]]
-
-
-
-
-
-io.circe.Decoder[List[String]]->io.circe.Decoder[String]
-
-
-
-
-
-scala.collection.immutable.::[String] => Iterable[String]
-
-scala.collection.immutable.::[String] => Iterable[String]
-2 times = 1ms
-
-
-
-io.circe.Decoder[Double]
-
-io.circe.Decoder[Double]
-2 times = 10ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[Foo]]->shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[Foo]]
-
-
-
-
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]]
-
-shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]]
-1 times = 42ms
-
-
-
-io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.Nil.type]]->shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.Nil.type]]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.Nil.type]]->shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]]
-
-
-
-
-
-io.circe.Decoder[String]->io.circe.export.Exported[io.circe.Decoder[String]]
-
-
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[List[String]]]
-
-io.circe.export.Exported[io.circe.ObjectEncoder[List[String]]]
-4 times = 1142ms
-
-
-
-io.circe.export.Exported[io.circe.ObjectEncoder[List[String]]]->shapeless.Lazy[io.circe.generic.encoding.DerivedObjectEncoder[List[String]]]
-
-
-
-
-
-io.circe.Decoder[scala.collection.immutable.::[String]]
-
-io.circe.Decoder[scala.collection.immutable.::[String]]
-1 times = 177ms
-
-
-
-io.circe.Decoder[scala.collection.immutable.::[String]]->scala.collection.generic.CanBuildFrom[Nothing,String,scala.collection.immutable.::[String]]
-
-
-
-
-
-io.circe.Decoder[scala.collection.immutable.::[String]]->io.circe.export.Exported[io.circe.Decoder[scala.collection.immutable.::[String]]]
-
-
-
-
-
-io.circe.Decoder[scala.collection.immutable.::[String]]->io.circe.Decoder[String]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.::[String]]->io.circe.Encoder[String]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.::[String]]->io.circe.export.Exported[io.circe.ObjectEncoder[scala.collection.immutable.::[String]]]
-
-
-
-
-
-io.circe.Encoder[scala.collection.immutable.::[String]]->scala.collection.immutable.::[String] => Iterable[String]
-
-
-
-
-
-io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]->io.circe.Decoder[scala.collection.immutable.Nil.type]
-
-
-
-
-
-io.circe.generic.decoding.ReprDecoder[scala.collection.immutable.::[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('::')],scala.collection.immutable.::[String]] :+: scala.collection.immutable.Nil.type with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('Nil')],scala.collection.immutable.Nil.type] :+: shapeless.CNil]->io.circe.Decoder[scala.collection.immutable.::[String]]
-
-
-
-
-
-io.circe.Decoder[Bar]->io.circe.export.Exported[io.circe.Decoder[Bar]]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]->shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[this.Out]]
-
-
-
-
-
-io.circe.generic.decoding.DerivedDecoder[scala.collection.immutable.::[String]]->shapeless.LabelledGeneric.Aux[scala.collection.immutable.::[String],R]
-
-
-
-
-
-io.circe.Encoder[List[String]]->io.circe.Encoder[String]
-
-
-
-
-
-io.circe.Encoder[List[String]]->io.circe.export.Exported[io.circe.ObjectEncoder[List[String]]]
-
-
-
-
-
-io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]->io.circe.Decoder[Int]
-
-
-
-
-
-io.circe.Decoder[Option[Double]]
-
-io.circe.Decoder[Option[Double]]
-1 times = 19ms
-
-
-
-io.circe.generic.decoding.ReprDecoder[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('i')],Int] :: Option[Double] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String('d')],Option[Double]] :: shapeless.HNil]->io.circe.Decoder[Option[Double]]
-
-
-
-
-
-io.circe.Decoder[Option[Double]]->scala.collection.generic.CanBuildFrom[Nothing,Double,Traversable[Double] with Option[Double]]
-
-
-
-
-
-io.circe.Decoder[Option[Double]]->io.circe.Decoder[Double]
-
-
-
-
-
-io.circe.Encoder[Qux]->io.circe.export.Exported[io.circe.ObjectEncoder[Qux]]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]->shapeless.LabelledGeneric.Aux[scala.collection.immutable.Nil.type,R]
-
-
-
-
-
-io.circe.generic.encoding.DerivedObjectEncoder[scala.collection.immutable.Nil.type]->shapeless.Lazy[io.circe.generic.encoding.ReprObjectEncoder[shapeless.ops.hlist.ZipWithKeys.hnilZipWithKeys.Out]]
-
-
-
-
-
diff --git a/docs/index.html b/docs/index.html
deleted file mode 100644
index 57b2431..0000000
--- a/docs/index.html
+++ /dev/null
@@ -1,151 +0,0 @@
-
-
-
-
-Scalac-profiling: profile Scala compile times
-
-
-
-
-Scalac-profiling
-
-scalac-profiling
is a tool to profile the compilation of your Scala projects and identify bottlenecks with implicit search and macro expansion.
-Motivation
-Scala codebases grow over time, and so do compile times. Some of them are inherent to the size of your application, but some of them are not, and they they can affect both your team’s productivity.
-How to battle slow compile times? The first and most important step is to measure them.
-A common cause of slow compile times is an abuse of macros or misuse of implicits. scalac-profiling
helps you chase down compilations bottlenecks, with a focus on macro expansions and implicit search.
-In this guide, we go on a journey to analyze slow compile times in several real-world Scala codebases. In every case study, I walk you through an array of techniques you can apply to speed up the compilation of your projects.
-At the end of this document, you will be able to replicate some of my experiments in your own projects and find solutions to increase the productivity of your team.
-There are many other ways of scaling up big codebases, but in this document we only look into ways to alleviate the price of expensive features in the Scala language.
-Note All the numbers in this guide have not been obtained directly from the build tool but from a JMH benchmark battery. This benchmarking facility enables us to get stabler results and does not take into account potential regressions that your build tool could introduce. Study those separately.
-
-
-Scalatest is the most popular testing framework in the Scala community. It is popular by supporting several idioms
-In this case study, we’re going to compile the test suite of Scalatest. This test suite is 300.000 LOC and makes a heavy use of implicits and Scalatest macros (for example, to get the position of a certain assertion, or to make typesafe comparisons between numeric values).
-This test suite is an extreme case of how your project’s test suite would look like, but it’s a good example to test our skills identifying bottlenecks in implicit search and macro expansions.
-Let’s first learn more about the project we’re about to profile with cloc .
-
-Scalatest’s test suite has about 300.000 LOC of pure Scala code.
-These lines do not take into account generated code; the code that gets compiled by scalac is much bigger after code generation and macros are expanded. But, how big?
-Before we proceed
-Taking into consideration expanded code
-When analyzing compile times, we must be aware of the “hidden” cost that we pay to compile the expanded and generated code. At first glance,
-Sometimes the compiler may spend more time compiling that code may be suboptimal. For example, if the macro generates high-level, poorly optimized code
-Compilation without any changes
-
-
-
-
-
-
-asdf
-asdf
-
-
-
-Compilation without the position macro
-Compilation without the position macro and caching implicits
-
-
-Profiling implicit search
-Profiling implicit search is useful to answer the following questions:
-
-What implicit searches happen in my project?
-How do all implicit searches interact with each other?
-Are implicit searches the main bottleneck of my compile times?
-
-Incidentally, implicit searches also help you to assess how expensive the use of a macro library is, specifically if the macro library relies heavily on implicit search. Libraries that provide generic typeclass derivation are an example.
-Graphs
-scalac-profiling
generates several graph representations of all the implicit searches happened during compilation. The supported graph representations are graphviz (aka dot) and flamegraph .
-The compiler plugin does not generate the graphs for you; instead, it persists the graph data in a format that allows you to generate the graphs yourself without touching or transforming the data.
-These graphs are present under the profiledb META-INF directory , located in your classes directory. For example, a flamegraph data file can be located at target/scala-2.12/classes/META-INF/profiledb/graphs/$name.flamegraph
.
-Flamegraphs
-If this is the first time you hear about flamegraphs, have a look at the official website and the ACM article .
-Flamegraphs are graphs that allow you to see the stack of all the implicit search calls that have happened during a concrete compilation. They are intuitive to inspect and to browse, and stand out because:
-
-They allow you to selectively choose what things to profile. Click on every stack to zoom in, and reset by clicking “Reset zoom” on the bottom left.
-They allow you to search via regexes and those matching stacks are highlighted. Check the search button on the top right.
-
-Flamegraph generation
-In order to generate flamegraphs, clone brendangregg/FlameGraph GitHub repository. The repository provides the tools to generate the svg files that you will later on use.
-Next, compile your project with scalac-profiling
as a compiler plugin, and statistics enabled (-Ystatistics
). scalac-profiling
will generate the flamegraph data in the profiledb graphs
directory explained in the Graphs section .
-Run the following command in the Flamegraph project’s root directory:
-./flamegraph.pl --countname="ms" \
- $PATH_TO_FLAMEGRAPH_FILE > graph.svg
-And it will generate something like this .
-Examples
-
-Dot graphs
-The process to generate dot graphs is similar to Flamegraph. Dot graph files are files that declare a graph and tell Graphviz how it should be rendered. They can then be visualized in several ways: a png
file, a pdf, a svg, et cetera.
-Dot graph generation
-Install graphviz .
-Read the previous Flamegraph generation first.
-When you compile your project with scalac-profiling
, the plugin creates dot files along with the flamegraph data files. You can use these dot files to generate a graph with the following command:
-dot -Tsvg -o graph.svg $PATH_TO_DOT_FILE
-After that, you can open the resulting svg with your favorite web browser. For example, by running firefox graph.svg
.
-However, you will quickly realize that exploring larger graphs is difficult with a normal svg. I recommend using jquery.graphviz.svg to have a nicer browsing experience: zoom in and out, reset zoom and the killer feature: only highlight the edges for a given node (by clicking on the node).
-Reading the generated graphs
-A graph is a set of nodes and edges. A node represent an implicit search for a given type. Every node tells you how many implicit searches have been triggered in total, and how much time they took in total. An edge represents the dependency between an implicit search and another one.
-
- Note that every node can be depended upon by others and be the start of the implicit search in the program. That means that often the amount of times a node has been searched for will not be equal to the sum of the nodes that depend on it.
-
-Dot graph examples
-
-Appendix
-A: Notes on lines of code in Scala
-Scala’s LOC do not have a direct translation to other programming languages because of the conciseness of Scala syntax and its metaprogramming facilities. A one-to-one comparison to other programming languages is most likely going to be misleading.
-The best way to compare compiler speed across different programming languages is to compare end applications or libraries with feature parity and implemented in the same programming paradigm.
-
-Using macros is easy, and it won’t be the first time developers use them without noticing. It is important that, if you want to reduce compile times, you carefully have a look at the scalac profiles and your dependency graph.
-The cost of macros depend on how important the use case they solve is to you. Consider this when optimizing your compile times.
-Sometimes, the cost of macros can be reduced by optimizing the implementation. But the first step is to know, in advance, that a macro is expensive. Thus, bring the numbers up with the macro implementors so that they think of ways to make macros more lightweight.
diff --git a/docs/index.md b/docs/index.md
deleted file mode 100644
index b4c9edb..0000000
--- a/docs/index.md
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-Scalac-profiling: profile Scala compile times
-
-
-
-
-# Scalac-profiling
-
-#### Jorge Vicente Cantero ([jvican][]), [Scala Center][]
-
-`scalac-profiling` is a tool to profile the compilation of your Scala
-projects and identify bottlenecks with implicit search and macro expansion.
-
-## Motivation
-
-Scala codebases grow over time, and so do compile times. Some of them are
-inherent to the size of your application, but some of them are not, and they
-they can affect both your team's productivity.
-
-How to battle slow compile times? The first and most important step is to
-measure them.
-
-A common cause of slow compile times is an abuse of macros or misuse of
-implicits. `scalac-profiling` helps you chase down compilations bottlenecks,
-with a focus on macro expansions and implicit search.
-
-In this guide, we go on a journey to analyze slow compile times in several
-real-world Scala codebases. In every case study, I walk you through an array
-of techniques you can apply to speed up the compilation of your projects.
-
-At the end of this document, you will be able to replicate some of my
-experiments in your own projects and find solutions to increase the
-productivity of your team.
-
-There are many other ways of scaling up _big_ codebases, but in this document
-we only look into ways to alleviate the price of expensive features in the
-Scala language.
-
-**Note**
-
-All the numbers in this guide have not been obtained directly from the
-build tool but from a JMH benchmark battery. This benchmarking facility
-enables us to get stabler results and does not take into account potential
-regressions that your build tool could introduce. Study those separately.
-
-
-## Case study: [scalatest/scalatest](https://github.com/scalatest/scalatest)
-
-Scalatest is the most popular testing framework in the Scala community. It is
-known by its extensibility, easiness of use and great error reporting
-facilities.
-
-In this case study, we're going to profile the compilation of Scalatest's
-test suite. This test suite is **300.000 LOC** and makes a heavy use of
-implicits and Scalatest macros (for example, to get the position of a certain
-assertion, or to make typesafe comparisons between numeric values).
-
-This test suite is an _extreme_ case of how your project's test suite would
-look like, but it's a good example to test our skills identifying
-bottlenecks in implicit search and macro expansions.
-
-Let's first learn more about the project we're about to profile with [cloc][].
-
-```sh
-jvican in /data/rw/code/scala/scalatest [10:51:09]
-> $ loc scalatest-test [±3.1.x-stats]
---------------------------------------------------------------------------------
- Language Files Lines Blank Comment Code
---------------------------------------------------------------------------------
- Scala 775 380316 50629 29014 300673
- Java 13 332 38 195 99
- XML 1 8 0 0 8
- Plain Text 1 9 5 0 4
---------------------------------------------------------------------------------
- Total 790 380665 50672 29209 300784
---------------------------------------------------------------------------------
-```
-
-Scalatest's test suite has about 300.000 LOC of pure Scala code.
-
-These lines do not take into account generated code;
-the code that gets compiled by scalac is _much bigger_ after code
-generation and macros are expanded. But, how big?
-
-Before we proceed
-
-#### Taking into consideration expanded code
-
-When analyzing compile times, we must be aware of the _"hidden"_ cost that
-we pay to compile the expanded and generated code. At first glance,
-
-Sometimes the compiler may spend more time compiling that code may be suboptimal. For example, if the macro generates
-high-level, poorly optimized code
-
-### Compilation without any changes
-
-| Time in typer | Total compilation time |
-| ------------- | ---------------------- |
-| asdf | asdf |
-
-### Compilation without the position macro
-
-### Compilation without the position macro and caching implicits
-
-## Case study: [circe/circe](https://github.com/circe/circe)
-
-## Case study: [guardian/frontend](https://github.com/guardian/frontend)
-
-## Profiling implicit search
-
-Profiling implicit search is useful to answer the following questions:
-
-1. What implicit searches happen in my project?
-1. How do all implicit searches interact with each other?
-1. Are implicit searches the main bottleneck of my compile times?
-
-Incidentally, implicit searches also help you to assess how expensive the use of
-a macro library is, specifically if the macro library relies heavily on implicit
-search. Libraries that provide generic typeclass derivation are an example.
-
-### Graphs
-
-`scalac-profiling` generates several graph representations of all the implicit
-searches happened during compilation. The supported graph representations are
-[graphviz][] (aka dot) and [flamegraph][].
-
-The compiler plugin does not generate the graphs for you; instead, it persists
-the graph data in a format that allows you to generate the graphs yourself
-without touching or transforming the data.
-
-These graphs are present under the _profiledb META-INF directory_, located in
-your classes directory. For example, a flamegraph data file can be located at
-`target/scala-2.12/classes/META-INF/profiledb/graphs/$name.flamegraph`.
-
-### Flamegraphs
-
-If this is the first time you hear about flamegraphs, have a look at the
-[official website][flamegraph] and the [ACM article][flamegraph-acm].
-
-Flamegraphs are graphs that allow you to see the stack of all the implicit
-search calls that have happened during a concrete compilation. They are
-intuitive to inspect and to browse, and stand out because:
-
-* They allow you to selectively choose what things to profile. Click on every
- stack to zoom in, and reset by clicking "Reset zoom" on the bottom left.
-* They allow you to search via regexes and those matching stacks are
- highlighted. Check the search button on the top right.
-
-#### Flamegraph generation
-
-In order to generate flamegraphs, clone [brendangregg/FlameGraph][flamegraph]
-GitHub repository. The repository provides the tools to generate the svg files
-that you will later on use.
-
-Next, compile your project with `scalac-profiling` as a compiler plugin, and
-statistics enabled (`-Ystatistics`). `scalac-profiling` will generate the
-flamegraph data in the profiledb `graphs` directory explained in [the Graphs
-section](#graphs).
-
-Run the following command in the Flamegraph project's root directory:
-
- ./flamegraph.pl --countname="ms" \
- $PATH_TO_FLAMEGRAPH_FILE > graph.svg
-
-And it will generate something like [this](circe-integration-flamegraph.svg).
-
-#### Examples
-
-* [circe website example flamegraph](circe-integration-flamegraph.svg)
-* [circe test suite flamegraph](circe-test-suite-flamegraph.svg)
-* [scalac flamegraph](scalac-flamegraph.svg)
-* [monocle example flamegraph](monocle-example-flamegraph.svg)
-* [monocle test suite flamegraph](monocle-test-suite-flamegraph.svg)
-* [scalatest core flamegraph](scalatest-core-flamegraph.svg)
-* [scalatest tests flamegraph](scalatest-tests-flamegraph.svg)
-
-### Dot graphs
-
-The process to generate dot graphs is similar to Flamegraph. Dot graph files are
-files that declare a graph and tell Graphviz how it should be rendered. They
-can then be visualized in several ways: a `png` file, a pdf, a svg, et cetera.
-
-#### Dot graph generation
-
-Install [graphviz][].
-
-Read [the previous Flamegraph generation](#flamegraph-generation) first.
-
-When you compile your project with `scalac-profiling`, the plugin creates dot
-files along with the flamegraph data files. You can use these dot files to
-generate a graph with the following command:
-
- dot -Tsvg -o graph.svg $PATH_TO_DOT_FILE
-
-After that, you can open the resulting svg with your favorite web browser. For
-example, by running `firefox graph.svg`.
-
-However, you will quickly realize that exploring larger graphs is difficult with
-a normal svg. I recommend using [jquery.graphviz.svg][] to have a nicer browsing
-experience: zoom in and out, reset zoom and the killer feature: only highlight
-the edges for a given node (by clicking on the node).
-
-#### Reading the generated graphs
-
-A graph is a set of nodes and edges. A node represent an implicit search for a
-given type. Every node tells you how many implicit searches have been triggered
-in total, and how much time they took in total. An edge represents the
-dependency between an implicit search and another one.
-
->
-Note that every node can be depended upon by others and be the start of the
-implicit search in the program. That means that often the amount of times a node
-has been searched for will not be equal to the sum of the nodes that depend on
-it.
-
-#### Dot graph examples
-
-* [circe website example dot graph](circe-integration.html)
-* [circe test suite dot graph](circe-test-suite.html)
-* [scalac dot graph](scalac.html)
-* [monocle example dot graph](monocle-example.html)
-* [monocle test suite dot graph](monocle-test-suite.html)
-* [scalatest dot graph](scalatest-core.html)
-
-# Appendix
-
-## A: Notes on lines of code in Scala
-
-Scala's LOC do not have a direct translation to other programming languages
-because of the conciseness of Scala syntax and its metaprogramming
-facilities. A one-to-one comparison to other programming languages is most
-likely going to be misleading.
-
-The best way to _compare compiler speed_ across different programming
-languages is to compare end applications or libraries with feature parity and
-implemented in the same programming paradigm.
-
-## B: Metaprogramming facilities in Scala
-
-Using macros is easy, and it won't be the first time developers use them
-without noticing. It is important that, if you want to reduce compile times,
-you carefully have a look at the scalac profiles and your dependency graph.
-
-The cost of macros depend on how important the use case they solve is to you.
-Consider this when optimizing your compile times.
-
-Sometimes, the cost of macros can be reduced by optimizing the implementation.
-But the first step is to know, in advance, that a macro is expensive. Thus,
-bring the numbers up with the macro implementors so that they think of ways to
-make macros more lightweight.
-
-[graphviz]: http://www.graphviz.org/doc/info/command.html
-[flamegraph]: https://github.com/brendangregg/FlameGraph
-[flamegraph-acm]: http://queue.acm.org/detail.cfm?id=2927301
-[jvican]: https://github.com/jvican
-[scala center]: https://scala.epfl.ch
-[jquery.graphviz.svg]: https://github.com/jvican/jquery.graphviz.svg
-[cloc]: https://github.com/cloc/cloc
diff --git a/docs/js/jquery.graphviz.svg.js b/docs/js/jquery.graphviz.svg.js
deleted file mode 100644
index bc800a3..0000000
--- a/docs/js/jquery.graphviz.svg.js
+++ /dev/null
@@ -1,534 +0,0 @@
-/*
- * Copyright (c) 2015 Mountainstorm
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-
- +function ($) {
- 'use strict'
-
- // Cross Browser starts/endsWith support
- // =====================================
- String.prototype.startsWith = function(prefix) {
- return this.indexOf(prefix) == 0;
- };
-
- String.prototype.endsWith = function(suffix) {
- return this.indexOf(suffix, this.length - suffix.length) !== -1;
- };
-
- // GRAPHVIZSVG PUBLIC CLASS DEFINITION
- // ===================================
-
- var GraphvizSvg = function (element, options) {
- this.type = null
- this.options = null
- this.enabled = null
- this.$element = null
-
- this.init('graphviz.svg', element, options)
- }
-
- GraphvizSvg.VERSION = '1.0.1'
-
- GraphvizSvg.GVPT_2_PX = 32.5 // used to ease removal of extra space
-
- GraphvizSvg.DEFAULTS = {
- url: null,
- svg: null,
- shrink: '0.125pt',
- tooltips: {
- init: function ($graph) {
- var $a = $(this)
- $a.tooltip({
- container: $graph,
- placement: 'auto left',
- animation: false,
- viewport: null
- }).on('hide.bs.tooltip', function() {
- // keep them visible even if you acidentally mouse over
- if ($a.attr('data-tooltip-keepvisible')) {
- return false
- }
- })
- },
- show: function () {
- var $a = $(this)
- $a.attr('data-tooltip-keepvisible', true)
- $a.tooltip('show')
- },
- hide: function () {
- var $a = $(this)
- $a.removeAttr('data-tooltip-keepvisible')
- $a.tooltip('hide')
- },
- update: function () {
- var $this = $(this)
- if ($this.attr('data-tooltip-keepvisible')) {
- $this.tooltip('show')
- return
- }
- }
- },
- zoom: true,
- highlight: {
- selected: function (col, bg) {
- return col
- },
- unselected: function (col, bg) {
- return jQuery.Color(col).transition(bg, 0.9)
- }
- },
- ready: null
- }
-
- GraphvizSvg.prototype.init = function (type, element, options) {
- this.enabled = true
- this.type = type
- this.$element = $(element)
- this.options = this.getOptions(options)
-
- if (options.url) {
- var that = this
- $.get(options.url, null, function(data) {
- var svg = $("svg", data)
- that.$element.html(document.adoptNode(svg[0]))
- that.setup()
- }, "xml")
- } else {
- if (options.svg) {
- this.$element.html(options.svg)
- }
- this.setup()
- }
- }
-
- GraphvizSvg.prototype.getDefaults = function () {
- return GraphvizSvg.DEFAULTS
- }
-
- GraphvizSvg.prototype.getOptions = function (options) {
- options = $.extend({}, this.getDefaults(), this.$element.data(), options)
-
- if (options.shrink) {
- if (typeof options.shrink != 'object') {
- options.shrink = {
- x: options.shrink,
- y: options.shrink
- }
- }
- options.shrink.x = this.convertToPx(options.shrink.x)
- options.shrink.y = this.convertToPx(options.shrink.y)
- }
- return options
- }
-
- GraphvizSvg.prototype.setup = function () {
- var options = this.options
-
- // save key elements in the graph for easy access
- var $svg = $(this.$element.children('svg'))
- var $graph = $svg.children('g:first')
- this.$svg = $svg
- this.$graph = $graph
- this.$background = $graph.children('polygon:first') // might not exist
- this.$nodes = $graph.children('.node')
- this.$edges = $graph.children('.edge')
- this._nodesByName = {}
- this._edgesByName = {}
-
- // add top level class and copy background color to element
- this.$element.addClass('graphviz-svg')
- if (this.$background.length) {
- this.$element.css('background', this.$background.attr('fill'))
- }
-
- // setup all the nodes and edges
- var that = this
- this.$nodes.each(function () { that.setupNodesEdges($(this), true) })
- this.$edges.each(function () { that.setupNodesEdges($(this), false) })
-
- // remove the graph title element
- var $title = this.$graph.children('title')
- this.$graph.attr('data-name', $title.text())
- $title.remove()
-
- if (options.zoom) {
- this.setupZoom()
- }
-
- // tell people we're done
- if (options.ready) {
- options.ready.call(this)
- }
- }
-
- GraphvizSvg.prototype.setupNodesEdges = function ($el, isNode) {
- var that = this
- var options = this.options
-
- // save the colors of the paths, ellipses and polygons
- $el.find('polygon, ellipse, path').each(function () {
- var $this = $(this)
- // save original colors
- $this.data('graphviz.svg.color', {
- fill: $this.attr('fill'),
- stroke: $this.attr('stroke')
-
- })
-
- // shrink it if it's a node
- if (isNode && options.shrink) {
- that.scaleNode($this)
- }
- })
-
- // save the node name and check if theres a comment above; save it
- var $title = $el.children('title')
- if ($title[0]) {
- // remove any compass points:
- var title = $title.text().replace(/:[snew][ew]?/g,'')
- $el.attr('data-name', title)
- $title.remove()
- if (isNode) {
- this._nodesByName[title] = $el[0]
- } else {
- this._edgesByName[title] = $el[0]
- }
- // without a title we can't tell if its a user comment or not
- var previousSibling = $el[0].previousSibling
- while (previousSibling && previousSibling.nodeType != 8) {
- previousSibling = previousSibling.previousSibling
- }
- if (previousSibling != null && previousSibling.nodeType == 8) {
- var htmlDecode = function (input) {
- var e = document.createElement('div')
- e.innerHTML = input
- return e.childNodes[0].nodeValue
- }
- var value = htmlDecode(previousSibling.nodeValue.trim())
- if (value != title) {
- // user added comment
- $el.attr('data-comment', value)
- }
- }
- }
-
- // remove namespace from a[xlink:title]
- $el.children('a').filter(function () { return $(this).attr('xlink:title') }).each(function () {
- var $a = $(this)
- $a.attr('title', $a.attr('xlink:title'))
- $a.removeAttr('xlink:title')
- if (options.tooltips) {
- options.tooltips.init.call(this, that.$element)
- }
- })
- }
-
- GraphvizSvg.prototype.setupZoom = function() {
- var that = this
- var $element = this.$element
- var $svg = this.$svg
- this.zoom = {width: $svg.attr('width'), height: $svg.attr('height'), percentage: null }
- this.scaleView(100.0)
- $element.mousewheel(function (evt) {
- if (evt.shiftKey) {
- var percentage = that.zoom.percentage
- percentage -= evt.deltaY * evt.deltaFactor
- if (percentage < 100.0) {
- percentage = 100.0
- }
- // get pointer offset in view
- // ratio offset within svg
- var dx = evt.pageX - $svg.offset().left
- var dy = evt.pageY - $svg.offset().top
- var rx = dx / $svg.width()
- var ry = dy / $svg.height()
-
- // offset within frame ($element)
- var px = evt.pageX - $element.offset().left
- var py = evt.pageY - $element.offset().top
-
- that.scaleView(percentage)
- // scroll so pointer is still in same place
- $element.scrollLeft((rx * $svg.width()) + 0.5 - px)
- $element.scrollTop((ry * $svg.height()) + 0.5 - py)
- return false // stop propogation
- }
- })
- }
-
- GraphvizSvg.prototype.scaleView = function(percentage) {
- var that = this
- var $svg = this.$svg
- $svg.attr('width', percentage + '%')
- $svg.attr('height', percentage + '%')
- this.zoom.percentage = percentage
- // now callback to update tooltip position
- var $everything = this.$nodes.add(this.$edges)
- $everything.children('a[title]').each(function () {
- that.options.tooltips.update.call(this)
- })
- }
-
- GraphvizSvg.prototype.scaleNode = function($node) {
- var dx = this.options.shrink.x
- var dy = this.options.shrink.y
- var tagName = $node.prop('tagName')
- if (tagName == 'ellipse') {
- $node.attr('rx', parseFloat($node.attr('rx')) - dx)
- $node.attr('ry', parseFloat($node.attr('ry')) - dy)
- } else if (tagName == 'polygon') {
- // this is more complex - we need to scale it manually
- var bbox = $node[0].getBBox()
- var cx = bbox.x + (bbox.width / 2)
- var cy = bbox.y + (bbox.height / 2)
- var pts = $node.attr('points').split(' ')
- var points = '' // new value
- for (var i in pts) {
- var xy = pts[i].split(',')
- var ox = parseFloat(xy[0])
- var oy = parseFloat(xy[1])
- points += (((cx - ox) / (bbox.width / 2) * dx) + ox) +
- ',' +
- (((cy - oy) / (bbox.height / 2) * dy) + oy) +
- ' '
- }
- $node.attr('points', points)
- }
- }
-
- GraphvizSvg.prototype.convertToPx = function (val) {
- var retval = val
- if (typeof val == 'string') {
- var end = val.length
- var factor = 1.0
- if (val.endsWith('px')) {
- end -= 2
- } else if (val.endsWith('pt')) {
- end -= 2
- factor = GraphvizSvg.GVPT_2_PX
- }
- retval = parseFloat(val.substring(0, end)) * factor
- }
- return retval
- }
-
- GraphvizSvg.prototype.findEdge = function (nodeName, testEdge, $retval) {
- var retval = []
- for (var name in this._edgesByName) {
- var match = testEdge(nodeName, name)
- if (match) {
- if ($retval) {
- $retval.push(this._edgesByName[name])
- }
- retval.push(match)
- }
- }
- return retval
- }
-
- GraphvizSvg.prototype.findLinked = function (node, includeEdges, testEdge, $retval) {
- var that = this
- var $node = $(node)
- var $edges = null
- if (includeEdges) {
- $edges = $retval
- }
- var names = this.findEdge($node.attr('data-name'), testEdge, $edges)
- for (var i in names) {
- var n = this._nodesByName[names[i]]
- if (!$retval.is(n)) {
- $retval.push(n)
- that.findLinked(n, includeEdges, testEdge, $retval)
- }
- }
- }
-
- GraphvizSvg.prototype.colorElement = function ($el, getColor) {
- var bg = this.$element.css('background')
- $el.find('polygon, ellipse, path').each(function() {
- var $this = $(this)
- var color = $this.data('graphviz.svg.color')
- if (color.fill && $this.prop('tagName') != 'path') {
- $this.attr('fill', getColor(color.fill, bg)) // don't set fill if it's a path
- }
- if (color.stroke) {
- $this.attr('stroke', getColor(color.stroke, bg))
- }
- })
- }
-
- GraphvizSvg.prototype.restoreElement = function ($el) {
- $el.find('polygon, ellipse, path').each(function() {
- var $this = $(this)
- var color = $this.data('graphviz.svg.color')
- if (color.fill) {
- $this.attr('fill', color.fill) // don't set fill if it's a path
- }
- if (color.stroke) {
- $this.attr('stroke', color.stroke)
- }
- })
- }
-
-
- // methods users can actually call
- GraphvizSvg.prototype.nodes = function () {
- return this.$nodes
- }
-
- GraphvizSvg.prototype.edges = function () {
- return this.$edges
- }
-
- GraphvizSvg.prototype.nodesByName = function () {
- return this._nodesByName
- }
-
- GraphvizSvg.prototype.edgesByName = function () {
- return this._edgesByName
- }
-
- GraphvizSvg.prototype.linkedTo = function (node, includeEdges) {
- var $retval = $()
- this.findLinked(node, includeEdges, function (nodeName, edgeName) {
- var other = null;
- var match = '->' + nodeName
- if (edgeName.endsWith(match)) {
- other = edgeName.substring(0, edgeName.length - match.length);
- }
- return other;
- }, $retval)
- return $retval
- }
-
- GraphvizSvg.prototype.linkedFrom = function (node, includeEdges) {
- var $retval = $()
- this.findLinked(node, includeEdges, function (nodeName, edgeName) {
- var other = null;
- var match = nodeName + '->'
- if (edgeName.startsWith(match)) {
- other = edgeName.substring(match.length);
- }
- return other;
- }, $retval)
- return $retval
- }
-
- GraphvizSvg.prototype.linked = function (node, includeEdges) {
- var $retval = $()
- this.findLinked(node, includeEdges, function (nodeName, edgeName) {
- return '^' + name + '--(.*)$'
- }, $retval)
- this.findLinked(node, includeEdges, function (nodeName, edgeName) {
- return '^(.*)--' + name + '$'
- }, $retval)
- return $retval
- }
-
- GraphvizSvg.prototype.tooltip = function ($elements, show) {
- var that = this
- var options = this.options
- $elements.each(function () {
- $(this).children('a[title]').each(function () {
- if (show) {
- options.tooltips.show.call(this)
- } else {
- options.tooltips.hide.call(this)
- }
- })
- })
- }
-
- GraphvizSvg.prototype.bringToFront = function ($elements) {
- $elements.detach().appendTo(this.$graph)
- }
-
- GraphvizSvg.prototype.sendToBack = function ($elements) {
- if (this.$background.length) {
- $element.insertAfter(this.$background)
- } else {
- $elements.detach().prependTo(this.$graph)
- }
- }
-
- GraphvizSvg.prototype.highlight = function ($nodesEdges, tooltips) {
- var that = this
- var options = this.options
- var $everything = this.$nodes.add(this.$edges)
- if ($nodesEdges && $nodesEdges.length > 0) {
- // create set of all other elements and dim them
- $everything.not($nodesEdges).each(function () {
- that.colorElement($(this), options.highlight.unselected)
- that.tooltip($(this))
- })
- $nodesEdges.each(function () {
- that.colorElement($(this), options.highlight.selected)
- })
- if (tooltips) {
- this.tooltip($nodesEdges, true)
- }
- } else {
- $everything.each(function () {
- that.restoreElement($(this))
- })
- this.tooltip($everything)
- }
- }
-
- GraphvizSvg.prototype.destroy = function () {
- var that = this
- this.hide(function () {
- that.$element.off('.' + that.type).removeData(that.type)
- })
- }
-
-
- // GRAPHVIZSVG PLUGIN DEFINITION
- // =============================
-
- function Plugin(option) {
- return this.each(function () {
- var $this = $(this)
- var data = $this.data('graphviz.svg')
- var options = typeof option == 'object' && option
-
- if (!data && /destroy/.test(option)) return
- if (!data) $this.data('graphviz.svg', (data = new GraphvizSvg(this, options)))
- if (typeof option == 'string') data[option]()
- })
- }
-
- var old = $.fn.graphviz
-
- $.fn.graphviz = Plugin
- $.fn.graphviz.Constructor = GraphvizSvg
-
-
- // GRAPHVIZ NO CONFLICT
- // ====================
-
- $.fn.graphviz.noConflict = function () {
- $.fn.graphviz = old
- return this
- }
-
-}(jQuery)
diff --git a/docs/monocle-example-flamegraph.svg b/docs/monocle-example-flamegraph.svg
deleted file mode 100644
index 71b706b..0000000
--- a/docs/monocle-example-flamegraph.svg
+++ /dev/null
@@ -1,3974 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Flame Graph
-
-Reset Zoom
-Search
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: String :: Int :: shapeless.HNil,shapeless.HNil,Out] (1 ms, 0.01%)
-
-
-
-String ==>> Int => ?{def applyLens: ?} (17 ms, 0.22%)
-
-
-
-scalaz.Order[String] (4 ms, 0.05%)
-
-
-
-org.scalactic.source.Position (20 ms, 0.25%)
-
-
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Float] (11 ms, 0.14%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA] (144 ms, 1.83%)
-e..
-
-
-scalaz.Equal[Boolean] (47 ms, 0.60%)
-
-
-
-shapeless.ops.hlist.Last[String :: Boolean :: shapeless.HNil] (11 ms, 0.14%)
-
-
-
-monocle.function.Each[List[Int] :: shapeless.HNil,Int] (14 ms, 0.18%)
-
-
-
-shapeless.Generic.Aux[List[JsonExample.this.Json],SGen] (308 ms, 3.91%)
-shap..
-
-
-shapeless.ops.hlist.Last[Boolean :: shapeless.HNil] (9 ms, 0.11%)
-
-
-
-String ==>> Int => ?{def applyTraversal: ?} (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Tupler[Boolean :: Char :: Int :: shapeless.HNil] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-scala.languageFeature.higherKinds (14 ms, 0.18%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-Numeric[Int] (4 ms, 0.05%)
-
-
-
-scalaz.Equal[Int] (3 ms, 0.04%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R] (12 ms, 0.15%)
-
-
-
-shapeless.ops.hlist.Tupler.Aux[Int :: String :: Boolean :: shapeless.HNil,R] (20 ms, 0.25%)
-
-
-
-x$1.type => ?{def reverse: ?} (1 ms, 0.01%)
-
-
-
-monocle.function.Reverse[Int :: String :: Boolean :: shapeless.HNil,A] (31 ms, 0.39%)
-
-
-
-scalaz.IList[Int] => ?{def applyOptional: ?} (3 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[A] (42 ms, 0.53%)
-
-
-
-org.scalacheck.Arbitrary[A] (69 ms, 0.88%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,Double :: String :: Long :: Boolean :: shapeless.HNil,Out] (4 ms, 0.05%)
-
-
-
-monocle.LensPolyExample.Semi.type => ?{def q_=: ?} (1 ms, 0.01%)
-
-
-
-Boolean :: String :: Int :: shapeless.HNil => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-scalaz.Equal[Int] (6 ms, 0.08%)
-
-
-
-String("age") => ?{def ->: ?} (24 ms, 0.30%)
-
-
-
-scalaz.Equal[Map[Int,String]] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Boolean :: Char :: Int :: shapeless.HNil,String :: Long :: shapeless.HNil,Out] (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[(Int, Boolean)] (5 ms, 0.06%)
-
-
-
-((Int, Int, Int)) => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-StateExample.this._oldAge.type => ?{def extracts: ?} (2 ms, 0.03%)
-
-
-
-scalaz.Equal[Option[String]] (1 ms, 0.01%)
-
-
-
-Boolean => ?{def shouldEqual: ?} (347 ms, 4.41%)
-Boole..
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-scalaz.Order[String] (3 ms, 0.04%)
-
-
-
-eu.timepit.refined.api.RefType[F] (3 ms, 0.04%)
-
-
-
-org.scalactic.Equality[this.Out] (18 ms, 0.23%)
-
-
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Boolean] (3 ms, 0.04%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (47 ms, 0.60%)
-
-
-
-List[Int] => ?{def applyPrism: ?} (2 ms, 0.03%)
-
-
-
-scalaz.Equal[Option[Int]] (65 ms, 0.83%)
-
-
-
-monocle.function.Field1[Int :: String :: Boolean :: shapeless.HNil,A] (17 ms, 0.22%)
-
-
-
-Option[(scala.collection.immutable.Vector[Int], Int)] => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Stream[Int],L1] (42 ms, 0.53%)
-
-
-
-StateExample.this._age.type => ?{def extract: ?} (6 ms, 0.08%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R] (84 ms, 1.07%)
-
-
-
-Option[SymbolicSyntaxExample.this.Sofa] => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-scalaz.Equal[Int] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.RefType[F] (2 ms, 0.03%)
-
-
-
-org.scalactic.Equality[scalaz.Tree[Int]] (12 ms, 0.15%)
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._0.N,A] (2 ms, 0.03%)
-
-
-
-TreeExample.this.tree.type => ?{def applyLens: ?} (7 ms, 0.09%)
-
-
-
-scalaz.Functor[F$macro$3] (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Out] (1 ms, 0.01%)
-
-
-
-monocle.function.Each[scalaz.IList[Int],A] (26 ms, 0.33%)
-
-
-
-String ==>> Int => ?{def shouldEqual: ?} (24 ms, 0.30%)
-
-
-
-Int(4) => ?{def applyLens: ?} (17 ms, 0.22%)
-
-
-
-shapeless.ops.hlist.Prepend[String :: shapeless.HNil,this.Out :: shapeless.HNil] (13 ms, 0.17%)
-
-
-
-monocle.generic.internal.TupleGeneric[monocle.generic.Example] (124 ms, 1.58%)
-
-
-
-org.scalactic.Prettifier (3 ms, 0.04%)
-
-
-
-scalaz.Equal[Option[(scala.collection.immutable.Vector[Int], Int)]] (3 ms, 0.04%)
-
-
-
-scalaz.Equal[StateExample.this.Person] (5 ms, 0.06%)
-
-
-
-monocle.function.Curry[F,Int => (Int => (Int => (Int => (Int => Int))))] (7 ms, 0.09%)
-
-
-
-ComposeIssueExample.this.B[Nothing,String] => ComposeIssueExample.this.A[String,?U] (1 ms, 0.01%)
-
-
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Boolean] (3 ms, 0.04%)
-
-
-
-scalaz.Equal[Int \/ String] (19 ms, 0.24%)
-
-
-
-(=> monocle.LensPolyExample.Foo.type) => ?{def q_=: ?} (1 ms, 0.01%)
-
-
-
-scalaz.Equal[S => Option[A]] (6 ms, 0.08%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Boolean :: shapeless.HNil,String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out] (5 ms, 0.06%)
-
-
-
-scalaz.Equal[Stream[scalaz.Tree[Int]]] (8 ms, 0.10%)
-
-
-
-org.scalactic.Equality[String ==>> Int] (20 ms, 0.25%)
-
-
-
-org.scalactic.Equality[SymbolicSyntaxExample.this.Store] (1 ms, 0.01%)
-
-
-
-ReaderExample.this._age.type => ?{def ask: ?} (2 ms, 0.03%)
-
-
-
-Option[String] => ?{def shouldBe: ?} (12 ms, 0.15%)
-
-
-
-org.scalactic.Equality[Point] (2 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[A] (44 ms, 0.56%)
-
-
-
-org.scalactic.Prettifier (12 ms, 0.15%)
-
-
-
-LensMonoExample.this.john.type => ?{def lens: ?} (2 ms, 0.03%)
-
-
-
-scalaz.Equal[Int] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Boolean :: Char :: Int :: shapeless.HNil,String :: Long :: Boolean :: shapeless.HNil,Out] (3 ms, 0.04%)
-
-
-
-scalaz.Order[Int] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: String :: Long :: Boolean :: shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out] (3 ms, 0.04%)
-
-
-
-monocle.function.Snoc[List[Int],A] (7 ms, 0.09%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R] (108 ms, 1.37%)
-
-
-
-scalaz.Order[String] (9 ms, 0.11%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.03%)
-
-
-
-scalaz.Equal[A] (2 ms, 0.03%)
-
-
-
-org.scalactic.Prettifier (1 ms, 0.01%)
-
-
-
-monocle.function.Each[List[Int],A] (120 ms, 1.52%)
-
-
-
-Option[Unit] => ?{def shouldEqual: ?} (12 ms, 0.15%)
-
-
-
-monocle.function.Field1[(String, Int, Boolean, Double, Long, Char),A] (4 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out] (5 ms, 0.06%)
-
-
-
-org.scalactic.Equality[Boolean] (73 ms, 0.93%)
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Option[Int])] => ?{def shouldEqual: ?} (33 ms, 0.42%)
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(15)]] (91 ms, 1.16%)
-
-
-
-org.scalactic.source.Position (7 ms, 0.09%)
-
-
-
-StateExample.this._coolGuy.type => ?{def modo: ?} (2 ms, 0.03%)
-
-
-
-org.scalactic.Equality[(String, Int, Boolean, Double, Long, Char)] (11 ms, 0.14%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A] (3 ms, 0.04%)
-
-
-
-monocle.LensPolyExample.Foo.type => ?{def q_=: ?} (2 ms, 0.03%)
-
-
-
-scalaz.Order[String] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]] (44 ms, 0.56%)
-
-
-
-scalaz.Functor[F$macro$18] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Long :: Boolean :: shapeless.HNil,Out] (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Tupler[Char :: Int :: shapeless.HNil] (6 ms, 0.08%)
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int] (2 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Option[Nothing]] (259 ms, 3.29%)
-org..
-
-
-String("connection_timeout") => ?{def ->: ?} (1 ms, 0.01%)
-
-
-
-scalaz.Equal[(Int, Int, Int)] (5 ms, 0.06%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (61 ms, 0.77%)
-
-
-
-shapeless.ops.coproduct.Selector[String :+: Boolean :+: shapeless.CNil,Boolean] (13 ms, 0.17%)
-
-
-
-shapeless.Generic.Aux[this.Out,L1] (11 ms, 0.14%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long, Boolean)] (34 ms, 0.43%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R] (187 ms, 2.38%)
-e..
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-scala.languageFeature.postfixOps (18 ms, 0.23%)
-
-
-
-monocle.function.Reverse[(Int, Char),A] (52 ms, 0.66%)
-
-
-
-scalaz.Traverse[List] (1 ms, 0.01%)
-
-
-
-((String, Int, Boolean, Double, Long, Char)) => ?{def shouldEqual: ?} (4 ms, 0.05%)
-
-
-
-Float => Int (14 ms, 0.18%)
-
-
-
-scalaz.Equal[LensPolyExample.this.Foo[Int,Symbol]] (1 ms, 0.01%)
-
-
-
-List[Int] => ?{def applyIso: ?} (2 ms, 0.03%)
-
-
-
-Double => Int (22 ms, 0.28%)
-
-
-
-scalaz.Equal[(Char, Boolean, String, Double, Int)] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Tupler[Int :: Char :: shapeless.HNil] (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[String :: Boolean :: shapeless.HNil,shapeless._0,this.Out,(this.Out, String :: Boolean :: shapeless.HNil)] (3 ms, 0.04%)
-
-
-
-Vector[Int] => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-scalaz.Traverse[[β$11$]Map[String,β$11$]] (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Char :: Long :: shapeless.HNil,shapeless.nat._2,this.Out,(this.Out, Float :: Char :: Long :: shapeless.HNil)] (11 ms, 0.14%)
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._5.N,A] (6 ms, 0.08%)
-
-
-
-monocle.function.Each[(Int, Int, Int),A] (25 ms, 0.32%)
-
-
-
-((Char, Boolean, String, Double, Int)) => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-monocle.function.Reverse[scala.collection.immutable.Vector[Int],A] (24 ms, 0.30%)
-
-
-
-shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil] (2 ms, 0.03%)
-
-
-
-monocle.function.Curry[(Int, Int) => Int,G] (5 ms, 0.06%)
-
-
-
-eu.timepit.refined.api.RefType[F] (2 ms, 0.03%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(31)],RB] (263 ms, 3.34%)
-eu...
-
-
-monocle.function.Snoc[String,A] (1 ms, 0.01%)
-
-
-
-monocle.generic.Example => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-monocle.function.Snoc[List[Int],Int] (1 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[Int :: Int :: shapeless.HNil,SGen] (4 ms, 0.05%)
-
-
-
-List[Int] => ?{def shouldEqual: ?} (59 ms, 0.75%)
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Set[Int]] (3 ms, 0.04%)
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Option[String])] => ?{def shouldEqual: ?} (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: shapeless.HNil,Out0] (3 ms, 0.04%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA] (28 ms, 0.36%)
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]] (6 ms, 0.08%)
-
-
-
-String("hop") => ?{def ->: ?} (16 ms, 0.20%)
-
-
-
-scalaz.Equal[Long] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.RefType[F] (1 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(15)],R] (31 ms, 0.39%)
-
-
-
-StateExample.this._oldAge.type => ?{def assign_: ?} (2 ms, 0.03%)
-
-
-
-scalaz.Equal[Int] (1 ms, 0.01%)
-
-
-
-scalaz.Unapply[scalaz.Traverse,Map[String,JsonExample.this.Json]] (30 ms, 0.38%)
-
-
-
-scalaz.Equal[scalaz.Tree[Int]] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (36 ms, 0.46%)
-
-
-
-shapeless.Generic.Aux[List[Int],L1] (134 ms, 1.70%)
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,A] (7 ms, 0.09%)
-
-
-
-scalaz.Equal[monocle.generic.Example] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,Double :: String :: Long :: shapeless.HNil,Out] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(15)]] (91 ms, 1.16%)
-
-
-
-((Int, Boolean)) => ?{def applyLens: ?} (10 ms, 0.13%)
-
-
-
-monocle.function.Index[Map[String,String],String,A] (40 ms, 0.51%)
-
-
-
-shapeless.ops.hlist.At[Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._3] (4 ms, 0.05%)
-
-
-
-shapeless.Generic.Aux[List[Int],SGen] (108 ms, 1.37%)
-
-
-
-shapeless.ops.coproduct.Selector[CoproductExample.this.ISB,Int] (9 ms, 0.11%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (5 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.04%)
-
-
-
-Option[Char] => ?{def shouldEqual: ?} (8 ms, 0.10%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: shapeless.HNil,String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out] (6 ms, 0.08%)
-
-
-
-org.scalactic.Equality[Int ==>> String] (2 ms, 0.03%)
-
-
-
-monocle.function.Cons1[(Int, Boolean, String),H,T] (4 ms, 0.05%)
-
-
-
-shapeless.ops.nat.ToInt[Int(31)] (2 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[shapeless.HNil,SGen] (3 ms, 0.04%)
-
-
-
-shapeless.Generic.Aux[scalaz.Tree[Int],SGen] (19 ms, 0.24%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._0.N,Int,(Int, Int :: String :: Boolean :: shapeless.HNil)] (8 ms, 0.10%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R] (18 ms, 0.23%)
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Map[String,Int],SGen] (18 ms, 0.23%)
-
-
-
-monocle.function.Each[shapeless.HNil,Int] (1 ms, 0.01%)
-
-
-
-monocle.function.Field2[(String, Int),A] (5 ms, 0.06%)
-
-
-
-shapeless.ops.nat.ToInt[Int(0)] (3 ms, 0.04%)
-
-
-
-scalaz.IList[Int] => ?{def applyTraversal: ?} (1 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.03%)
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def shouldEqual: ?} (17 ms, 0.22%)
-
-
-
-scalaz.Equal[(Int, String, Boolean)] (1 ms, 0.01%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (8 ms, 0.10%)
-
-
-
-LensMonoExample.this.Person => ?{def shouldEqual: ?} (13 ms, 0.17%)
-
-
-
-ComposeIssueExample.this.B[Nothing,String] => ComposeIssueExample.this.B[String,?U] (8 ms, 0.10%)
-
-
-
-monocle.function.Index[scala.collection.immutable.Map[String,Int],String,A] (1 ms, 0.01%)
-
-
-
-monocle.function.At[scala.collection.immutable.Map[String,Int],String,A] (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Prepend.Aux[Int :: shapeless.HNil,String :: Boolean :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil] (45 ms, 0.57%)
-
-
-
-monocle.function.Each[shapeless.HNil,Int] (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[List[Int]] (61 ms, 0.77%)
-
-
-
-Numeric[Int] (11 ms, 0.14%)
-
-
-
-scalaz.Order[Int] (2 ms, 0.03%)
-
-
-
-monocle.function.Each[scalaz.IList[Int],Int] (1 ms, 0.01%)
-
-
-
-Int => ?{def shouldEqual: ?} (92 ms, 1.17%)
-
-
-
-x$2.type => ?{def toLower: ?} (1 ms, 0.01%)
-
-
-
-monocle.function.Reverse[scalaz.Tree[Int],A] (18 ms, 0.23%)
-
-
-
-org.scalactic.source.Position (4 ms, 0.05%)
-
-
-
-org.scalactic.Prettifier (1 ms, 0.01%)
-
-
-
-shapeless.Witness.Aux[Int(31)] (25 ms, 0.32%)
-
-
-
-monocle.function.Each[Int :: List[Int] :: shapeless.HNil,A] (22 ms, 0.28%)
-
-
-
-monocle.function.Cons[List[Int],A] (9 ms, 0.11%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._1.N,this.Out,(this.Out, Int :: String :: Boolean :: shapeless.HNil)] (7 ms, 0.09%)
-
-
-
-monocle.function.Each[T[A],A] (16 ms, 0.20%)
-
-
-
-monocle.function.FilterIndex[List[Int],Int,A] (1 ms, 0.01%)
-
-
-
-Numeric[Int] (1 ms, 0.01%)
-
-
-
-monocle.function.Cons[scala.collection.immutable.Vector[Int],Int] (11 ms, 0.14%)
-
-
-
-String("Foo") => ?{def ->: ?} (6 ms, 0.08%)
-
-
-
-shapeless.ops.hlist.Prepend.Aux[this.Out,this.Out :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil] (46 ms, 0.58%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-Double => ?{def shouldEqual: ?} (9 ms, 0.11%)
-
-
-
-scalaz.Equal[(Int, Int)] (3 ms, 0.04%)
-
-
-
-shapeless.Witness.Aux[Int(15)] (10 ms, 0.13%)
-
-
-
-scalaz.Equal[scalaz.IList[Int]] (10 ms, 0.13%)
-
-
-
-Numeric[Int] (2 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Option[(scala.collection.immutable.Vector[Int], Int)]] (3 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[A] (56 ms, 0.71%)
-
-
-
-scalaz.Equal[S => Option[A]] (2 ms, 0.03%)
-
-
-
-String("Hello") => ?{def applyOptional: ?} (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: shapeless.HNil,L2] (6 ms, 0.08%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R] (27 ms, 0.34%)
-
-
-
-scalaz.Equal[LensMonoExample.this.Person] (4 ms, 0.05%)
-
-
-
-scalaz.Equal[Int] (1 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.03%)
-
-
-
-scalaz.Equal[(scala.collection.immutable.Vector[Int], Int)] (2 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[List[Int],SGen] (156 ms, 1.98%)
-s..
-
-
-org.scalactic.Equality[Option[(Int, scala.collection.immutable.Vector[Int])]] (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Int :: shapeless.HNil,Out] (2 ms, 0.03%)
-
-
-
-scalaz.Validation[?X,Int] => scalaz.Validation[E,A] (2 ms, 0.03%)
-
-
-
-scalaz.Equal[List[Int]] (3 ms, 0.04%)
-
-
-
-Long => Int (14 ms, 0.18%)
-
-
-
-scalaz.Equal[Char] (2 ms, 0.03%)
-
-
-
-monocle.function.Field1[(String, Int, Boolean),A] (4 ms, 0.05%)
-
-
-
-scalaz.Equal[scala.collection.immutable.Stream[Int]] (9 ms, 0.11%)
-
-
-
-monocle.function.Plated[scalaz.Tree[Int]] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[Option[Boolean]] (3 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (8 ms, 0.10%)
-
-
-
-Int(32) => ?{def applyLens: ?} (14 ms, 0.18%)
-
-
-
-eu.timepit.refined.api.RefType[F] (8 ms, 0.10%)
-
-
-
-org.scalactic.source.Position (550 ms, 6.99%)
-org.scala..
-
-
-scalaz.Tree[Int] => ?{def applyLens: ?} (2 ms, 0.03%)
-
-
-
-((Nothing, Nothing)) => String (11 ms, 0.14%)
-
-
-
-org.scalactic.source.Position (6 ms, 0.08%)
-
-
-
-scalaz.Equal[Int] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]] (77 ms, 0.98%)
-
-
-
-((String, Int, Boolean)) => ?{def applyLens: ?} (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[Option[Int]] (83 ms, 1.05%)
-
-
-
-monocle.function.Each[scala.collection.immutable.Vector[Int],A] (24 ms, 0.30%)
-
-
-
-scalaz.Equal[Char] (1 ms, 0.01%)
-
-
-
-Char('x') => ?{def applyLens: ?} (14 ms, 0.18%)
-
-
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,A] (3 ms, 0.04%)
-
-
-
-(=> String) => Int (10 ms, 0.13%)
-
-
-
-org.scalactic.Equality[(Int, String, Boolean)] (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[scalaz.IList[Int]] (14 ms, 0.18%)
-
-
-
-scalaz.Equal[Int] (1 ms, 0.01%)
-
-
-
-monocle.function.Snoc1[(Int, Boolean),I,L] (15 ms, 0.19%)
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def applyOptional: ?} (1 ms, 0.01%)
-
-
-
-monocle.generic.Example => ?{def applyIso: ?} (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (7 ms, 0.09%)
-
-
-
-monocle.function.Index[List[Int],Int,A] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: shapeless.HNil,L2] (4 ms, 0.05%)
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int] (7 ms, 0.09%)
-
-
-
-scalaz.Id.Id[Int] => ?{def shouldEqual: ?} (6 ms, 0.08%)
-
-
-
-shapeless.ops.hlist.Init[Boolean :: shapeless.HNil] (5 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.04%)
-
-
-
-scalaz.Equal[Int] (30 ms, 0.38%)
-
-
-
-org.scalactic.source.Position (55 ms, 0.70%)
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[Int :: String :: Boolean :: shapeless.HNil,H,T] (7 ms, 0.09%)
-
-
-
-shapeless.ops.hlist.Init.Aux[(Char, Boolean, String, Double, Int, Int),I] (5 ms, 0.06%)
-
-
-
-org.scalactic.Equality[Option[List[Int]]] (27 ms, 0.34%)
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]] (560 ms, 7.11%)
-eu.timepi..
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R] (16 ms, 0.20%)
-
-
-
-monocle.function.Field2[Int :: String :: Boolean :: shapeless.HNil,A] (19 ms, 0.24%)
-
-
-
-scalaz.Monad[scalaz.Id.Id] (93 ms, 1.18%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out] (2 ms, 0.03%)
-
-
-
-eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined] (8 ms, 0.10%)
-
-
-
-org.scalactic.Equality[scalaz.Validation[Nothing,Int]] (141 ms, 1.79%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char),A] (3 ms, 0.04%)
-
-
-
-scalaz.Equal[Option[Nothing]] (254 ms, 3.23%)
-sca..
-
-
-(=> Double) => Int (12 ms, 0.15%)
-
-
-
-monocle.function.Each[scalaz.OneAnd[List,Int],A] (210 ms, 2.67%)
-mo..
-
-
-Option[Int] => ?{def applyTraversal: ?} (3 ms, 0.04%)
-
-
-
-String("Three") => ?{def ->: ?} (9 ms, 0.11%)
-
-
-
-scalaz.Equal[(Boolean, String, Double, Int, Int)] (2 ms, 0.03%)
-
-
-
-List[Int] => ?{def applyOptional: ?} (22 ms, 0.28%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out] (6 ms, 0.08%)
-
-
-
-org.scalactic.Equality[(Boolean, String, Double, Int, Int)] (2 ms, 0.03%)
-
-
-
-scalaz.Functor[F$macro$132] (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Int)]] (34 ms, 0.43%)
-
-
-
-String("One") => ?{def ->: ?} (98 ms, 1.25%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out] (2 ms, 0.03%)
-
-
-
-Int ==>> String => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[Stream[scalaz.Tree[Int]]] (9 ms, 0.11%)
-
-
-
-StateExample.this._oldAge.type => ?{def mod: ?} (4 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,shapeless.HNil,Out] (1 ms, 0.01%)
-
-
-
-shapeless.Witness.Aux[Int(31)] (66 ms, 0.84%)
-
-
-
-eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[Int] (6 ms, 0.08%)
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def applyOptional: ?} (3 ms, 0.04%)
-
-
-
-org.scalactic.Equality[monocle.generic.Example] (13 ms, 0.17%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out] (5 ms, 0.06%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA] (41 ms, 0.52%)
-
-
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Boolean] (36 ms, 0.46%)
-
-
-
-shapeless.ops.hlist.At[String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._4] (6 ms, 0.08%)
-
-
-
-org.scalactic.Equality[LensPolyExample.this.Foo[Symbol,Int]] (1 ms, 0.01%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[Int :: String :: Boolean :: shapeless.HNil,A] (11 ms, 0.14%)
-
-
-
-scalaz.Equal[Option[SymbolicSyntaxExample.this.Sofa]] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.03%)
-
-
-
-org.scalactic.Prettifier (1 ms, 0.01%)
-
-
-
-Int @@ scalaz.Tags.Max => ?{def applyIso: ?} (5 ms, 0.06%)
-
-
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def applyLens: ?} (5 ms, 0.06%)
-
-
-
-scalaz.Equal[Option[Char]] (8 ms, 0.10%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: shapeless.HNil,Int :: shapeless.HNil,Out] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(31)],RB] (119 ms, 1.51%)
-
-
-
-other.Custom => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-StateExample.this._age.type => ?{def mod: ?} (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,L2] (10 ms, 0.13%)
-
-
-
-scalaz.Equal[String ==>> Int] (17 ms, 0.22%)
-
-
-
-Map[Int,String] => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Boolean] (16 ms, 0.20%)
-
-
-
-org.scalactic.Equality[Int :: shapeless.HNil] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Tupler[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil] (2 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[this.Out,L1] (20 ms, 0.25%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-m.type => ?{def traverse: ?} (34 ms, 0.43%)
-
-
-
-shapeless.ops.hlist.Init.Aux[(Int, Boolean),I] (8 ms, 0.10%)
-
-
-
-scalaz.OneAnd[List,Int] => ?{def applyLens: ?} (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Tupler[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil] (2 ms, 0.03%)
-
-
-
-((Int, Symbol)) => ?{def ->: ?} (2 ms, 0.03%)
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,A] (13 ms, 0.17%)
-
-
-
-monocle.function.FilterIndex[Map[String,String],String,A] (1 ms, 0.01%)
-
-
-
-monocle.function.Empty[String] (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[Double] (5 ms, 0.06%)
-
-
-
-Int \&/ String => ?{def shouldEqual: ?} (3 ms, 0.04%)
-
-
-
-scalaz.Equal[Option[(Int, scala.collection.immutable.Vector[Int])]] (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil] (3 ms, 0.04%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.03%)
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Unit)]] (17 ms, 0.22%)
-
-
-
-Boolean => ?{def shouldBe: ?} (10 ms, 0.13%)
-
-
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Float] (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int),shapeless.nat._0.N,A] (3 ms, 0.04%)
-
-
-
-String ==>> Int => ?{def applyOptional: ?} (1 ms, 0.01%)
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int] (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,L2] (10 ms, 0.13%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: shapeless.HNil,Out] (3 ms, 0.04%)
-
-
-
-org.scalactic.Equality[(Int, Int)] (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,this.Out :: shapeless.HNil] (3 ms, 0.04%)
-
-
-
-monocle.function.Each[scalaz.Tree[Int],A] (23 ms, 0.29%)
-
-
-
-List[?A] => S (1 ms, 0.01%)
-
-
-
-Option[Boolean] => ?{def shouldEqual: ?} (3 ms, 0.04%)
-
-
-
-org.scalactic.Prettifier (3 ms, 0.04%)
-
-
-
-String("keyword") => ?{def ->: ?} (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Stream[Int]] (12 ms, 0.15%)
-
-
-
-eu.timepit.refined.api.RefType[F] (11 ms, 0.14%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._4,this.Out,(this.Out, String :: Boolean :: Float :: Char :: Long :: shapeless.HNil)] (18 ms, 0.23%)
-
-
-
-monocle.function.Reverse[List[Int],A] (146 ms, 1.85%)
-m..
-
-
-String("siblings") => ?{def ->: ?} (8 ms, 0.10%)
-
-
-
-monocle.function.Each[List[Int],Int] (116 ms, 1.47%)
-
-
-
-org.scalactic.Equality[scalaz.Validation[String,Int]] (8 ms, 0.10%)
-
-
-
-shapeless.ops.hlist.At[String :: Boolean :: shapeless.HNil,shapeless._0] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (8 ms, 0.10%)
-
-
-
-scalaz.Equal[(Int, Boolean)] (4 ms, 0.05%)
-
-
-
-monocle.function.Field6[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,A] (35 ms, 0.44%)
-
-
-
-scalaz.Equal[List[Int]] (4 ms, 0.05%)
-
-
-
-Numeric[Int] (2 ms, 0.03%)
-
-
-
-all (7,871 ms, 100%)
-
-
-
-scalaz.Equal[Boolean] (2 ms, 0.03%)
-
-
-
-scalaz.Equal[Vector[Int]] (1 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.04%)
-
-
-
-myStore.articles.type => ?{def &|-?: ?} (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[List[Int],A] (5 ms, 0.06%)
-
-
-
-scalaz.Tree[Int] => ?{def shouldEqual: ?} (14 ms, 0.18%)
-
-
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def applyIso: ?} (1 ms, 0.01%)
-
-
-
-Numeric[Int] (4 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil] (9 ms, 0.11%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Char :: Int :: shapeless.HNil,Out0] (2 ms, 0.03%)
-
-
-
-Char => ?{def shouldEqual: ?} (11 ms, 0.14%)
-
-
-
-Stream[scalaz.Tree[Int]] => ?{def shouldEqual: ?} (7 ms, 0.09%)
-
-
-
-scalaz.Equal[Boolean] (1 ms, 0.01%)
-
-
-
-monocle.function.Snoc[scala.collection.immutable.Stream[Int],A] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[(Int, Char, Boolean),L1] (14 ms, 0.18%)
-
-
-
-scalaz.Equal[Int] (1 ms, 0.01%)
-
-
-
-monocle.function.Index[List[Int],Int,Int] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[S => A] (58 ms, 0.74%)
-
-
-
-monocle.function.Index[Map[String,JsonExample.this.Json],String,A] (6 ms, 0.08%)
-
-
-
-StateExample.this._oldAge.type => ?{def mod_: ?} (2 ms, 0.03%)
-
-
-
-monocle.function.Each[scala.collection.immutable.Map[String,Int],A] (20 ms, 0.25%)
-
-
-
-scalaz.Equal[Double] (3 ms, 0.04%)
-
-
-
-Int(79) => monocle.refined.IntBits (68 ms, 0.86%)
-
-
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Int] (9 ms, 0.11%)
-
-
-
-String("abc") => ?{def failure: ?} (3 ms, 0.04%)
-
-
-
-scalaz.Equal[List[Int]] (2 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Vector[Int],SGen] (22 ms, 0.28%)
-
-
-
-Option[Int] => ?{def shouldEqual: ?} (85 ms, 1.08%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(31)],RB] (20 ms, 0.25%)
-
-
-
-shapeless.ops.nat.ToInt[Int(31)] (6 ms, 0.08%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-StateExample.this._oldAge.type => ?{def assign: ?} (2 ms, 0.03%)
-
-
-
-monocle.function.Field2[(String, Int, Boolean, Double, Long, Char),A] (5 ms, 0.06%)
-
-
-
-((Int, Int) => Int) => ?{def applyIso: ?} (2 ms, 0.03%)
-
-
-
-((Char, Boolean, String, Double, Int, Int)) => ?{def applyLens: ?} (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._5.N,this.Out,(this.Out, Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil)] (24 ms, 0.30%)
-
-
-
-shapeless.ops.nat.ToInt[Int(0)] (9 ms, 0.11%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA] (251 ms, 3.19%)
-eu...
-
-
-scalaz.Equal[Int] (3 ms, 0.04%)
-
-
-
-scalaz.Equal[String @@ Nothing] (1 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[scalaz.Tree[Int],L1] (8 ms, 0.10%)
-
-
-
-org.scalactic.Equality[Int :: String :: Boolean :: shapeless.HNil] (5 ms, 0.06%)
-
-
-
-shapeless.ops.hlist.At.Aux[Int :: shapeless.HNil,shapeless.nat._0.N,Int] (2 ms, 0.03%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(31)],RB] (26 ms, 0.33%)
-
-
-
-org.scalactic.Prettifier (11 ms, 0.14%)
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, String)]] (4 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out0] (5 ms, 0.06%)
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[(Int, Boolean),H,T] (9 ms, 0.11%)
-
-
-
-scalaz.Equal[Option[Int \/ String]] (22 ms, 0.28%)
-
-
-
-Numeric[Int] (4 ms, 0.05%)
-
-
-
-monocle.function.Wrapped[Int @@ scalaz.Tags.Max,A] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.RefType[Tuple2] (1 ms, 0.01%)
-
-
-
-(=> (Nothing, Nothing)) => String (8 ms, 0.10%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA] (19 ms, 0.24%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (12 ms, 0.15%)
-
-
-
-String("nick_name") => ?{def ->: ?} (1 ms, 0.01%)
-
-
-
-monocle.function.Cons[scalaz.IList[Int],A] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[Int] (5 ms, 0.06%)
-
-
-
-monocle.function.Cons1[(Char, Boolean, String, Double, Int, Int),H,T] (13 ms, 0.17%)
-
-
-
-monocle.function.Snoc[scalaz.IList[Int],A] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-scalaz.Order[String] (2 ms, 0.03%)
-
-
-
-scalaz.Order[Int] (2 ms, 0.03%)
-
-
-
-scalaz.Equal[scalaz.Tree[Int]] (9 ms, 0.11%)
-
-
-
-Numeric[Int] (25 ms, 0.32%)
-
-
-
-monocle.function.At[scala.collection.immutable.Map[String,Int],String,Option[A]] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[StateExample.this.Person] (7 ms, 0.09%)
-
-
-
-Boolean :: shapeless.HNil => ?{def ::: ?} (14 ms, 0.18%)
-
-
-
-monocle.function.Each[String ==>> Int,A] (10 ms, 0.13%)
-
-
-
-StateExample.this._nameSet.type => ?{def assign_: ?} (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[(Char, Boolean, String, Double, Int, Int),H,T] (6 ms, 0.08%)
-
-
-
-monocle.function.Each[scalaz.IList[SymbolicSyntaxExample.this.Article],A] (50 ms, 0.64%)
-
-
-
-monocle.function.FilterIndex[scala.collection.immutable.Map[String,Int],String,A] (2 ms, 0.03%)
-
-
-
-monocle.function.Curry[F,Double => (Int => Double)] (1 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (1 ms, 0.01%)
-
-
-
-JsonExample.this.Json => ?{def shouldEqual: ?} (15 ms, 0.19%)
-
-
-
-monocle.function.Field1[(String, Int),A] (5 ms, 0.06%)
-
-
-
-org.scalactic.Equality[Option[Boolean]] (4 ms, 0.05%)
-
-
-
-scalaz.Order[String] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.RefType[F] (1 ms, 0.01%)
-
-
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Int] (12 ms, 0.15%)
-
-
-
-monocle.function.At[Int,monocle.refined.IntBits,A] (7 ms, 0.09%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (4 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,shapeless.HNil,Out] (1 ms, 0.01%)
-
-
-
-monocle.function.Cons1[(Int, Boolean),H,T] (17 ms, 0.22%)
-
-
-
-org.scalactic.Equality[(Int, scalaz.Tree[Int])] (2 ms, 0.03%)
-
-
-
-monocle.function.Cons[List[SymbolicSyntaxExample.this.Article],A] (2 ms, 0.03%)
-
-
-
-(=> Long) => Int (93 ms, 1.18%)
-
-
-
-shapeless.ops.hlist.At[Float :: Char :: Long :: shapeless.HNil,shapeless.nat._2] (3 ms, 0.04%)
-
-
-
-Option[Unit] => ?{def shouldBe: ?} (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-scalaz.Equal[List[Int]] (48 ms, 0.61%)
-
-
-
-monocle.function.Each[(Int, Int, Int, Int, Int, Int),A] (36 ms, 0.46%)
-
-
-
-scalaz.Equal[Option[(List[Int], Int)]] (10 ms, 0.13%)
-
-
-
-org.scalactic.source.Position (4 ms, 0.05%)
-
-
-
-shapeless.Generic.Aux[List[Int] :: shapeless.HNil,SGen] (4 ms, 0.05%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA] (40 ms, 0.51%)
-
-
-
-monocle.function.Snoc1[Int :: String :: Boolean :: shapeless.HNil,I,L] (92 ms, 1.17%)
-
-
-
-org.scalactic.source.Position (5 ms, 0.06%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.03%)
-
-
-
-monocle.function.Field6[(String, Int, Boolean, Double, Long, Char),A] (12 ms, 0.15%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.Tree[Int],A] (4 ms, 0.05%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char)] (23 ms, 0.29%)
-
-
-
-scalaz.Functor[F$macro$131] (2 ms, 0.03%)
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int] (2 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[(Int, Int),SGen] (19 ms, 0.24%)
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Map[String,Int]] (25 ms, 0.32%)
-
-
-
-String @@ Nothing => ?{def shouldEqual: ?} (3 ms, 0.04%)
-
-
-
-scalaz.Equal[scalaz.Validation[String,Int]] (7 ms, 0.09%)
-
-
-
-org.scalactic.Equality[Option[Int \/ String]] (24 ms, 0.30%)
-
-
-
-org.scalactic.source.Position (34 ms, 0.43%)
-
-
-
-((String, Int, Boolean)) => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-((String, Int)) => ?{def applyLens: ?} (2 ms, 0.03%)
-
-
-
-scalaz.OneAnd[List,Int] => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,String :: Boolean :: shapeless.HNil,Out] (3 ms, 0.04%)
-
-
-
-monocle.function.Field1[Int :: shapeless.HNil,Int] (5 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (11 ms, 0.14%)
-
-
-
-org.scalactic.Equality[(Int, Int, Int)] (5 ms, 0.06%)
-
-
-
-org.scalactic.Equality[Int] (51 ms, 0.65%)
-
-
-
-scalaz.Equal[E] (135 ms, 1.72%)
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int] (6 ms, 0.08%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.03%)
-
-
-
-String("Bar") => ?{def ->: ?} (12 ms, 0.15%)
-
-
-
-scala.collection.immutable.Set[Int] => ?{def applyLens: ?} (24 ms, 0.30%)
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]] (300 ms, 3.81%)
-eu.t..
-
-
-((Int, Boolean, String)) => ?{def shouldEqual: ?} (3 ms, 0.04%)
-
-
-
-shapeless.Generic.Aux[this.Out,L1] (12 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[A] (19 ms, 0.24%)
-
-
-
-shapeless.ops.coproduct.Selector[CoproductExample.this.ISB,Boolean] (24 ms, 0.30%)
-
-
-
-org.scalactic.source.Position (8 ms, 0.10%)
-
-
-
-shapeless.ops.hlist.Init[String :: Boolean :: shapeless.HNil] (9 ms, 0.11%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R] (18 ms, 0.23%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: Char :: Int :: shapeless.HNil,L2] (3 ms, 0.04%)
-
-
-
-monocle.function.Index[String ==>> Int,String,A] (3 ms, 0.04%)
-
-
-
-((Int, Int, Int, Int, Int, Int)) => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-(=> Float) => Int (13 ms, 0.17%)
-
-
-
-monocle.function.At[String ==>> Int,String,A] (6 ms, 0.08%)
-
-
-
-StateExample.this._oldAge.type => ?{def assigno: ?} (3 ms, 0.04%)
-
-
-
-scalaz.Equal[(Int, scalaz.Tree[Int])] (2 ms, 0.03%)
-
-
-
-monocle.function.Cons1[Int :: String :: Boolean :: shapeless.HNil,H,T] (55 ms, 0.70%)
-
-
-
-LensPolyExample.this.Foo[Int,Symbol] => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-scalaz.Equal[Int] (19 ms, 0.24%)
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Option[Int])]] (26 ms, 0.33%)
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Stream[Int],SGen] (76 ms, 0.97%)
-
-
-
-Point => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int] (3 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (1 ms, 0.01%)
-
-
-
-String("Two") => ?{def ->: ?} (79 ms, 1.00%)
-
-
-
-shapeless.Generic.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),L1] (20 ms, 0.25%)
-
-
-
-monocle.function.At[Map[String,JsonExample.this.Json],String,A] (2 ms, 0.03%)
-
-
-
-org.scalactic.Equality[String] (22 ms, 0.28%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(15)],R] (28 ms, 0.36%)
-
-
-
-this.Out => ?{def shouldEqual: ?} (21 ms, 0.27%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Out0] (4 ms, 0.05%)
-
-
-
-StateExample.this._age.type => ?{def modo: ?} (1 ms, 0.01%)
-
-
-
-StateExample.this._age.type => ?{def mod_: ?} (1 ms, 0.01%)
-
-
-
-StateExample.this._nameSet.type => ?{def mod_: ?} (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Out] (3 ms, 0.04%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.03%)
-
-
-
-monocle.function.Each[List[Int],Int] (158 ms, 2.01%)
-m..
-
-
-org.scalactic.Equality[Boolean :: String :: Int :: shapeless.HNil] (4 ms, 0.05%)
-
-
-
-((Int, scalaz.Tree[Int])) => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-scalaz.Equal[scalaz.Tree[Int]] (5 ms, 0.06%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out] (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.04%)
-
-
-
-Int(0) => monocle.refined.CharBits (104 ms, 1.32%)
-
-
-
-((Boolean, String, Double, Int, Int)) => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: Double :: String :: Long :: shapeless.HNil,Out] (2 ms, 0.03%)
-
-
-
-Numeric[Int] (3 ms, 0.04%)
-
-
-
-shapeless.Witness.Aux[Int(15)] (11 ms, 0.14%)
-
-
-
-eu.timepit.refined.api.RefType[scala.collection.immutable.Map] (3 ms, 0.04%)
-
-
-
-monocle.function.Cons[scala.collection.immutable.Stream[Int],A] (1 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[monocle.generic.Example,L] (59 ms, 0.75%)
-
-
-
-monocle.function.Each[shapeless.HNil,Any] (5 ms, 0.06%)
-
-
-
-scalaz.Equal[Stream[Int]] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.RefType[scalaz.==>>] (5 ms, 0.06%)
-
-
-
-org.scalactic.Equality[String @@ Nothing] (3 ms, 0.04%)
-
-
-
-scalaz.Equal[(Int, Int, Int, Int, Int, Int)] (6 ms, 0.08%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scala.collection.immutable.Stream[Int],A] (45 ms, 0.57%)
-
-
-
-org.scalactic.Prettifier (123 ms, 1.56%)
-
-
-
-shapeless.ops.hlist.Init.Aux[(Int, Boolean, String),I] (3 ms, 0.04%)
-
-
-
-Int(-1) => monocle.refined.IntBits (57 ms, 0.72%)
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Int)]] (14 ms, 0.18%)
-
-
-
-scalaz.Equal[Point] (1 ms, 0.01%)
-
-
-
-String("Hello World") => ?{def applyOptional: ?} (1 ms, 0.01%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[String,A] (7 ms, 0.09%)
-
-
-
-org.scalactic.source.Position (7 ms, 0.09%)
-
-
-
-((Int, Boolean, String)) => ?{def applyLens: ?} (1 ms, 0.01%)
-
-
-
-monocle.function.Snoc1[(Char, Boolean, String, Double, Int, Int),I,L] (11 ms, 0.14%)
-
-
-
-org.scalacheck.Arbitrary[A] (11 ms, 0.14%)
-
-
-
-scalaz.Equal[(String, Int, Boolean)] (1 ms, 0.01%)
-
-
-
-scalaz.Validation[String,Int] => ?{def shouldEqual: ?} (3 ms, 0.04%)
-
-
-
-scalaz.Equal[Char] (3 ms, 0.04%)
-
-
-
-scalaz.Equal[String] (2 ms, 0.03%)
-
-
-
-org.scalactic.Equality[(String, Int, Boolean)] (1 ms, 0.01%)
-
-
-
-Option[(List[Int], Int)] => ?{def shouldEqual: ?} (3 ms, 0.04%)
-
-
-
-shapeless.Witness.Aux[Int(31)] (6 ms, 0.08%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scala.collection.immutable.Vector[Int],A] (4 ms, 0.05%)
-
-
-
-org.scalactic.source.Position (4 ms, 0.05%)
-
-
-
-org.scalactic.Equality[Option[SymbolicSyntaxExample.this.Sofa]] (2 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Option[(List[Int], Int)]] (11 ms, 0.14%)
-
-
-
-org.scalactic.Equality[(Int, Int, Int, Int, Int, Int)] (6 ms, 0.08%)
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int] (5 ms, 0.06%)
-
-
-
-monocle.function.FilterIndex[Map[String,JsonExample.this.Json],String,A] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,String :: Boolean :: shapeless.HNil] (6 ms, 0.08%)
-
-
-
-shapeless.Generic.Aux[List[Int],SGen] (118 ms, 1.50%)
-
-
-
-scalaz.Equal[Option[(Int, List[Int])]] (9 ms, 0.11%)
-
-
-
-StateExample.this._oldAge.type => ?{def modo: ?} (5 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def applyTraversal: ?} (2 ms, 0.03%)
-
-
-
-monocle.HttpRequestExample.HttpRequest => ?{def shouldBe: ?} (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (9 ms, 0.11%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Long :: shapeless.HNil,shapeless._0,this.Out,(this.Out, Long :: shapeless.HNil)] (3 ms, 0.04%)
-
-
-
-org.scalactic.Equality[Option[Unit]] (14 ms, 0.18%)
-
-
-
-eu.timepit.refined.api.RefType[F] (11 ms, 0.14%)
-
-
-
-myStore.type => ?{def &|->: ?} (1 ms, 0.01%)
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, String)] => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-Numeric[Int] (3 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (8 ms, 0.10%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),SGen] (28 ms, 0.36%)
-
-
-
-eu.timepit.refined.api.RefType[scala.collection.immutable.Map] (2 ms, 0.03%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R] (14 ms, 0.18%)
-
-
-
-monocle.function.Index[scalaz.OneAnd[List,Int],Int,A] (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: shapeless.HNil,Out0] (1 ms, 0.01%)
-
-
-
-scalaz.Unapply[scalaz.Traverse,Map[String,JsonExample.this.Json]] (30 ms, 0.38%)
-
-
-
-org.scalactic.source.Position (17 ms, 0.22%)
-
-
-
-org.scalactic.Equality[CoproductExample.this.ISB] (1 ms, 0.01%)
-
-
-
-monocle.function.At[scala.collection.immutable.Set[Int],Int,A] (12 ms, 0.15%)
-
-
-
-l.type => ?{def traverse: ?} (6 ms, 0.08%)
-
-
-
-Numeric[Int] (25 ms, 0.32%)
-
-
-
-eu.timepit.refined.api.RefType[F] (2 ms, 0.03%)
-
-
-
-shapeless.Witness.Aux[Int(31)] (6 ms, 0.08%)
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean),shapeless.nat._0.N,A] (2 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Option[Char]] (10 ms, 0.13%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Double :: String :: Long :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out] (3 ms, 0.04%)
-
-
-
-scalaz.Equal[Double] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,L2] (8 ms, 0.10%)
-
-
-
-scalaz.Equal[Int] (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Unit)]] (34 ms, 0.43%)
-
-
-
-scalaz.Order[String] (1 ms, 0.01%)
-
-
-
-Int(0) => ?{def applyLens: ?} (18 ms, 0.23%)
-
-
-
-eu.timepit.refined.api.RefType[F] (1 ms, 0.01%)
-
-
-
-Option[Nothing] => ?{def shouldEqual: ?} (6 ms, 0.08%)
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]] (60 ms, 0.76%)
-
-
-
-shapeless.Generic.Aux[scalaz.IList[Int],SGen] (24 ms, 0.30%)
-
-
-
-org.scalactic.Equality[Option[(Int, List[Int])]] (10 ms, 0.13%)
-
-
-
-scalaz.Equal[S => A] (197 ms, 2.50%)
-sc..
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out0] (7 ms, 0.09%)
-
-
-
-scalaz.Equal[String] (1 ms, 0.01%)
-
-
-
-Option[String] => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Option[String]] (1 ms, 0.01%)
-
-
-
-scalaz.std.map.BuildKeyConstraint[String] (1 ms, 0.01%)
-
-
-
-((Int, String, Boolean)) => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[(Int, Char),L1] (10 ms, 0.13%)
-
-
-
-scalaz.IList[Int] => ?{def shouldEqual: ?} (18 ms, 0.23%)
-
-
-
-org.scalactic.Prettifier (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-String => Int (16 ms, 0.20%)
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Option[String])]] (4 ms, 0.05%)
-
-
-
-shapeless.Generic.Aux[HListExample.this.Example,A] (29 ms, 0.37%)
-
-
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Float] (7 ms, 0.09%)
-
-
-
-scalaz.Equal[List[Int]] (16 ms, 0.20%)
-
-
-
-Numeric[Int] (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out0] (7 ms, 0.09%)
-
-
-
-((Int, Boolean)) => ?{def shouldEqual: ?} (3 ms, 0.04%)
-
-
-
-org.scalactic.Prettifier (3 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[A] (18 ms, 0.23%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,L2] (7 ms, 0.09%)
-
-
-
-monocle.function.At[Char,monocle.refined.CharBits,A] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[A] (248 ms, 3.15%)
-sca..
-
-
-eu.timepit.refined.api.RefType[Tuple2] (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-monocle.function.Each[S,A] (41 ms, 0.52%)
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean),A] (51 ms, 0.65%)
-
-
-
-StateExample.this._nameGet.type => ?{def extract: ?} (1 ms, 0.01%)
-
-
-
-Int(1) => monocle.refined.IntBits (88 ms, 1.12%)
-
-
-
-shapeless.Witness.Aux[Int(31)] (5 ms, 0.06%)
-
-
-
-scalaz.Functor[F] (1 ms, 0.01%)
-
-
-
-scalaz.Functor[F$macro$33] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.RefType[F] (13 ms, 0.17%)
-
-
-
-org.scalactic.source.Position (29 ms, 0.37%)
-
-
-
-scalaz.Equal[String] (13 ms, 0.17%)
-
-
-
-LensPolyExample.this.Foo[Symbol,Int] => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-monocle.function.Snoc1[(Int, Boolean, String),I,L] (6 ms, 0.08%)
-
-
-
-(=> ComposeIssueExample.this.B[Nothing,String]) => ComposeIssueExample.this.B[String,?U] (1 ms, 0.01%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A] (38 ms, 0.48%)
-
-
-
-scalaz.Equal[Option[Unit]] (11 ms, 0.14%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-scalaz.Equal[A] (68 ms, 0.86%)
-
-
-
-scalaz.Functor[scalaz.Id.Id] (10 ms, 0.13%)
-
-
-
-Int(0) => monocle.refined.IntBits (354 ms, 4.50%)
-Int(0..
-
-
-scala.collection.immutable.Stream[Int] => ?{def shouldEqual: ?} (12 ms, 0.15%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Long :: Boolean :: shapeless.HNil,Double :: Boolean :: Char :: Int :: shapeless.HNil,Out] (4 ms, 0.05%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[List[Int],A] (138 ms, 1.75%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scala.collection.immutable.Stream[Int],A] (4 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[(Int, Boolean, String),H,T] (3 ms, 0.04%)
-
-
-
-scalaz.Applicative[F] (9 ms, 0.11%)
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Option[String])]] (7 ms, 0.09%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.03%)
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Int)] => ?{def shouldEqual: ?} (16 ms, 0.20%)
-
-
-
-org.scalactic.Equality[LensPolyExample.this.Foo[Int,Symbol]] (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.04%)
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Vector[Int]] (20 ms, 0.25%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA] (39 ms, 0.50%)
-
-
-
-org.scalactic.Equality[other.Custom] (1 ms, 0.01%)
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long),A] (74 ms, 0.94%)
-
-
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int] (4 ms, 0.05%)
-
-
-
-Numeric[Int] (3 ms, 0.04%)
-
-
-
-monocle.function.Curry[F,Int => (Int => Int)] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[scala.collection.immutable.Map[String,Int]] (21 ms, 0.27%)
-
-
-
-Option[List[Int]] => ?{def shouldEqual: ?} (18 ms, 0.23%)
-
-
-
-scalaz.Tree[Int] => ?{def applyTraversal: ?} (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[String,A] (3 ms, 0.04%)
-
-
-
-scalaz.Equal[Boolean] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(15)],RB] (43 ms, 0.55%)
-
-
-
-org.scalacheck.Arbitrary[A] (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-monocle.function.Each[List[JsonExample.this.Json],A] (312 ms, 3.96%)
-mono..
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[(Int, scala.collection.immutable.Vector[Int])] (2 ms, 0.03%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R] (180 ms, 2.29%)
-e..
-
-
-shapeless.Generic.Aux[Int :: shapeless.HNil,SGen] (4 ms, 0.05%)
-
-
-
-String("last_name") => ?{def ->: ?} (8 ms, 0.10%)
-
-
-
-org.scalactic.Equality[String :: Boolean :: shapeless.HNil] (1 ms, 0.01%)
-
-
-
-CoproductExample.this.ISB => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[LensMonoExample.this.Person] (11 ms, 0.14%)
-
-
-
-Int(3) => ?{def applyLens: ?} (14 ms, 0.18%)
-
-
-
-org.scalactic.Equality[Map[Int,String]] (1 ms, 0.01%)
-
-
-
-scalaz.Traverse[scala.collection.immutable.Iterable] (1 ms, 0.01%)
-
-
-
-monocle.function.Each[shapeless.HNil,Int] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.RefType[F] (2 ms, 0.03%)
-
-
-
-monocle.function.Each[(Int, Int),A] (35 ms, 0.44%)
-
-
-
-shapeless.Generic.Aux[String ==>> Int,SGen] (7 ms, 0.09%)
-
-
-
-org.scalactic.source.Position (7 ms, 0.09%)
-
-
-
-scalaz.Validation[Nothing,Int] => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: String :: Boolean :: shapeless.HNil,shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil] (2 ms, 0.03%)
-
-
-
-Numeric[Int] (14 ms, 0.18%)
-
-
-
-StateExample.this._age.type => ?{def assign: ?} (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._3,this.Out,(this.Out, Boolean :: Float :: Char :: Long :: shapeless.HNil)] (14 ms, 0.18%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil] (4 ms, 0.05%)
-
-
-
-scalaz.Equal[Int] (3 ms, 0.04%)
-
-
-
-monocle.function.Snoc[scala.collection.immutable.Vector[Int],A] (2 ms, 0.03%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (6 ms, 0.08%)
-
-
-
-scalaz.Equal[StateExample.this.Person] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Long :: shapeless.HNil,Double :: Boolean :: Char :: Int :: shapeless.HNil,Out] (5 ms, 0.06%)
-
-
-
-List[Int] => ?{def applyTraversal: ?} (2 ms, 0.03%)
-
-
-
-F[scala.collection.immutable.Map[String,JsonExample.this.Json]] => ?{def map: ?} (2 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[Int :: String :: Boolean :: shapeless.HNil,L1] (3 ms, 0.04%)
-
-
-
-shapeless.Generic.Aux[this.Out,L1] (17 ms, 0.22%)
-
-
-
-monocle.function.Cons[String,A] (2 ms, 0.03%)
-
-
-
-scalaz.Equal[S => A] (54 ms, 0.69%)
-
-
-
-String("first_name") => ?{def ->: ?} (27 ms, 0.34%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil,Out0] (4 ms, 0.05%)
-
-
-
-monocle.function.Each[Option[Int],A] (53 ms, 0.67%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean)] (22 ms, 0.28%)
-
-
-
-scalaz.Equal[scala.collection.immutable.Vector[Int]] (1 ms, 0.01%)
-
-
-
-StateExample.this._age.type => ?{def extracts: ?} (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean),A] (3 ms, 0.04%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),A] (24 ms, 0.30%)
-
-
-
-scalaz.Equal[(Int, Boolean, String)] (7 ms, 0.09%)
-
-
-
-scalaz.Equal[StateExample.this.Person] (4 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A] (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Long :: shapeless.HNil,shapeless.nat._1,this.Out,(this.Out, Char :: Long :: shapeless.HNil)] (7 ms, 0.09%)
-
-
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Int] (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: shapeless.HNil,shapeless.nat._0.N,Int,(Int, Int :: shapeless.HNil)] (2 ms, 0.03%)
-
-
-
-scalaz.Equal[Int] (1 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[scalaz.OneAnd[List,Int],SGen] (27 ms, 0.34%)
-
-
-
-scalaz.Equal[String] (1 ms, 0.01%)
-
-
-
-((String, Int, Boolean, Double, Long, Char)) => ?{def applyLens: ?} (3 ms, 0.04%)
-
-
-
-scalaz.Equal[S => Option[A]] (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def shouldEqual: ?} (28 ms, 0.36%)
-
-
-
-scalaz.Equal[Int \&/ String] (9 ms, 0.11%)
-
-
-
-org.scalactic.Prettifier (8 ms, 0.10%)
-
-
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._0.N,A] (7 ms, 0.09%)
-
-
-
-org.scalactic.Prettifier (6 ms, 0.08%)
-
-
-
-monocle.function.Curry[(Int, Double) => Double,G] (1 ms, 0.01%)
-
-
-
-scala.collection.immutable.Set[Int] => ?{def shouldEqual: ?} (11 ms, 0.14%)
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, String)]] (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-scalaz.Traverse[[β$11$]Map[String,β$11$]] (1 ms, 0.01%)
-
-
-
-monocle.function.Cons1[scalaz.OneAnd[List,Int],H,T] (11 ms, 0.14%)
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Vector[Int],L1] (14 ms, 0.18%)
-
-
-
-scalaz.Equal[Int ==>> String] (2 ms, 0.03%)
-
-
-
-scalaz.Equal[scalaz.Validation[Nothing,Int]] (140 ms, 1.78%)
-
-
-
-monocle.function.At[Map[String,String],String,A] (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.At[Char :: Long :: shapeless.HNil,shapeless.nat._1] (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-scalaz.Equal[scala.collection.immutable.Set[Int]] (2 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[Int :: List[Int] :: shapeless.HNil,SGen] (5 ms, 0.06%)
-
-
-
-String => ?{def shouldEqual: ?} (44 ms, 0.56%)
-
-
-
-scalaz.Equal[Int] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-scalaz.Equal[this.Out] (12 ms, 0.15%)
-
-
-
-scalaz.Equal[(List[Int], Int)] (7 ms, 0.09%)
-
-
-
-shapeless.ops.hlist.Last.Aux[Int :: String :: Boolean :: shapeless.HNil,L] (21 ms, 0.27%)
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._1.N,A] (3 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.RefType[F] (2 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.03%)
-
-
-
-scalaz.Equal[scalaz.Id.Id[Int]] (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.OneAnd[List,Int],H,T] (6 ms, 0.08%)
-
-
-
-scalaz.Equal[Int :: String :: Boolean :: shapeless.HNil] (1 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[A] (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: shapeless.HNil] (2 ms, 0.03%)
-
-
-
-Option[(Int, List[Int])] => ?{def shouldEqual: ?} (3 ms, 0.04%)
-
-
-
-scalaz.Order[Int] (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.RefType[F] (1 ms, 0.01%)
-
-
-
-((Int, Char, Boolean, Double, String, Long, Boolean)) => ?{def applyIso: ?} (1 ms, 0.01%)
-
-
-
-ComposeIssueExample.this.aI2S.type => ?{def compose(x$1: ? >: ComposeIssueExample.this.B[Nothing,String]): ?} (2 ms, 0.03%)
-
-
-
-monocle.function.Cons[scala.collection.immutable.Vector[Int],A] (2 ms, 0.03%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long)] (33 ms, 0.42%)
-
-
-
-scalaz.Equal[JsonExample.this.Json] (23 ms, 0.29%)
-
-
-
-org.scalactic.Equality[(Char, Boolean, String, Double, Int)] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[Int] (7 ms, 0.09%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: String :: Boolean :: shapeless.HNil,A] (8 ms, 0.10%)
-
-
-
-eu.timepit.refined.api.RefType[scalaz.==>>] (2 ms, 0.03%)
-
-
-
-scalaz.Equal[Char] (3 ms, 0.04%)
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Option[Int])]] (47 ms, 0.60%)
-
-
-
-org.scalactic.Prettifier (1 ms, 0.01%)
-
-
-
-String :: Boolean :: shapeless.HNil => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-scalaz.Functor[F$macro$11] (3 ms, 0.04%)
-
-
-
-scalaz.Order[E] (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._5.N,A] (10 ms, 0.13%)
-
-
-
-monocle.function.Reverse[String,A] (13 ms, 0.17%)
-
-
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Int] (3 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Char :: Int :: shapeless.HNil,L2] (5 ms, 0.06%)
-
-
-
-scalaz.Order[Int] (2 ms, 0.03%)
-
-
-
-StateExample.this._age.type => ?{def assign_: ?} (1 ms, 0.01%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R] (29 ms, 0.37%)
-
-
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._1.N,A] (11 ms, 0.14%)
-
-
-
-monocle.function.Empty[List[Int]] (3 ms, 0.04%)
-
-
-
-org.scalactic.Prettifier (4 ms, 0.05%)
-
-
-
-scalaz.Order[A] (1 ms, 0.01%)
-
-
-
-F[List[JsonExample.this.Json]] => ?{def map: ?} (12 ms, 0.15%)
-
-
-
-scalaz.Equal[Unit] (5 ms, 0.06%)
-
-
-
-shapeless.ops.hlist.Init.Aux[Int :: String :: Boolean :: shapeless.HNil,I] (21 ms, 0.27%)
-
-
-
-shapeless.Generic.Aux[String,L1] (4 ms, 0.05%)
-
-
-
-monocle.function.FilterIndex[String ==>> Int,String,A] (3 ms, 0.04%)
-
-
-
-scala.collection.immutable.Stream[Int] => ?{def applyOptional: ?} (4 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: String :: Long :: shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out] (4 ms, 0.05%)
-
-
-
-((Int, Int)) => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-monocle.function.Cons[List[Int],Int] (3 ms, 0.04%)
-
-
-
-StateExample.this._oldAge.type => ?{def extract: ?} (3 ms, 0.04%)
-
-
-
-org.scalactic.Equality[Stream[Int]] (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Long :: shapeless.HNil,Out] (1 ms, 0.01%)
-
-
-
-org.scalactic.Equality[Int \&/ String] (10 ms, 0.13%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.03%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R] (27 ms, 0.34%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int),SGen] (20 ms, 0.25%)
-
-
-
-org.scalactic.Equality[Char] (5 ms, 0.06%)
-
-
-
-scalaz.Equal[Int] (28 ms, 0.36%)
-
-
-
-scalaz.Equal[(String, Int, Boolean, Double, Long, Char)] (10 ms, 0.13%)
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[Int]] (3 ms, 0.04%)
-
-
-
-scalaz.Equal[scala.collection.immutable.Vector[Int]] (16 ms, 0.20%)
-
-
-
-org.scalactic.source.Position (9 ms, 0.11%)
-
-
-
-eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined] (11 ms, 0.14%)
-
-
-
-org.scalactic.Equality[scalaz.OneAnd[List,Int]] (6 ms, 0.08%)
-
-
-
-String :: Boolean :: shapeless.HNil => ?{def ::: ?} (11 ms, 0.14%)
-
-
-
-StateExample.this._age.type => ?{def assigno: ?} (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[(Int, Symbol),Double],((Symbol, Int), Double),That] (7 ms, 0.09%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(15)],RB] (41 ms, 0.52%)
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long, Boolean),A] (78 ms, 0.99%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil] (5 ms, 0.06%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean),A] (24 ms, 0.30%)
-
-
-
-String("socket_timeout") => ?{def ->: ?} (1 ms, 0.01%)
-
-
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def shouldEqual: ?} (4 ms, 0.05%)
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def applyTraversal: ?} (1 ms, 0.01%)
-
-
-
-scalaz.Equal[(Int, List[Int])] (7 ms, 0.09%)
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def applyLens: ?} (14 ms, 0.18%)
-
-
-
-scalaz.Functor[F] (1 ms, 0.01%)
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Unit)] => ?{def shouldEqual: ?} (17 ms, 0.22%)
-
-
-
-shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil] (2 ms, 0.03%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scala.collection.immutable.Vector[Int],A] (17 ms, 0.22%)
-
-
-
-shapeless.Generic.Aux[(Int, Char, Boolean, Double, String, Long),L1] (20 ms, 0.25%)
-
-
-
-org.scalactic.Equality[JsonExample.this.Json] (34 ms, 0.43%)
-
-
-
-String("Hello") => ?{def applyIso: ?} (1 ms, 0.01%)
-
-
-
-shapeless.ops.hlist.At[Long :: shapeless.HNil,shapeless._0] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[A] (53 ms, 0.67%)
-
-
-
-shapeless.Generic.Aux[Option[Int],SGen] (49 ms, 0.62%)
-
-
-
-eu.timepit.refined.api.RefType[F] (4 ms, 0.05%)
-
-
-
-Option[Double] => ?{def shouldEqual: ?} (2 ms, 0.03%)
-
-
-
-scalaz.Equal[Boolean] (1 ms, 0.01%)
-
-
-
-scalaz.Equal[String] (3 ms, 0.04%)
-
-
-
-shapeless.ops.coproduct.Selector[String :+: Boolean :+: shapeless.CNil,Int] (6 ms, 0.08%)
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int),shapeless.nat._1.N,A] (3 ms, 0.04%)
-
-
-
-Option[Int \/ String] => ?{def shouldEqual: ?} (13 ms, 0.17%)
-
-
-
-shapeless.Generic.Aux[(Int, String, Boolean),Int :: String :: Boolean :: shapeless.HNil] (41 ms, 0.52%)
-
-
-
-org.scalactic.Equality[Vector[Int]] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-scalaz.OneAnd[List,Int] => ?{def applyOptional: ?} (1 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (11 ms, 0.14%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.Tree[Int],A] (11 ms, 0.14%)
-
-
-
-Option[(Int, scala.collection.immutable.Vector[Int])] => ?{def shouldEqual: ?} (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-shapeless.Generic.Aux[scalaz.IList[SymbolicSyntaxExample.this.Article],SGen] (46 ms, 0.58%)
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(31)],RB] (29 ms, 0.37%)
-
-
-
-org.scalactic.Equality[(Int, Boolean, String)] (8 ms, 0.10%)
-
-
-
-eu.timepit.refined.api.RefType[F] (2 ms, 0.03%)
-
-
-
-scalaz.Equal[scala.collection.immutable.Vector[Int]] (1 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[A] (191 ms, 2.43%)
-or..
-
-
-scala.collection.immutable.Stream[Int] => ?{def applyTraversal: ?} (5 ms, 0.06%)
-
-
-
-monocle.function.Each[scala.collection.immutable.Stream[Int],A] (78 ms, 0.99%)
-
-
-
-org.scalacheck.Arbitrary[A] (143 ms, 1.82%)
-o..
-
-
-String("hello") => ?{def applyOptional: ?} (1 ms, 0.01%)
-
-
-
-scalaz.Equal[Option[List[Int]]] (23 ms, 0.29%)
-
-
-
-Int(123) => ?{def success: ?} (3 ms, 0.04%)
-
-
-
-scalaz.Equal[Boolean] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (6 ms, 0.08%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (9 ms, 0.11%)
-
-
-
-monocle.function.Reverse[scala.collection.immutable.Stream[Int],A] (52 ms, 0.66%)
-
-
-
-org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-scalaz.Equal[String] (1 ms, 0.01%)
-
-
-
-monocle.function.Index[List[JsonExample.this.Json],Int,A] (23 ms, 0.29%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A] (35 ms, 0.44%)
-
-
-
diff --git a/docs/monocle-example.html b/docs/monocle-example.html
deleted file mode 100644
index 75c8c8f..0000000
--- a/docs/monocle-example.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-
-
-
- Click node to highlight; Shift-scroll to zoom; Esc to unhighlight
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/monocle-example.svg b/docs/monocle-example.svg
deleted file mode 100644
index 24e0d24..0000000
--- a/docs/monocle-example.svg
+++ /dev/null
@@ -1,9059 +0,0 @@
-
-
-
-
-
-
-implicit-searches-1510255039114
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[(Char, Boolean, String, Double, Int, Int),H,T]
-
-shapeless.ops.hlist.IsHCons.Aux[(Char, Boolean, String, Double, Int, Int),H,T]
-1 times = 3ms
-
-
-
-scala.collection.immutable.Stream[Int] => ?{def applyOptional: ?}
-
-scala.collection.immutable.Stream[Int] => ?{def applyOptional: ?}
-5 times = 4ms
-
-
-
-shapeless.ops.coproduct.Selector[String :+: Boolean :+: shapeless.CNil,Int]
-
-shapeless.ops.coproduct.Selector[String :+: Boolean :+: shapeless.CNil,Int]
-1 times = 8ms
-
-
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Int]
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Int]
-1 times = 4ms
-
-
-
-shapeless.ops.coproduct.Selector[String :+: Boolean :+: shapeless.CNil,Int]->shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Int]
-
-
-
-
-
-((Int, Boolean)) => ?{def shouldEqual: ?}
-
-((Int, Boolean)) => ?{def shouldEqual: ?}
-2 times = 5ms
-
-
-
-org.scalactic.source.Position
-
-org.scalactic.source.Position
-718 times = 960ms
-
-
-
-((Int, Boolean)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalactic.Prettifier
-
-org.scalactic.Prettifier
-581 times = 248ms
-
-
-
-((Int, Boolean)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-((String, Int, Boolean, Double, Long, Char)) => ?{def shouldEqual: ?}
-
-((String, Int, Boolean, Double, Long, Char)) => ?{def shouldEqual: ?}
-2 times = 6ms
-
-
-
-((String, Int, Boolean, Double, Long, Char)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-((String, Int, Boolean, Double, Long, Char)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Equal[Int ==>> String]
-
-scalaz.Equal[Int ==>> String]
-1 times = 5ms
-
-
-
-scalaz.Order[Int]
-
-scalaz.Order[Int]
-32 times = 13ms
-
-
-
-scalaz.Equal[Int ==>> String]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Order[String]
-
-scalaz.Order[String]
-9 times = 3ms
-
-
-
-scalaz.Equal[Int ==>> String]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[String]
-
-scalaz.Equal[String]
-22 times = 22ms
-
-
-
-scalaz.Equal[Int ==>> String]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[Int]
-
-scalaz.Equal[Int]
-155 times = 147ms
-
-
-
-scalaz.Equal[Int ==>> String]->scalaz.Equal[Int]
-
-
-
-
-
-org.scalactic.Equality[Double]
-
-org.scalactic.Equality[Double]
-4 times = 6ms
-
-
-
-scalaz.Equal[Double]
-
-scalaz.Equal[Double]
-10 times = 8ms
-
-
-
-org.scalactic.Equality[Double]->scalaz.Equal[Double]
-
-
-
-
-
-(=> monocle.LensPolyExample.Foo.type) => ?{def q_=: ?}
-
-(=> monocle.LensPolyExample.Foo.type) => ?{def q_=: ?}
-3 times = 1ms
-
-
-
-eu.timepit.refined.api.RefType[scala.collection.immutable.Map]
-
-eu.timepit.refined.api.RefType[scala.collection.immutable.Map]
-16 times = 6ms
-
-
-
-scalaz.Equal[String :: Boolean :: shapeless.HNil]
-
-scalaz.Equal[String :: Boolean :: shapeless.HNil]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Double :: String :: Long :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Double :: String :: Long :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Int :: shapeless.HNil,Out]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Double :: String :: Long :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-
-
-
-
-monocle.function.Field1[(String, Int, Boolean),A]
-
-monocle.function.Field1[(String, Int, Boolean),A]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean),shapeless.nat._0.N,A]
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean),shapeless.nat._0.N,A]
-1 times = 2ms
-
-
-
-monocle.function.Field1[(String, Int, Boolean),A]->shapeless.ops.hlist.At.Aux[(String, Int, Boolean),shapeless.nat._0.N,A]
-
-
-
-
-
-monocle.function.Each[(Int, Int),A]
-
-monocle.function.Each[(Int, Int),A]
-1 times = 40ms
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,A]
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,A]
-1 times = 16ms
-
-
-
-monocle.function.Each[(Int, Int),A]->monocle.function.Each[Int :: Int :: shapeless.HNil,A]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int),SGen]
-
-shapeless.Generic.Aux[(Int, Int),SGen]
-1 times = 19ms
-
-
-
-monocle.function.Each[(Int, Int),A]->shapeless.Generic.Aux[(Int, Int),SGen]
-
-
-
-
-
-monocle.function.Each[Option[Int],A]
-
-monocle.function.Each[Option[Int],A]
-1 times = 25ms
-
-
-
-shapeless.Generic.Aux[Option[Int],SGen]
-
-shapeless.Generic.Aux[Option[Int],SGen]
-1 times = 23ms
-
-
-
-monocle.function.Each[Option[Int],A]->shapeless.Generic.Aux[Option[Int],SGen]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int]
-1 times = 6ms
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int]
-2 times = 8ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int]->monocle.function.Each[Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-Int :: shapeless.HNil => ?{def shouldEqual: ?}
-
-Int :: shapeless.HNil => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-Int :: shapeless.HNil => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Int :: shapeless.HNil => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Equal[monocle.generic.Example]
-
-scalaz.Equal[monocle.generic.Example]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[A]
-
-org.scalacheck.Arbitrary[A]
-1 times = 56ms
-
-
-
-Option[SymbolicSyntaxExample.this.Sofa] => ?{def shouldEqual: ?}
-
-Option[SymbolicSyntaxExample.this.Sofa] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-Option[SymbolicSyntaxExample.this.Sofa] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[SymbolicSyntaxExample.this.Sofa] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Init.Aux[Int :: String :: Boolean :: shapeless.HNil,I]
-
-shapeless.ops.hlist.Init.Aux[Int :: String :: Boolean :: shapeless.HNil,I]
-1 times = 12ms
-
-
-
-shapeless.ops.hlist.Init[String :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Init[String :: Boolean :: shapeless.HNil]
-2 times = 11ms
-
-
-
-shapeless.ops.hlist.Init.Aux[Int :: String :: Boolean :: shapeless.HNil,I]->shapeless.ops.hlist.Init[String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.At[Float :: Char :: Long :: shapeless.HNil,shapeless.nat._2]
-
-shapeless.ops.hlist.At[Float :: Char :: Long :: shapeless.HNil,shapeless.nat._2]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.At[Char :: Long :: shapeless.HNil,shapeless.nat._1]
-
-shapeless.ops.hlist.At[Char :: Long :: shapeless.HNil,shapeless.nat._1]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.At[Float :: Char :: Long :: shapeless.HNil,shapeless.nat._2]->shapeless.ops.hlist.At[Char :: Long :: shapeless.HNil,shapeless.nat._1]
-
-
-
-
-
-scalaz.Equal[Int :: String :: Boolean :: shapeless.HNil]
-
-scalaz.Equal[Int :: String :: Boolean :: shapeless.HNil]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: shapeless.HNil,Int :: shapeless.HNil,Out]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: shapeless.HNil,Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-monocle.function.Cons[List[SymbolicSyntaxExample.this.Article],A]
-
-monocle.function.Cons[List[SymbolicSyntaxExample.this.Article],A]
-1 times = 0ms
-
-
-
-scalaz.Equal[Int :: shapeless.HNil]
-
-scalaz.Equal[Int :: shapeless.HNil]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,Double :: String :: Long :: Boolean :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,Double :: String :: Long :: Boolean :: shapeless.HNil,Out]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Boolean :: Char :: Int :: shapeless.HNil,String :: Long :: Boolean :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Boolean :: Char :: Int :: shapeless.HNil,String :: Long :: Boolean :: shapeless.HNil,Out]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,Double :: String :: Long :: Boolean :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Double :: Boolean :: Char :: Int :: shapeless.HNil,String :: Long :: Boolean :: shapeless.HNil,Out]
-
-
-
-
-
-scalaz.Equal[(Int, Int, Int)]
-
-scalaz.Equal[(Int, Int, Int)]
-1 times = 6ms
-
-
-
-scalaz.Equal[(Int, Int, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[List[Int]]
-
-scalaz.Equal[List[Int]]
-12 times = 26ms
-
-
-
-scalaz.Equal[List[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA]
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA]
-1 times = 43ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R]
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R]
-1 times = 32ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA]->eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R]
-
-
-
-
-
-scalaz.Equal[Char]
-
-scalaz.Equal[Char]
-13 times = 11ms
-
-
-
-org.scalactic.Equality[Int :: String :: Boolean :: shapeless.HNil]
-
-org.scalactic.Equality[Int :: String :: Boolean :: shapeless.HNil]
-1 times = 3ms
-
-
-
-org.scalactic.Equality[Int :: String :: Boolean :: shapeless.HNil]->scalaz.Equal[Int :: String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-monocle.function.Curry[(Int, Int) => Int,G]
-
-monocle.function.Curry[(Int, Int) => Int,G]
-1 times = 2ms
-
-
-
-scala.collection.immutable.Stream[Int] => ?{def applyIso: ?}
-
-scala.collection.immutable.Stream[Int] => ?{def applyIso: ?}
-1 times = 0ms
-
-
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Float]
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Float]
-1 times = 8ms
-
-
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Float]
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Float]
-1 times = 4ms
-
-
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Float]->shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Float]
-
-
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.OneAnd[List,Int],H,T]
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.OneAnd[List,Int],H,T]
-1 times = 3ms
-
-
-
-String('Hello World') => ?{def applyOptional: ?}
-
-String('Hello World') => ?{def applyOptional: ?}
-1 times = 1ms
-
-
-
-monocle.function.Reverse[List[Int],A]
-
-monocle.function.Reverse[List[Int],A]
-1 times = 149ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[List[Int],A]
-
-shapeless.ops.tuple.Reverse.Aux[List[Int],A]
-1 times = 138ms
-
-
-
-monocle.function.Reverse[List[Int],A]->shapeless.ops.tuple.Reverse.Aux[List[Int],A]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[List[Int],A]
-
-shapeless.ops.hlist.Reverse.Aux[List[Int],A]
-1 times = 6ms
-
-
-
-monocle.function.Reverse[List[Int],A]->shapeless.ops.hlist.Reverse.Aux[List[Int],A]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,String,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,String,Out0]
-1 times = 0ms
-
-
-
-scalaz.Equal[S => A]
-
-scalaz.Equal[S => A]
-1 times = 58ms
-
-
-
-scalaz.Equal[S => A]->org.scalacheck.Arbitrary[A]
-
-
-
-
-
-scalaz.Equal[this.Out]
-
-scalaz.Equal[this.Out]
-1 times = 4ms
-
-
-
-scalaz.Equal[this.Out]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Equal[Boolean]
-
-scalaz.Equal[Boolean]
-32 times = 59ms
-
-
-
-scalaz.Equal[this.Out]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[this.Out]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[this.Out]->scalaz.Equal[Double]
-
-
-
-
-
-scalaz.Equal[this.Out]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Long]
-
-scalaz.Equal[Long]
-3 times = 2ms
-
-
-
-scalaz.Equal[this.Out]->scalaz.Equal[Long]
-
-
-
-
-
-shapeless.ops.hlist.Tupler[Char :: Int :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Char :: Int :: shapeless.HNil]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char, Boolean, Double, String, Long, Boolean),Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char, Boolean, Double, String, Long, Boolean),Out0]
-1 times = 0ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(31)],RB]
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(31)],RB]
-1 times = 43ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R]
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R]
-1 times = 36ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(31)],RB]->eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R]
-
-
-
-
-
-monocle.function.Field6[(String, Int, Boolean, Double, Long, Char),A]
-
-monocle.function.Field6[(String, Int, Boolean, Double, Long, Char),A]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._5.N,A]
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._5.N,A]
-1 times = 3ms
-
-
-
-monocle.function.Field6[(String, Int, Boolean, Double, Long, Char),A]->shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._5.N,A]
-
-
-
-
-
-scalaz.Equal[(Int, Boolean)]
-
-scalaz.Equal[(Int, Boolean)]
-2 times = 5ms
-
-
-
-scalaz.Equal[(Int, Boolean)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(Int, Boolean)]->scalaz.Equal[Int]
-
-
-
-
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,String :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,String :: Boolean :: shapeless.HNil]
-2 times = 6ms
-
-
-
-(=> Double) => Int
-
-(=> Double) => Int
-57 times = 12ms
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def applyIso: ?}
-
-scala.collection.immutable.Vector[Int] => ?{def applyIso: ?}
-1 times = 0ms
-
-
-
-Boolean :: Float :: Char :: Long :: shapeless.HNil => ?{def ::: ?}
-
-Boolean :: Float :: Char :: Long :: shapeless.HNil => ?{def ::: ?}
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Long :: Boolean :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Long :: Boolean :: shapeless.HNil,Out]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Boolean :: Char :: Int :: shapeless.HNil,String :: Long :: Boolean :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Long :: Boolean :: shapeless.HNil,Out]
-
-
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(15)],R]
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(15)],R]
-1 times = 18ms
-
-
-
-Numeric[Int]
-
-Numeric[Int]
-36 times = 109ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(15)],R]->Numeric[Int]
-
-
-
-
-
-shapeless.ops.nat.ToInt[Int(15)]
-
-shapeless.ops.nat.ToInt[Int(15)]
-4 times = 1ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(15)],R]->shapeless.ops.nat.ToInt[Int(15)]
-
-
-
-
-
-shapeless.Witness.Aux[Int(15)]
-
-shapeless.Witness.Aux[Int(15)]
-4 times = 21ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(15)],R]->shapeless.Witness.Aux[Int(15)]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: shapeless.HNil,L2]
-1 times = 7ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: shapeless.HNil,Out0]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: shapeless.HNil,Out0]
-
-
-
-
-
-String('Hello') => ?{def applyIso: ?}
-
-String('Hello') => ?{def applyIso: ?}
-2 times = 1ms
-
-
-
-monocle.function.Reverse[scala.collection.immutable.Stream[Int],A]
-
-monocle.function.Reverse[scala.collection.immutable.Stream[Int],A]
-1 times = 54ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scala.collection.immutable.Stream[Int],A]
-
-shapeless.ops.tuple.Reverse.Aux[scala.collection.immutable.Stream[Int],A]
-1 times = 45ms
-
-
-
-monocle.function.Reverse[scala.collection.immutable.Stream[Int],A]->shapeless.ops.tuple.Reverse.Aux[scala.collection.immutable.Stream[Int],A]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scala.collection.immutable.Stream[Int],A]
-
-shapeless.ops.hlist.Reverse.Aux[scala.collection.immutable.Stream[Int],A]
-1 times = 4ms
-
-
-
-monocle.function.Reverse[scala.collection.immutable.Stream[Int],A]->shapeless.ops.hlist.Reverse.Aux[scala.collection.immutable.Stream[Int],A]
-
-
-
-
-
-org.scalactic.Equality[(String, Int, Boolean)]
-
-org.scalactic.Equality[(String, Int, Boolean)]
-1 times = 3ms
-
-
-
-scalaz.Equal[(String, Int, Boolean)]
-
-scalaz.Equal[(String, Int, Boolean)]
-1 times = 3ms
-
-
-
-org.scalactic.Equality[(String, Int, Boolean)]->scalaz.Equal[(String, Int, Boolean)]
-
-
-
-
-
-Option[(Int, scala.collection.immutable.Vector[Int])] => ?{def shouldEqual: ?}
-
-Option[(Int, scala.collection.immutable.Vector[Int])] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-Option[(Int, scala.collection.immutable.Vector[Int])] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[(Int, scala.collection.immutable.Vector[Int])] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-(=> ComposeIssueExample.this.B[Nothing,String]) => ComposeIssueExample.this.A[String,?U]
-
-(=> ComposeIssueExample.this.B[Nothing,String]) => ComposeIssueExample.this.A[String,?U]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.At[Long :: shapeless.HNil,shapeless._0]
-
-shapeless.ops.hlist.At[Long :: shapeless.HNil,shapeless._0]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.At[Char :: Long :: shapeless.HNil,shapeless.nat._1]->shapeless.ops.hlist.At[Long :: shapeless.HNil,shapeless._0]
-
-
-
-
-
-scala.collection.immutable.Stream[Int] => ?{def shouldEqual: ?}
-
-scala.collection.immutable.Stream[Int] => ?{def shouldEqual: ?}
-5 times = 14ms
-
-
-
-scala.collection.immutable.Stream[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.immutable.Stream[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-ComposeIssueExample.this.B[Nothing,String] => ComposeIssueExample.this.B[String,?U]
-
-ComposeIssueExample.this.B[Nothing,String] => ComposeIssueExample.this.B[String,?U]
-1 times = 8ms
-
-
-
-Option[Int] => ?{def shouldEqual: ?}
-
-Option[Int] => ?{def shouldEqual: ?}
-30 times = 95ms
-
-
-
-eu.timepit.refined.api.RefType[F]
-
-eu.timepit.refined.api.RefType[F]
-1 times = 1ms
-
-
-
-Option[Int] => ?{def shouldEqual: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-Option[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.generic.Example => ?{def shouldEqual: ?}
-
-monocle.generic.Example => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-monocle.generic.Example => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-monocle.generic.Example => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-org.scalactic.Equality[Map[Int,String]]
-
-org.scalactic.Equality[Map[Int,String]]
-1 times = 3ms
-
-
-
-scalaz.Equal[Map[Int,String]]
-
-scalaz.Equal[Map[Int,String]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[Map[Int,String]]->scalaz.Equal[Map[Int,String]]
-
-
-
-
-
-monocle.function.FilterIndex[Map[String,JsonExample.this.Json],String,A]
-
-monocle.function.FilterIndex[Map[String,JsonExample.this.Json],String,A]
-1 times = 1ms
-
-
-
-monocle.function.Curry[F,Int => (Int => Int)]
-
-monocle.function.Curry[F,Int => (Int => Int)]
-1 times = 1ms
-
-
-
-scalaz.Functor[F$macro$26]
-
-scalaz.Functor[F$macro$26]
-1 times = 0ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R]->Numeric[Int]
-
-
-
-
-
-shapeless.ops.nat.ToInt[Int(0)]
-
-shapeless.ops.nat.ToInt[Int(0)]
-18 times = 16ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R]->shapeless.ops.nat.ToInt[Int(0)]
-
-
-
-
-
-shapeless.Witness.Aux[Int(0)]
-
-shapeless.Witness.Aux[Int(0)]
-18 times = 150ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Less[Int(0)],R]->shapeless.Witness.Aux[Int(0)]
-
-
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Option[String])] => ?{def shouldEqual: ?}
-
-scalaz.Id.Id[(StateExample.this.Person, Option[String])] => ?{def shouldEqual: ?}
-2 times = 5ms
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Option[String])] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Option[String])] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scala.collection.immutable.Vector[Int],A]
-
-shapeless.ops.tuple.Reverse.Aux[scala.collection.immutable.Vector[Int],A]
-1 times = 18ms
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Vector[Int],L1]
-
-shapeless.Generic.Aux[scala.collection.immutable.Vector[Int],L1]
-1 times = 14ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scala.collection.immutable.Vector[Int],A]->shapeless.Generic.Aux[scala.collection.immutable.Vector[Int],L1]
-
-
-
-
-
-monocle.function.Each[T[A],A]
-
-monocle.function.Each[T[A],A]
-1 times = 17ms
-
-
-
-scalaz.Traverse[S]
-
-scalaz.Traverse[S]
-1 times = 0ms
-
-
-
-monocle.function.Each[T[A],A]->scalaz.Traverse[S]
-
-
-
-
-
-monocle.function.FilterIndex[List[Int],Int,A]
-
-monocle.function.FilterIndex[List[Int],Int,A]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Int \&/ String]
-
-org.scalactic.Equality[Int &/ String]
-2 times = 14ms
-
-
-
-scalaz.Equal[Int \&/ String]
-
-scalaz.Equal[Int &/ String]
-2 times = 12ms
-
-
-
-org.scalactic.Equality[Int \&/ String]->scalaz.Equal[Int \&/ String]
-
-
-
-
-
-LensMonoExample.this.john.type => ?{def lens: ?}
-
-LensMonoExample.this.john.type => ?{def lens: ?}
-3 times = 2ms
-
-
-
-shapeless.Generic.Aux[(Int, String, Boolean),Int :: String :: Boolean :: shapeless.HNil]
-
-shapeless.Generic.Aux[(Int, String, Boolean),Int :: String :: Boolean :: shapeless.HNil]
-2 times = 41ms
-
-
-
-scalaz.Equal[A]
-
-scalaz.Equal[A]
-1 times = 0ms
-
-
-
-scalaz.Equal[A]->scalaz.Equal[S => A]
-
-
-
-
-
-scalaz.Equal[S => Option[A]]
-
-scalaz.Equal[S => Option[A]]
-1 times = 2ms
-
-
-
-scalaz.Equal[A]->scalaz.Equal[S => Option[A]]
-
-
-
-
-
-org.scalactic.Equality[List[Int]]
-
-org.scalactic.Equality[List[Int]]
-12 times = 37ms
-
-
-
-org.scalactic.Equality[List[Int]]->scalaz.Equal[List[Int]]
-
-
-
-
-
-((Boolean, String, Double, Int, Int)) => ?{def shouldEqual: ?}
-
-((Boolean, String, Double, Int, Int)) => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-((Boolean, String, Double, Int, Int)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Boolean, String, Double, Int, Int)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-org.scalactic.Equality[monocle.generic.Example]
-
-org.scalactic.Equality[monocle.generic.Example]
-1 times = 14ms
-
-
-
-org.scalactic.Equality[monocle.generic.Example]->scalaz.Equal[monocle.generic.Example]
-
-
-
-
-
-scalaz.Equal[CoproductExample.this.ISB]
-
-scalaz.Equal[CoproductExample.this.ISB]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[shapeless.HNil,SGen]
-1 times = 3ms
-
-
-
-scalaz.Equal[Point$3]
-
-scalaz.Equal[Point$3]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out0]
-1 times = 14ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out]
-1 times = 12ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out]
-
-
-
-
-
-String('One') => ?{def ->: ?}
-
-String('One') => ?{def ->: ?}
-30 times = 102ms
-
-
-
-String('One') => ?{def ->: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-Long => Int
-
-Long => Int
-57 times = 14ms
-
-
-
-Option[Boolean] => ?{def shouldEqual: ?}
-
-Option[Boolean] => ?{def shouldEqual: ?}
-2 times = 5ms
-
-
-
-Option[Boolean] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[Boolean] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Equal[(scala.collection.immutable.Vector[Int], Int)]
-
-scalaz.Equal[(scala.collection.immutable.Vector[Int], Int)]
-1 times = 4ms
-
-
-
-scalaz.Equal[scala.collection.immutable.Vector[Int]]
-
-scalaz.Equal[scala.collection.immutable.Vector[Int]]
-9 times = 21ms
-
-
-
-scalaz.Equal[(scala.collection.immutable.Vector[Int], Int)]->scalaz.Equal[scala.collection.immutable.Vector[Int]]
-
-
-
-
-
-scalaz.Equal[(scala.collection.immutable.Vector[Int], Int)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Functor[F$macro$34]
-
-scalaz.Functor[F$macro$34]
-1 times = 0ms
-
-
-
-((String, Int, Boolean)) => ?{def shouldEqual: ?}
-
-((String, Int, Boolean)) => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-((String, Int, Boolean)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-((String, Int, Boolean)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-String ==>> Int => ?{def shouldEqual: ?}
-
-String ==>> Int => ?{def shouldEqual: ?}
-6 times = 28ms
-
-
-
-String ==>> Int => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-eu.timepit.refined.api.RefType[scalaz.==>>]
-
-eu.timepit.refined.api.RefType[scalaz.==>>]
-14 times = 7ms
-
-
-
-String ==>> Int => ?{def shouldEqual: ?}->eu.timepit.refined.api.RefType[scalaz.==>>]
-
-
-
-
-
-String ==>> Int => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Snoc[List[Int],A]
-
-monocle.function.Snoc[List[Int],A]
-1 times = 0ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Option[Int])]]
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Option[Int])]]
-12 times = 29ms
-
-
-
-scalaz.Equal[StateExample.this.Person]
-
-scalaz.Equal[StateExample.this.Person]
-30 times = 19ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Option[Int])]]->scalaz.Equal[StateExample.this.Person]
-
-
-
-
-
-monocle.function.Empty[scala.collection.immutable.Vector[Int]]
-
-monocle.function.Empty[scala.collection.immutable.Vector[Int]]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[String :: Boolean :: shapeless.HNil]
-
-org.scalactic.Equality[String :: Boolean :: shapeless.HNil]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[String :: Boolean :: shapeless.HNil]->scalaz.Equal[String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-String('hop') => ?{def ->: ?}
-
-String('hop') => ?{def ->: ?}
-1 times = 16ms
-
-
-
-monocle.function.At[Int,monocle.refined.IntBits,A]
-
-monocle.function.At[Int,monocle.refined.IntBits,A]
-1 times = 1ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R]->Numeric[Int]
-
-
-
-
-
-shapeless.Witness.Aux[Int(31)]
-
-shapeless.Witness.Aux[Int(31)]
-14 times = 110ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R]->shapeless.Witness.Aux[Int(31)]
-
-
-
-
-
-shapeless.ops.nat.ToInt[Int(31)]
-
-shapeless.ops.nat.ToInt[Int(31)]
-14 times = 9ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(31)],R]->shapeless.ops.nat.ToInt[Int(31)]
-
-
-
-
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def shouldEqual: ?}
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-List[Int] => ?{def applyPrism: ?}
-
-List[Int] => ?{def applyPrism: ?}
-2 times = 2ms
-
-
-
-monocle.function.Each[String ==>> Int,A]
-
-monocle.function.Each[String ==>> Int,A]
-1 times = 11ms
-
-
-
-shapeless.Generic.Aux[String ==>> Int,SGen]
-
-shapeless.Generic.Aux[String ==>> Int,SGen]
-1 times = 7ms
-
-
-
-monocle.function.Each[String ==>> Int,A]->shapeless.Generic.Aux[String ==>> Int,SGen]
-
-
-
-
-
-scalaz.Validation[String,Int] => ?{def shouldEqual: ?}
-
-scalaz.Validation[String,Int] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-scalaz.Validation[String,Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Validation[String,Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Equal[Option[(scala.collection.immutable.Vector[Int], Int)]]
-
-scalaz.Equal[Option[(scala.collection.immutable.Vector[Int], Int)]]
-1 times = 6ms
-
-
-
-scalaz.Equal[Option[(scala.collection.immutable.Vector[Int], Int)]]->scalaz.Equal[(scala.collection.immutable.Vector[Int], Int)]
-
-
-
-
-
-org.scalactic.Equality[this.Out]
-
-org.scalactic.Equality[this.Out]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[this.Out]->scalaz.Equal[this.Out]
-
-
-
-
-
-monocle.function.Snoc[scala.collection.immutable.Stream[Int],A]
-
-monocle.function.Snoc[scala.collection.immutable.Stream[Int],A]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A]
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char, Boolean, Double, String, Long),Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char, Boolean, Double, String, Long),Out0]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char, Boolean, Double, String, Long),Out0]
-
-
-
-
-
-ReaderExample.this._age.type => ?{def ask: ?}
-
-ReaderExample.this._age.type => ?{def ask: ?}
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._1.N,A]
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._1.N,A]
-1 times = 12ms
-
-
-
-shapeless.ops.hlist.At[String :: Boolean :: shapeless.HNil,shapeless._0]
-
-shapeless.ops.hlist.At[String :: Boolean :: shapeless.HNil,shapeless._0]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._1.N,A]->shapeless.ops.hlist.At[String :: Boolean :: shapeless.HNil,shapeless._0]
-
-
-
-
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def applyLens: ?}
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def applyLens: ?}
-7 times = 5ms
-
-
-
-monocle.function.Curry[F,Double => (Int => Double)]
-
-monocle.function.Curry[F,Double => (Int => Double)]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,L2]
-1 times = 17ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out0]
-1 times = 14ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out0]
-
-
-
-
-
-(=> monocle.LensPolyExample.Manual.type) => ?{def q_=: ?}
-
-(=> monocle.LensPolyExample.Manual.type) => ?{def q_=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[(Int, Symbol),Double],((Symbol, Int), Double),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[(Int, Symbol),Double],((Symbol, Int), Double),That]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[(Boolean, String, Double, Int, Int)]
-
-org.scalactic.Equality[(Boolean, String, Double, Int, Int)]
-1 times = 6ms
-
-
-
-scalaz.Equal[(Boolean, String, Double, Int, Int)]
-
-scalaz.Equal[(Boolean, String, Double, Int, Int)]
-1 times = 6ms
-
-
-
-org.scalactic.Equality[(Boolean, String, Double, Int, Int)]->scalaz.Equal[(Boolean, String, Double, Int, Int)]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.Tree[Int],A]
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.Tree[Int],A]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.Tree[Int],Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.Tree[Int],Out0]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.Tree[Int],A]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.Tree[Int],Out0]
-
-
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def applyTraversal: ?}
-
-scala.collection.immutable.Vector[Int] => ?{def applyTraversal: ?}
-2 times = 1ms
-
-
-
-monocle.HttpRequestExample.HttpRequest => ?{def shouldBe: ?}
-
-monocle.HttpRequestExample.HttpRequest => ?{def shouldBe: ?}
-1 times = 3ms
-
-
-
-monocle.HttpRequestExample.HttpRequest => ?{def shouldBe: ?}->org.scalactic.source.Position
-
-
-
-
-
-monocle.HttpRequestExample.HttpRequest => ?{def shouldBe: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: Double :: String :: Long :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: Double :: String :: Long :: shapeless.HNil,Out]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,Double :: String :: Long :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,Double :: String :: Long :: shapeless.HNil,Out]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: Double :: String :: Long :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,Double :: String :: Long :: shapeless.HNil,Out]
-
-
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: shapeless.HNil,Int]
-3 times = 14ms
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int]->monocle.function.Each[Int :: shapeless.HNil,Int]
-
-
-
-
-
-scalaz.Order[List[Int]]
-
-scalaz.Order[List[Int]]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Option[Int])]]
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Option[Int])]]
-12 times = 52ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Option[Int])]]->scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Option[Int])]]
-
-
-
-
-
-StateExample.this._age.type => ?{def mod: ?}
-
-StateExample.this._age.type => ?{def mod: ?}
-1 times = 1ms
-
-
-
-String :: Boolean :: Float :: Char :: Long :: shapeless.HNil => ?{def ::: ?}
-
-String :: Boolean :: Float :: Char :: Long :: shapeless.HNil => ?{def ::: ?}
-1 times = 0ms
-
-
-
-org.scalactic.Equality[(Int, String, Boolean)]
-
-org.scalactic.Equality[(Int, String, Boolean)]
-1 times = 5ms
-
-
-
-scalaz.Equal[(Int, String, Boolean)]
-
-scalaz.Equal[(Int, String, Boolean)]
-1 times = 5ms
-
-
-
-org.scalactic.Equality[(Int, String, Boolean)]->scalaz.Equal[(Int, String, Boolean)]
-
-
-
-
-
-monocle.function.Each[shapeless.HNil,Int]
-
-monocle.function.Each[shapeless.HNil,Int]
-3 times = 3ms
-
-
-
-shapeless.ops.hlist.Prepend.Aux[this.Out,this.Out :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Prepend.Aux[this.Out,this.Out :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-1 times = 20ms
-
-
-
-shapeless.ops.hlist.Prepend[String :: shapeless.HNil,this.Out :: shapeless.HNil]
-
-shapeless.ops.hlist.Prepend[String :: shapeless.HNil,this.Out :: shapeless.HNil]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.Prepend.Aux[this.Out,this.Out :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]->shapeless.ops.hlist.Prepend[String :: shapeless.HNil,this.Out :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.At[String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._4]
-
-shapeless.ops.hlist.At[String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._4]
-1 times = 11ms
-
-
-
-shapeless.ops.hlist.At[Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._3]
-
-shapeless.ops.hlist.At[Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._3]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.At[String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._4]->shapeless.ops.hlist.At[Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._3]
-
-
-
-
-
-scalaz.Equal[scala.collection.immutable.Set[Int]]
-
-scalaz.Equal[scala.collection.immutable.Set[Int]]
-2 times = 3ms
-
-
-
-scalaz.Equal[scala.collection.immutable.Set[Int]]->scalaz.Order[Int]
-
-
-
-
-
-org.scalactic.Equality[Char]
-
-org.scalactic.Equality[Char]
-3 times = 6ms
-
-
-
-org.scalactic.Equality[Char]->scalaz.Equal[Char]
-
-
-
-
-
-monocle.function.Reverse[scalaz.Tree[Int],A]
-
-monocle.function.Reverse[scalaz.Tree[Int],A]
-1 times = 20ms
-
-
-
-monocle.function.Reverse[scalaz.Tree[Int],A]->shapeless.ops.hlist.Reverse.Aux[scalaz.Tree[Int],A]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.Tree[Int],A]
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.Tree[Int],A]
-1 times = 12ms
-
-
-
-monocle.function.Reverse[scalaz.Tree[Int],A]->shapeless.ops.tuple.Reverse.Aux[scalaz.Tree[Int],A]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean),A]
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean),A]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char, Boolean),Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char, Boolean),Out0]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean),A]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char, Boolean),Out0]
-
-
-
-
-
-monocle.function.Each[List[Int],A]
-
-monocle.function.Each[List[Int],A]
-1 times = 120ms
-
-
-
-shapeless.Generic.Aux[List[Int],SGen]
-
-shapeless.Generic.Aux[List[Int],SGen]
-1 times = 118ms
-
-
-
-monocle.function.Each[List[Int],A]->shapeless.Generic.Aux[List[Int],SGen]
-
-
-
-
-
-String('Bar') => ?{def ->: ?}
-
-String('Bar') => ?{def ->: ?}
-2 times = 13ms
-
-
-
-String('Bar') => ?{def ->: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-shapeless.ops.hlist.Last[Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Last[Boolean :: shapeless.HNil]
-2 times = 10ms
-
-
-
-shapeless.ops.hlist.Last[shapeless.HNil]
-
-shapeless.ops.hlist.Last[shapeless.HNil]
-2 times = 0ms
-
-
-
-shapeless.ops.hlist.Last[Boolean :: shapeless.HNil]->shapeless.ops.hlist.Last[shapeless.HNil]
-
-
-
-
-
-monocle.function.Snoc[List[Int],Int]
-
-monocle.function.Snoc[List[Int],Int]
-1 times = 1ms
-
-
-
-Stream[scalaz.Tree[Int]] => ?{def shouldEqual: ?}
-
-Stream[scalaz.Tree[Int]] => ?{def shouldEqual: ?}
-3 times = 9ms
-
-
-
-Stream[scalaz.Tree[Int]] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Stream[scalaz.Tree[Int]] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-org.scalactic.Equality[Stream[scalaz.Tree[Int]]]
-
-org.scalactic.Equality[Stream[scalaz.Tree[Int]]]
-3 times = 12ms
-
-
-
-scalaz.Equal[Stream[scalaz.Tree[Int]]]
-
-scalaz.Equal[Stream[scalaz.Tree[Int]]]
-3 times = 10ms
-
-
-
-org.scalactic.Equality[Stream[scalaz.Tree[Int]]]->scalaz.Equal[Stream[scalaz.Tree[Int]]]
-
-
-
-
-
-shapeless.ops.hlist.Prepend.Aux[Int :: shapeless.HNil,String :: Boolean :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Prepend.Aux[Int :: shapeless.HNil,String :: Boolean :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-2 times = 46ms
-
-
-
-shapeless.ops.hlist.Prepend.Aux[Int :: shapeless.HNil,String :: Boolean :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]->shapeless.ops.hlist.Prepend[shapeless.HNil,String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._1.N,A]
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._1.N,A]
-1 times = 3ms
-
-
-
-(=> ComposeIssueExample.this.aI2S.type) => ?{def compose(x$1: ? >: ComposeIssueExample.this.B[Nothing,String]): ?}
-
-(=> ComposeIssueExample.this.aI2S.type) => ?{def compose(x$1: ? >: ComposeIssueExample.this.B[Nothing,String]): ?}
-1 times = 0ms
-
-
-
-scalaz.Equal[SymbolicSyntaxExample.this.Store]
-
-scalaz.Equal[SymbolicSyntaxExample.this.Store]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def applyLens: ?}
-
-scala.collection.immutable.Map[String,Int] => ?{def applyLens: ?}
-4 times = 15ms
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def applyLens: ?}->eu.timepit.refined.api.RefType[scala.collection.immutable.Map]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,L2]
-1 times = 18ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out0]
-
-
-
-
-
-monocle.LensPolyExample.Manual.type => ?{def q_=: ?}
-
-monocle.LensPolyExample.Manual.type => ?{def q_=: ?}
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Tupler.Aux[Int :: String :: Boolean :: shapeless.HNil,R]
-
-shapeless.ops.hlist.Tupler.Aux[Int :: String :: Boolean :: shapeless.HNil,R]
-1 times = 5ms
-
-
-
-scalaz.Functor[F$macro$14]
-
-scalaz.Functor[F$macro$14]
-1 times = 0ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(15)],RB]
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(15)],RB]
-1 times = 22ms
-
-
-
-eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(15)],RB]->eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.Greater[Int(15)],R]
-
-
-
-
-
-monocle.function.Index[Map[String,JsonExample.this.Json],String,A]
-
-monocle.function.Index[Map[String,JsonExample.this.Json],String,A]
-1 times = 1ms
-
-
-
-monocle.function.Index[scalaz.OneAnd[List,Int],Int,A]
-
-monocle.function.Index[scalaz.OneAnd[List,Int],Int,A]
-1 times = 2ms
-
-
-
-monocle.function.Index[List[Int],Int,Int]
-
-monocle.function.Index[List[Int],Int,Int]
-2 times = 1ms
-
-
-
-monocle.function.Index[scalaz.OneAnd[List,Int],Int,A]->monocle.function.Index[List[Int],Int,Int]
-
-
-
-
-
-org.scalactic.Equality[CoproductExample.this.ISB]
-
-org.scalactic.Equality[CoproductExample.this.ISB]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[CoproductExample.this.ISB]->scalaz.Equal[CoproductExample.this.ISB]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long)]
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long)]
-1 times = 41ms
-
-
-
-shapeless.Generic.Aux[this.Out,L1]
-
-shapeless.Generic.Aux[this.Out,L1]
-1 times = 20ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long)]->shapeless.Generic.Aux[this.Out,L1]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,L2]
-1 times = 15ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long)]->shapeless.ops.hlist.Reverse.Aux[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,L2]
-
-
-
-
-
-shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil]
-1 times = 2ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long)]->shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil]
-
-
-
-
-
-shapeless.Generic.Aux[List[Int],L1]
-
-shapeless.Generic.Aux[List[Int],L1]
-1 times = 134ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[List[Int],A]->shapeless.Generic.Aux[List[Int],L1]
-
-
-
-
-
-Option[Unit] => ?{def shouldEqual: ?}
-
-Option[Unit] => ?{def shouldEqual: ?}
-6 times = 15ms
-
-
-
-Option[Unit] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[Unit] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-String => ?{def shouldEqual: ?}
-
-String => ?{def shouldEqual: ?}
-6 times = 25ms
-
-
-
-String => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-String => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Out]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-monocle.function.Cons1[(Int, Boolean),H,T]
-
-monocle.function.Cons1[(Int, Boolean),H,T]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[(Int, Boolean),H,T]
-
-shapeless.ops.hlist.IsHCons.Aux[(Int, Boolean),H,T]
-1 times = 3ms
-
-
-
-monocle.function.Cons1[(Int, Boolean),H,T]->shapeless.ops.hlist.IsHCons.Aux[(Int, Boolean),H,T]
-
-
-
-
-
-shapeless.ops.hlist.Tupler[Int :: Char :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Int :: Char :: shapeless.HNil]
-1 times = 2ms
-
-
-
-scalaz.Functor[F$macro$24]
-
-scalaz.Functor[F$macro$24]
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$131]
-
-scalaz.Functor[F$macro$131]
-1 times = 2ms
-
-
-
-Option[String] => ?{def shouldEqual: ?}
-
-Option[String] => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-Option[String] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[String] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Cons[scala.collection.immutable.Vector[Int],Int]
-
-monocle.function.Cons[scala.collection.immutable.Vector[Int],Int]
-1 times = 11ms
-
-
-
-String('age') => ?{def ->: ?}
-
-String('age') => ?{def ->: ?}
-20 times = 24ms
-
-
-
-scalaz.Equal[(Int, scala.collection.immutable.Vector[Int])]
-
-scalaz.Equal[(Int, scala.collection.immutable.Vector[Int])]
-1 times = 4ms
-
-
-
-scalaz.Equal[(Int, scala.collection.immutable.Vector[Int])]->scalaz.Equal[scala.collection.immutable.Vector[Int]]
-
-
-
-
-
-scalaz.Equal[(Int, scala.collection.immutable.Vector[Int])]->scalaz.Equal[Int]
-
-
-
-
-
-shapeless.Generic.Aux[Int :: Int :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[Int :: Int :: shapeless.HNil,SGen]
-1 times = 4ms
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,A]->shapeless.Generic.Aux[Int :: Int :: shapeless.HNil,SGen]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,A]->monocle.function.Each[Int :: shapeless.HNil,Int]
-
-
-
-
-
-scalaz.Equal[Map[Int,String]]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[Map[Int,String]]->scalaz.Equal[String]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._4,this.Out,(this.Out, String :: Boolean :: Float :: Char :: Long :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._4,this.Out,(this.Out, String :: Boolean :: Float :: Char :: Long :: shapeless.HNil)]
-1 times = 23ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._3,this.Out,(this.Out, Boolean :: Float :: Char :: Long :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._3,this.Out,(this.Out, Boolean :: Float :: Char :: Long :: shapeless.HNil)]
-1 times = 18ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._4,this.Out,(this.Out, String :: Boolean :: Float :: Char :: Long :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._3,this.Out,(this.Out, Boolean :: Float :: Char :: Long :: shapeless.HNil)]
-
-
-
-
-
-monocle.function.Empty[List[Int]]
-
-monocle.function.Empty[List[Int]]
-1 times = 0ms
-
-
-
-Int(4) => ?{def applyLens: ?}
-
-Int(4) => ?{def applyLens: ?}
-1 times = 18ms
-
-
-
-Int(4) => ?{def applyLens: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-StateExample.this._age.type => ?{def assign_: ?}
-
-StateExample.this._age.type => ?{def assign_: ?}
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,this.Out :: shapeless.HNil]
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,this.Out :: shapeless.HNil]
-1 times = 1ms
-
-
-
-scalaz.Functor[F$macro$6]
-
-scalaz.Functor[F$macro$6]
-1 times = 0ms
-
-
-
-eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-18 times = 23ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Boolean :: Char :: Int :: shapeless.HNil,String :: Long :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Boolean :: Char :: Int :: shapeless.HNil,String :: Long :: shapeless.HNil,Out]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Long :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Long :: shapeless.HNil,Out]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Boolean :: Char :: Int :: shapeless.HNil,String :: Long :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Long :: shapeless.HNil,Out]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._0.N,A]
-
-shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._0.N,A]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: shapeless.HNil,Out]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-org.scalactic.Equality[scalaz.OneAnd[List,Int]]
-
-org.scalactic.Equality[scalaz.OneAnd[List,Int]]
-1 times = 9ms
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]
-1 times = 9ms
-
-
-
-org.scalactic.Equality[scalaz.OneAnd[List,Int]]->scalaz.Equal[scalaz.OneAnd[List,Int]]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Char),L1]
-
-shapeless.Generic.Aux[(Int, Char),L1]
-1 times = 10ms
-
-
-
-((Int, Int, Int, Int, Int, Int)) => ?{def applyTraversal: ?}
-
-((Int, Int, Int, Int, Int, Int)) => ?{def applyTraversal: ?}
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[(Int, Boolean, String),H,T]
-
-shapeless.ops.hlist.IsHCons.Aux[(Int, Boolean, String),H,T]
-1 times = 3ms
-
-
-
-org.scalactic.Equality[Option[(List[Int], Int)]]
-
-org.scalactic.Equality[Option[(List[Int], Int)]]
-2 times = 16ms
-
-
-
-scalaz.Equal[Option[(List[Int], Int)]]
-
-scalaz.Equal[Option[(List[Int], Int)]]
-2 times = 14ms
-
-
-
-org.scalactic.Equality[Option[(List[Int], Int)]]->scalaz.Equal[Option[(List[Int], Int)]]
-
-
-
-
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Int]
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Int]
-1 times = 10ms
-
-
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Int]
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Int]
-1 times = 4ms
-
-
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Int]->shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Int]
-
-
-
-
-
-StateExample.this._nameSet.type => ?{def mod_: ?}
-
-StateExample.this._nameSet.type => ?{def mod_: ?}
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._0.N,Int,(Int, Int :: String :: Boolean :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._0.N,Int,(Int, Int :: String :: Boolean :: shapeless.HNil)]
-2 times = 8ms
-
-
-
-Int(555) => ?{def success: ?}
-
-Int(555) => ?{def success: ?}
-1 times = 0ms
-
-
-
-scalaz.IList[Int] => ?{def shouldEqual: ?}
-
-scalaz.IList[Int] => ?{def shouldEqual: ?}
-6 times = 20ms
-
-
-
-scalaz.IList[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.IList[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,List[Int],Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,List[Int],Out0]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[List[Int],A]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,List[Int],Out0]
-
-
-
-
-
-String('Hello') => ?{def right: ?}
-
-String('Hello') => ?{def right: ?}
-1 times = 0ms
-
-
-
-(=> scalaz.Validation[?X,Int]) => scalaz.Validation[E,A]
-
-(=> scalaz.Validation[?X,Int]) => scalaz.Validation[E,A]
-1 times = 0ms
-
-
-
-monocle.function.Reverse[(Int, Char),A]
-
-monocle.function.Reverse[(Int, Char),A]
-1 times = 62ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char),A]
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char),A]
-1 times = 3ms
-
-
-
-monocle.function.Reverse[(Int, Char),A]->shapeless.ops.hlist.Reverse.Aux[(Int, Char),A]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),A]
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),A]
-1 times = 28ms
-
-
-
-monocle.function.Reverse[(Int, Char),A]->shapeless.ops.tuple.Reverse.Aux[(Int, Char),A]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char)]
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char)]
-1 times = 27ms
-
-
-
-monocle.function.Reverse[(Int, Char),A]->shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char)]
-
-
-
-
-
-scalaz.Functor[F$macro$9]
-
-scalaz.Functor[F$macro$9]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Stream[Int],SGen]
-
-shapeless.Generic.Aux[scala.collection.immutable.Stream[Int],SGen]
-1 times = 76ms
-
-
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._5.N,A]
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._5.N,A]
-1 times = 16ms
-
-
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._5.N,A]->shapeless.ops.hlist.At[String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._4]
-
-
-
-
-
-LensPolyExample.this.Foo[Symbol,Int] => ?{def shouldEqual: ?}
-
-LensPolyExample.this.Foo[Symbol,Int] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-LensPolyExample.this.Foo[Symbol,Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-LensPolyExample.this.Foo[Symbol,Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Equal[(Int, String, Boolean)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(Int, String, Boolean)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Int, String, Boolean)]->scalaz.Equal[Int]
-
-
-
-
-
-((Char, Boolean, String, Double, Int)) => ?{def shouldEqual: ?}
-
-((Char, Boolean, String, Double, Int)) => ?{def shouldEqual: ?}
-1 times = 4ms
-
-
-
-((Char, Boolean, String, Double, Int)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Char, Boolean, String, Double, Int)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scala.collection.immutable.Set[Int] => ?{def applyLens: ?}
-
-scala.collection.immutable.Set[Int] => ?{def applyLens: ?}
-4 times = 25ms
-
-
-
-scala.collection.immutable.Set[Int] => ?{def applyLens: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-List[?A] => S
-
-List[?A] => S
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Char :: Long :: shapeless.HNil,shapeless.nat._2,this.Out,(this.Out, Float :: Char :: Long :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Char :: Long :: shapeless.HNil,shapeless.nat._2,this.Out,(this.Out, Float :: Char :: Long :: shapeless.HNil)]
-1 times = 13ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Long :: shapeless.HNil,shapeless.nat._1,this.Out,(this.Out, Char :: Long :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Long :: shapeless.HNil,shapeless.nat._1,this.Out,(this.Out, Char :: Long :: shapeless.HNil)]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Char :: Long :: shapeless.HNil,shapeless.nat._2,this.Out,(this.Out, Float :: Char :: Long :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Char :: Long :: shapeless.HNil,shapeless.nat._1,this.Out,(this.Out, Char :: Long :: shapeless.HNil)]
-
-
-
-
-
-((Int, Int)) => ?{def applyTraversal: ?}
-
-((Int, Int)) => ?{def applyTraversal: ?}
-1 times = 0ms
-
-
-
-monocle.function.Snoc1[Int :: String :: Boolean :: shapeless.HNil,I,L]
-
-monocle.function.Snoc1[Int :: String :: Boolean :: shapeless.HNil,I,L]
-1 times = 57ms
-
-
-
-monocle.function.Snoc1[Int :: String :: Boolean :: shapeless.HNil,I,L]->shapeless.ops.hlist.Init.Aux[Int :: String :: Boolean :: shapeless.HNil,I]
-
-
-
-
-
-monocle.function.Snoc1[Int :: String :: Boolean :: shapeless.HNil,I,L]->shapeless.ops.hlist.Prepend.Aux[this.Out,this.Out :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.Last.Aux[Int :: String :: Boolean :: shapeless.HNil,L]
-
-shapeless.ops.hlist.Last.Aux[Int :: String :: Boolean :: shapeless.HNil,L]
-1 times = 13ms
-
-
-
-monocle.function.Snoc1[Int :: String :: Boolean :: shapeless.HNil,I,L]->shapeless.ops.hlist.Last.Aux[Int :: String :: Boolean :: shapeless.HNil,L]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Out]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: Double :: String :: Long :: shapeless.HNil,Out]
-
-
-
-
-
-org.scalactic.Equality[String]
-
-org.scalactic.Equality[String]
-13 times = 24ms
-
-
-
-org.scalactic.Equality[String]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Functor[F$macro$19]
-
-scalaz.Functor[F$macro$19]
-1 times = 0ms
-
-
-
-String @@ Nothing => ?{def shouldEqual: ?}
-
-String @@ Nothing => ?{def shouldEqual: ?}
-1 times = 4ms
-
-
-
-String @@ Nothing => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-String @@ Nothing => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Last[String :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Last[String :: Boolean :: shapeless.HNil]
-2 times = 13ms
-
-
-
-shapeless.ops.hlist.Last[String :: Boolean :: shapeless.HNil]->shapeless.ops.hlist.Last[Boolean :: shapeless.HNil]
-
-
-
-
-
-org.scalactic.Equality[(Char, Boolean, String, Double, Int)]
-
-org.scalactic.Equality[(Char, Boolean, String, Double, Int)]
-1 times = 7ms
-
-
-
-scalaz.Equal[(Char, Boolean, String, Double, Int)]
-
-scalaz.Equal[(Char, Boolean, String, Double, Int)]
-1 times = 6ms
-
-
-
-org.scalactic.Equality[(Char, Boolean, String, Double, Int)]->scalaz.Equal[(Char, Boolean, String, Double, Int)]
-
-
-
-
-
-monocle.function.FilterIndex[Map[String,String],String,A]
-
-monocle.function.FilterIndex[Map[String,String],String,A]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Int)]]
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Int)]]
-6 times = 36ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Int)]]
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Int)]]
-6 times = 15ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Int)]]->scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Int)]]
-
-
-
-
-
-Int => ?{def shouldEqual: ?}
-
-Int => ?{def shouldEqual: ?}
-26 times = 101ms
-
-
-
-Int => ?{def shouldEqual: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-Int => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Int => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scala.collection.immutable.Vector[Int],A]
-
-shapeless.ops.hlist.Reverse.Aux[scala.collection.immutable.Vector[Int],A]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scala.collection.immutable.Vector[Int],Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scala.collection.immutable.Vector[Int],Out0]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scala.collection.immutable.Vector[Int],A]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scala.collection.immutable.Vector[Int],Out0]
-
-
-
-
-
-scalaz.Equal[Option[Boolean]]
-
-scalaz.Equal[Option[Boolean]]
-2 times = 4ms
-
-
-
-scalaz.Equal[Option[Boolean]]->scalaz.Equal[Boolean]
-
-
-
-
-
-monocle.function.At[scala.collection.immutable.Set[Int],Int,A]
-
-monocle.function.At[scala.collection.immutable.Set[Int],Int,A]
-1 times = 1ms
-
-
-
-scalaz.IList[Int] => ?{def applyOptional: ?}
-
-scalaz.IList[Int] => ?{def applyOptional: ?}
-4 times = 3ms
-
-
-
-monocle.function.At[scala.collection.immutable.Map[String,Int],String,A]
-
-monocle.function.At[scala.collection.immutable.Map[String,Int],String,A]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Out]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-
-
-
-
-shapeless.Generic.Aux[Int :: String :: Boolean :: shapeless.HNil,L1]
-
-shapeless.Generic.Aux[Int :: String :: Boolean :: shapeless.HNil,L1]
-1 times = 3ms
-
-
-
-ReaderExample.this._age.type => ?{def asks: ?}
-
-ReaderExample.this._age.type => ?{def asks: ?}
-1 times = 0ms
-
-
-
-F[scala.collection.immutable.Map[String,JsonExample.this.Json]] => ?{def map: ?}
-
-F[scala.collection.immutable.Map[String,JsonExample.this.Json]] => ?{def map: ?}
-1 times = 3ms
-
-
-
-scalaz.Functor[F]
-
-scalaz.Functor[F]
-4 times = 4ms
-
-
-
-F[scala.collection.immutable.Map[String,JsonExample.this.Json]] => ?{def map: ?}->scalaz.Functor[F]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]->scalaz.Equal[List[Int]]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]->scalaz.Order[List[Int]]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Option[Int]]
-
-scalaz.Equal[Option[Int]]
-30 times = 69ms
-
-
-
-scalaz.Equal[Option[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-(=> String) => Double
-
-(=> String) => Double
-1 times = 0ms
-
-
-
-monocle.function.Empty[Int ==>> String]
-
-monocle.function.Empty[Int ==>> String]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,L2]
-1 times = 14ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Out0]
-1 times = 10ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Out0]
-
-
-
-
-
-monocle.function.At[Map[String,String],String,A]
-
-monocle.function.At[Map[String,String],String,A]
-1 times = 1ms
-
-
-
-Int(0) => ?{def applyLens: ?}
-
-Int(0) => ?{def applyLens: ?}
-2 times = 20ms
-
-
-
-Int(0) => ?{def applyLens: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-shapeless.Generic.Aux[scalaz.Tree[Int],L1]
-
-shapeless.Generic.Aux[scalaz.Tree[Int],L1]
-1 times = 8ms
-
-
-
-String ==>> Int => ?{def applyOptional: ?}
-
-String ==>> Int => ?{def applyOptional: ?}
-2 times = 1ms
-
-
-
-scalaz.OneAnd[List,Int] => ?{def applyLens: ?}
-
-scalaz.OneAnd[List,Int] => ?{def applyLens: ?}
-2 times = 1ms
-
-
-
-monocle.function.Curry[(Int, Double) => Double,G]
-
-monocle.function.Curry[(Int, Double) => Double,G]
-1 times = 1ms
-
-
-
-StateExample.this._oldAge.type => ?{def assign_: ?}
-
-StateExample.this._oldAge.type => ?{def assign_: ?}
-2 times = 2ms
-
-
-
-scalaz.Equal[scalaz.IList[Int]]
-
-scalaz.Equal[scalaz.IList[Int]]
-6 times = 11ms
-
-
-
-scalaz.Equal[scalaz.IList[Int]]->scalaz.Order[Int]
-
-
-
-
-
-Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil => ?{def applyLens: ?}
-
-Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil => ?{def applyLens: ?}
-1 times = 0ms
-
-
-
-scalaz.Equal[scalaz.Tree[Int]]
-
-scalaz.Equal[scalaz.Tree[Int]]
-10 times = 19ms
-
-
-
-scalaz.Equal[scalaz.Tree[Int]]->scalaz.Order[Int]
-
-
-
-
-
-monocle.function.Each[scalaz.IList[SymbolicSyntaxExample.this.Article],A]
-
-monocle.function.Each[scalaz.IList[SymbolicSyntaxExample.this.Article],A]
-1 times = 27ms
-
-
-
-shapeless.Generic.Aux[scalaz.IList[SymbolicSyntaxExample.this.Article],SGen]
-
-shapeless.Generic.Aux[scalaz.IList[SymbolicSyntaxExample.this.Article],SGen]
-1 times = 25ms
-
-
-
-monocle.function.Each[scalaz.IList[SymbolicSyntaxExample.this.Article],A]->shapeless.Generic.Aux[scalaz.IList[SymbolicSyntaxExample.this.Article],SGen]
-
-
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean),A]
-
-monocle.function.Reverse[(Int, Char, Boolean),A]
-1 times = 66ms
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean),A]->shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean),A]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean),A]
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean),A]
-1 times = 30ms
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean),A]->shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean),A]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean)]
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean)]
-1 times = 29ms
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean),A]->shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean)]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-1 times = 13ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.Init.Aux[(Int, Boolean, String),I]
-
-shapeless.ops.hlist.Init.Aux[(Int, Boolean, String),I]
-1 times = 3ms
-
-
-
-scalaz.OneAnd[List,Int] => ?{def shouldEqual: ?}
-
-scalaz.OneAnd[List,Int] => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-scalaz.OneAnd[List,Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.OneAnd[List,Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long, Boolean),A]
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long, Boolean),A]
-1 times = 103ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A]
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A]
-1 times = 48ms
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long, Boolean),A]->shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long, Boolean)]
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long, Boolean)]
-1 times = 46ms
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long, Boolean),A]->shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long, Boolean)]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A]
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A]
-1 times = 4ms
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long, Boolean),A]->shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A]
-
-
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Stream[Int],L1]
-
-shapeless.Generic.Aux[scala.collection.immutable.Stream[Int],L1]
-1 times = 42ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scala.collection.immutable.Stream[Int],A]->shapeless.Generic.Aux[scala.collection.immutable.Stream[Int],L1]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A]
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A]
-1 times = 44ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A]->shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,L2]
-
-
-
-
-
-shapeless.ops.hlist.Tupler[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil]
-1 times = 2ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A]->shapeless.ops.hlist.Tupler[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Char, Boolean, Double, String, Long),L1]
-
-shapeless.Generic.Aux[(Int, Char, Boolean, Double, String, Long),L1]
-1 times = 20ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A]->shapeless.Generic.Aux[(Int, Char, Boolean, Double, String, Long),L1]
-
-
-
-
-
-scalaz.Tree[Int] => ?{def shouldEqual: ?}
-
-scalaz.Tree[Int] => ?{def shouldEqual: ?}
-6 times = 16ms
-
-
-
-scalaz.Tree[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Tree[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-(=> String) => Int
-
-(=> String) => Int
-52 times = 10ms
-
-
-
-scalaz.Tree[Int] => ?{def applyIso: ?}
-
-scalaz.Tree[Int] => ?{def applyIso: ?}
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-scalaz.Equal[Stream[Int]]
-
-scalaz.Equal[Stream[Int]]
-1 times = 1ms
-
-
-
-scalaz.Equal[Stream[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),SGen]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),SGen]
-1 times = 28ms
-
-
-
-org.scalactic.Equality[JsonExample.this.Json]
-
-org.scalactic.Equality[JsonExample.this.Json]
-6 times = 36ms
-
-
-
-scalaz.Equal[JsonExample.this.Json]
-
-scalaz.Equal[JsonExample.this.Json]
-6 times = 23ms
-
-
-
-org.scalactic.Equality[JsonExample.this.Json]->scalaz.Equal[JsonExample.this.Json]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out]
-1 times = 10ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,Double :: String :: Long :: Boolean :: shapeless.HNil,Out]
-
-
-
-
-
-(=> monocle.LensPolyExample.Semi.type) => ?{def q_=: ?}
-
-(=> monocle.LensPolyExample.Semi.type) => ?{def q_=: ?}
-3 times = 0ms
-
-
-
-monocle.function.Each[scala.collection.immutable.Vector[Int],A]
-
-monocle.function.Each[scala.collection.immutable.Vector[Int],A]
-1 times = 24ms
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Vector[Int],SGen]
-
-shapeless.Generic.Aux[scala.collection.immutable.Vector[Int],SGen]
-1 times = 22ms
-
-
-
-monocle.function.Each[scala.collection.immutable.Vector[Int],A]->shapeless.Generic.Aux[scala.collection.immutable.Vector[Int],SGen]
-
-
-
-
-
-shapeless.ops.coproduct.Selector[shapeless.CNil,Boolean]
-
-shapeless.ops.coproduct.Selector[shapeless.CNil,Boolean]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Option[Unit]]
-
-org.scalactic.Equality[Option[Unit]]
-6 times = 16ms
-
-
-
-scalaz.Equal[Option[Unit]]
-
-scalaz.Equal[Option[Unit]]
-6 times = 12ms
-
-
-
-org.scalactic.Equality[Option[Unit]]->scalaz.Equal[Option[Unit]]
-
-
-
-
-
-(=> scalaz.Validation[String,?X]) => scalaz.Validation[E,A]
-
-(=> scalaz.Validation[String,?X]) => scalaz.Validation[E,A]
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$36]
-
-scalaz.Functor[F$macro$36]
-1 times = 0ms
-
-
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Int]
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Int]
-1 times = 13ms
-
-
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Int]->shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Int]
-
-
-
-
-
-monocle.LensPolyExample.Foo.type => ?{def q_=: ?}
-
-monocle.LensPolyExample.Foo.type => ?{def q_=: ?}
-3 times = 2ms
-
-
-
-SymbolicSyntaxExample.this.Store => ?{def ===: ?}
-
-SymbolicSyntaxExample.this.Store => ?{def ===: ?}
-1 times = 0ms
-
-
-
-monocle.function.Index[String ==>> Int,String,A]
-
-monocle.function.Index[String ==>> Int,String,A]
-1 times = 1ms
-
-
-
-monocle.function.Index[String ==>> Int,String,A]->scalaz.Order[String]
-
-
-
-
-
-String('abc') => ?{def failure: ?}
-
-String('abc') => ?{def failure: ?}
-4 times = 3ms
-
-
-
-Int(0) => monocle.refined.IntBits
-
-Int(0) => monocle.refined.IntBits
-3 times = 383ms
-
-
-
-Int(0) => monocle.refined.IntBits->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-Int(0) => monocle.refined.IntBits->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]]
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]]
-14 times = 1143ms
-
-
-
-Int(0) => monocle.refined.IntBits->eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]]
-
-
-
-
-
-org.scalactic.Equality[String ==>> Int]
-
-org.scalactic.Equality[String ==>> Int]
-6 times = 23ms
-
-
-
-scalaz.Equal[String ==>> Int]
-
-scalaz.Equal[String ==>> Int]
-6 times = 19ms
-
-
-
-org.scalactic.Equality[String ==>> Int]->scalaz.Equal[String ==>> Int]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A]->shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,L2]
-
-
-
-
-
-shapeless.ops.hlist.Tupler[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil]
-1 times = 2ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A]->shapeless.ops.hlist.Tupler[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),L1]
-
-shapeless.Generic.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),L1]
-1 times = 20ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A]->shapeless.Generic.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),L1]
-
-
-
-
-
-org.scalactic.Equality[other.Custom]
-
-org.scalactic.Equality[other.Custom]
-1 times = 2ms
-
-
-
-scalaz.Equal[other.Custom]
-
-scalaz.Equal[other.Custom]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[other.Custom]->scalaz.Equal[other.Custom]
-
-
-
-
-
-scala.collection.immutable.Set[Int] => ?{def shouldEqual: ?}
-
-scala.collection.immutable.Set[Int] => ?{def shouldEqual: ?}
-2 times = 13ms
-
-
-
-scala.collection.immutable.Set[Int] => ?{def shouldEqual: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-scala.collection.immutable.Set[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.immutable.Set[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Empty[List[Nothing]]
-
-monocle.function.Empty[List[Nothing]]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,Double :: String :: Long :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Double :: Boolean :: Char :: Int :: shapeless.HNil,String :: Long :: shapeless.HNil,Out]
-
-
-
-
-
-monocle.function.Cons1[Int :: String :: Boolean :: shapeless.HNil,H,T]
-
-monocle.function.Cons1[Int :: String :: Boolean :: shapeless.HNil,H,T]
-1 times = 22ms
-
-
-
-monocle.function.Cons1[Int :: String :: Boolean :: shapeless.HNil,H,T]->shapeless.ops.hlist.Prepend.Aux[Int :: shapeless.HNil,String :: Boolean :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[Int :: String :: Boolean :: shapeless.HNil,H,T]
-
-shapeless.ops.hlist.IsHCons.Aux[Int :: String :: Boolean :: shapeless.HNil,H,T]
-1 times = 4ms
-
-
-
-monocle.function.Cons1[Int :: String :: Boolean :: shapeless.HNil,H,T]->shapeless.ops.hlist.IsHCons.Aux[Int :: String :: Boolean :: shapeless.HNil,H,T]
-
-
-
-
-
-shapeless.Generic.Aux[scalaz.Tree[Int],SGen]
-
-shapeless.Generic.Aux[scalaz.Tree[Int],SGen]
-1 times = 11ms
-
-
-
-org.scalactic.Equality[(Int, scalaz.Tree[Int])]
-
-org.scalactic.Equality[(Int, scalaz.Tree[Int])]
-1 times = 5ms
-
-
-
-scalaz.Equal[(Int, scalaz.Tree[Int])]
-
-scalaz.Equal[(Int, scalaz.Tree[Int])]
-1 times = 4ms
-
-
-
-org.scalactic.Equality[(Int, scalaz.Tree[Int])]->scalaz.Equal[(Int, scalaz.Tree[Int])]
-
-
-
-
-
-monocle.function.Each[shapeless.HNil,Any]
-
-monocle.function.Each[shapeless.HNil,Any]
-1 times = 6ms
-
-
-
-monocle.function.Each[shapeless.HNil,Any]->shapeless.Generic.Aux[shapeless.HNil,SGen]
-
-
-
-
-
-monocle.function.Reverse[String,A]
-
-monocle.function.Reverse[String,A]
-1 times = 15ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[String,A]
-
-shapeless.ops.hlist.Reverse.Aux[String,A]
-1 times = 3ms
-
-
-
-monocle.function.Reverse[String,A]->shapeless.ops.hlist.Reverse.Aux[String,A]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[String,A]
-
-shapeless.ops.tuple.Reverse.Aux[String,A]
-1 times = 8ms
-
-
-
-monocle.function.Reverse[String,A]->shapeless.ops.tuple.Reverse.Aux[String,A]
-
-
-
-
-
-org.scalactic.Equality[scalaz.Validation[String,Int]]
-
-org.scalactic.Equality[scalaz.Validation[String,Int]]
-1 times = 5ms
-
-
-
-scalaz.Equal[scalaz.Validation[String,Int]]
-
-scalaz.Equal[scalaz.Validation[String,Int]]
-1 times = 4ms
-
-
-
-org.scalactic.Equality[scalaz.Validation[String,Int]]->scalaz.Equal[scalaz.Validation[String,Int]]
-
-
-
-
-
-scalaz.Functor[F$macro$27]
-
-scalaz.Functor[F$macro$27]
-1 times = 0ms
-
-
-
-scalaz.Equal[(Char, Boolean, String, Double, Int)]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Double, Int)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Double, Int)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Double, Int)]->scalaz.Equal[Double]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Double, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-String('first_name') => ?{def ->: ?}
-
-String('first_name') => ?{def ->: ?}
-21 times = 27ms
-
-
-
-this.Out => ?{def shouldEqual: ?}
-
-this.Out => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-this.Out => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-this.Out => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Char('x') => ?{def applyLens: ?}
-
-Char('x') => ?{def applyLens: ?}
-2 times = 15ms
-
-
-
-Char('x') => ?{def applyLens: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-((Int, Int)) => ?{def shouldEqual: ?}
-
-((Int, Int)) => ?{def shouldEqual: ?}
-1 times = 4ms
-
-
-
-((Int, Int)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Int, Int)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-org.scalactic.Equality[Option[Double]]
-
-org.scalactic.Equality[Option[Double]]
-1 times = 2ms
-
-
-
-scalaz.Equal[Option[Double]]
-
-scalaz.Equal[Option[Double]]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[Option[Double]]->scalaz.Equal[Option[Double]]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[String :: Boolean :: shapeless.HNil,shapeless._0,this.Out,(this.Out, String :: Boolean :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[String :: Boolean :: shapeless.HNil,shapeless._0,this.Out,(this.Out, String :: Boolean :: shapeless.HNil)]
-1 times = 3ms
-
-
-
-x$2.type => ?{def toLower: ?}
-
-x$2.type => ?{def toLower: ?}
-1 times = 1ms
-
-
-
-scalaz.Equal[Unit]
-
-scalaz.Equal[Unit]
-6 times = 5ms
-
-
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Boolean]
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Boolean]
-3 times = 25ms
-
-
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Boolean]
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Boolean]
-4 times = 17ms
-
-
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Boolean]->shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Boolean]
-
-
-
-
-
-scalaz.Equal[LensMonoExample.this.Person]
-
-scalaz.Equal[LensMonoExample.this.Person]
-4 times = 4ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.Tree[Int],A]->shapeless.Generic.Aux[scalaz.Tree[Int],L1]
-
-
-
-
-
-shapeless.ops.hlist.Init[Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Init[Boolean :: shapeless.HNil]
-2 times = 7ms
-
-
-
-shapeless.ops.hlist.Init[String :: Boolean :: shapeless.HNil]->shapeless.ops.hlist.Init[Boolean :: shapeless.HNil]
-
-
-
-
-
-((Int, scalaz.Tree[Int])) => ?{def shouldEqual: ?}
-
-((Int, scalaz.Tree[Int])) => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-((Int, scalaz.Tree[Int])) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Int, scalaz.Tree[Int])) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scala.languageFeature.higherKinds
-
-scala.languageFeature.higherKinds
-34 times = 14ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._5.N,this.Out,(this.Out, Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._5.N,this.Out,(this.Out, Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil)]
-1 times = 30ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._5.N,this.Out,(this.Out, Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._4,this.Out,(this.Out, String :: Boolean :: Float :: Char :: Long :: shapeless.HNil)]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Long :: Boolean :: shapeless.HNil,Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Long :: Boolean :: shapeless.HNil,Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-1 times = 9ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: String :: Long :: Boolean :: shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: String :: Long :: Boolean :: shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out]
-1 times = 7ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Long :: Boolean :: shapeless.HNil,Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Double :: String :: Long :: Boolean :: shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-scalaz.Tree[Int] => ?{def applyLens: ?}
-
-scalaz.Tree[Int] => ?{def applyLens: ?}
-3 times = 2ms
-
-
-
-shapeless.Generic.Aux[monocle.generic.Example,L]
-
-shapeless.Generic.Aux[monocle.generic.Example,L]
-1 times = 30ms
-
-
-
-scalaz.Equal[scala.collection.immutable.Stream[Int]]
-
-scalaz.Equal[scala.collection.immutable.Stream[Int]]
-5 times = 10ms
-
-
-
-scalaz.Equal[scala.collection.immutable.Stream[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Option[Char]]
-
-scalaz.Equal[Option[Char]]
-4 times = 8ms
-
-
-
-scalaz.Equal[Option[Char]]->scalaz.Equal[Char]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Out]
-
-
-
-
-
-org.scalactic.Equality[(Int, Int)]
-
-org.scalactic.Equality[(Int, Int)]
-1 times = 5ms
-
-
-
-scalaz.Equal[(Int, Int)]
-
-scalaz.Equal[(Int, Int)]
-1 times = 4ms
-
-
-
-org.scalactic.Equality[(Int, Int)]->scalaz.Equal[(Int, Int)]
-
-
-
-
-
-monocle.function.Snoc[scalaz.IList[Int],A]
-
-monocle.function.Snoc[scalaz.IList[Int],A]
-1 times = 0ms
-
-
-
-monocle.function.Empty[Map[Int,String]]
-
-monocle.function.Empty[Map[Int,String]]
-1 times = 0ms
-
-
-
-monocle.function.Cons[List[Int],Int]
-
-monocle.function.Cons[List[Int],Int]
-1 times = 3ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Option[String])]]
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Option[String])]]
-2 times = 5ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Option[String])]]->scalaz.Equal[StateExample.this.Person]
-
-
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def applyOptional: ?}
-
-scala.collection.immutable.Map[String,Int] => ?{def applyOptional: ?}
-2 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char),Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char),Out0]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char),A]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char),Out0]
-
-
-
-
-
-(Int => (Int => Int)) => ?{def applyIso: ?}
-
-(Int => (Int => Int)) => ?{def applyIso: ?}
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Tupler[Boolean :: Char :: Int :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Boolean :: Char :: Int :: shapeless.HNil]
-1 times = 1ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean),A]->shapeless.ops.hlist.Tupler[Boolean :: Char :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Char, Boolean),L1]
-
-shapeless.Generic.Aux[(Int, Char, Boolean),L1]
-1 times = 14ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean),A]->shapeless.Generic.Aux[(Int, Char, Boolean),L1]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: shapeless.HNil,L2]
-1 times = 10ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean),A]->shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: shapeless.HNil,L2]
-
-
-
-
-
-monocle.function.FilterIndex[scalaz.IList[Int],Int,A]
-
-monocle.function.FilterIndex[scalaz.IList[Int],Int,A]
-1 times = 0ms
-
-
-
-monocle.function.Field2[(String, Int, Boolean, Double, Long, Char),A]
-
-monocle.function.Field2[(String, Int, Boolean, Double, Long, Char),A]
-1 times = 6ms
-
-
-
-monocle.function.Field2[(String, Int, Boolean, Double, Long, Char),A]->shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._1.N,A]
-
-
-
-
-
-Float => Int
-
-Float => Int
-57 times = 14ms
-
-
-
-scalaz.Functor[F$macro$15]
-
-scalaz.Functor[F$macro$15]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-scalaz.Equal[scala.collection.immutable.Vector[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-org.scalactic.Equality[Boolean :: String :: Int :: shapeless.HNil]
-
-org.scalactic.Equality[Boolean :: String :: Int :: shapeless.HNil]
-1 times = 5ms
-
-
-
-scalaz.Equal[Boolean :: String :: Int :: shapeless.HNil]
-
-scalaz.Equal[Boolean :: String :: Int :: shapeless.HNil]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Boolean :: String :: Int :: shapeless.HNil]->scalaz.Equal[Boolean :: String :: Int :: shapeless.HNil]
-
-
-
-
-
-org.scalactic.Equality[Boolean]
-
-org.scalactic.Equality[Boolean]
-18 times = 77ms
-
-
-
-org.scalactic.Equality[Boolean]->scalaz.Equal[Boolean]
-
-
-
-
-
-shapeless.ops.coproduct.Selector[CoproductExample.this.ISB,Int]
-
-shapeless.ops.coproduct.Selector[CoproductExample.this.ISB,Int]
-2 times = 12ms
-
-
-
-shapeless.ops.coproduct.Selector[CoproductExample.this.ISB,Int]->shapeless.ops.coproduct.Selector[String :+: Boolean :+: shapeless.CNil,Int]
-
-
-
-
-
-shapeless.Generic.Aux[scalaz.IList[Int],SGen]
-
-shapeless.Generic.Aux[scalaz.IList[Int],SGen]
-1 times = 24ms
-
-
-
-shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: shapeless.HNil]
-1 times = 2ms
-
-
-
-Option[Double] => ?{def shouldEqual: ?}
-
-Option[Double] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-Option[Double] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[Double] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: String :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: String :: Int :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 1ms
-
-
-
-monocle.function.Index[scala.collection.immutable.Stream[Int],Int,A]
-
-monocle.function.Index[scala.collection.immutable.Stream[Int],Int,A]
-1 times = 0ms
-
-
-
-scalaz.Equal[Option[Int \/ String]]
-
-scalaz.Equal[Option[Int / String]]
-3 times = 27ms
-
-
-
-scalaz.Equal[Int \/ String]
-
-scalaz.Equal[Int / String]
-3 times = 23ms
-
-
-
-scalaz.Equal[Option[Int \/ String]]->scalaz.Equal[Int \/ String]
-
-
-
-
-
-Option[List[Int]] => ?{def shouldEqual: ?}
-
-Option[List[Int]] => ?{def shouldEqual: ?}
-6 times = 16ms
-
-
-
-Option[List[Int]] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[List[Int]] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-((Int, Char)) => ?{def applyIso: ?}
-
-((Int, Char)) => ?{def applyIso: ?}
-1 times = 0ms
-
-
-
-scalaz.Equal[Option[Nothing]]
-
-scalaz.Equal[Option[Nothing]]
-3 times = 263ms
-
-
-
-scalaz.Equal[Option[Nothing]]->scalaz.Equal[A]
-
-
-
-
-
-scalaz.Functor[F$macro$37]
-
-scalaz.Functor[F$macro$37]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[Int :: List[Int] :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[Int :: List[Int] :: shapeless.HNil,SGen]
-1 times = 5ms
-
-
-
-org.scalactic.Equality[Option[Int]]
-
-org.scalactic.Equality[Option[Int]]
-30 times = 90ms
-
-
-
-org.scalactic.Equality[Option[Int]]->scalaz.Equal[Option[Int]]
-
-
-
-
-
-shapeless.ops.coproduct.Selector[CoproductExample.this.ISB,Boolean]
-
-shapeless.ops.coproduct.Selector[CoproductExample.this.ISB,Boolean]
-3 times = 26ms
-
-
-
-shapeless.ops.coproduct.Selector[String :+: Boolean :+: shapeless.CNil,Boolean]
-
-shapeless.ops.coproduct.Selector[String :+: Boolean :+: shapeless.CNil,Boolean]
-3 times = 14ms
-
-
-
-shapeless.ops.coproduct.Selector[CoproductExample.this.ISB,Boolean]->shapeless.ops.coproduct.Selector[String :+: Boolean :+: shapeless.CNil,Boolean]
-
-
-
-
-
-shapeless.Generic.Aux[scala.collection.immutable.Map[String,Int],SGen]
-
-shapeless.Generic.Aux[scala.collection.immutable.Map[String,Int],SGen]
-1 times = 18ms
-
-
-
-(=> ComposeIssueExample.this.B[Nothing,String]) => ComposeIssueExample.this.B[String,?U]
-
-(=> ComposeIssueExample.this.B[Nothing,String]) => ComposeIssueExample.this.B[String,?U]
-1 times = 1ms
-
-
-
-scalaz.Functor[F$macro$21]
-
-scalaz.Functor[F$macro$21]
-1 times = 0ms
-
-
-
-scalaz.Equal[(String, Int, Boolean, Double, Long, Char)]
-
-scalaz.Equal[(String, Int, Boolean, Double, Long, Char)]
-2 times = 17ms
-
-
-
-scalaz.Equal[(String, Int, Boolean, Double, Long, Char)]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Equal[(String, Int, Boolean, Double, Long, Char)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(String, Int, Boolean, Double, Long, Char)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(String, Int, Boolean, Double, Long, Char)]->scalaz.Equal[Double]
-
-
-
-
-
-scalaz.Equal[(String, Int, Boolean, Double, Long, Char)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[(String, Int, Boolean, Double, Long, Char)]->scalaz.Equal[Long]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 1ms
-
-
-
-shapeless.ops.coproduct.Inject[shapeless.CNil,Float]
-
-shapeless.ops.coproduct.Inject[shapeless.CNil,Float]
-1 times = 0ms
-
-
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Float]->shapeless.ops.coproduct.Inject[shapeless.CNil,Float]
-
-
-
-
-
-org.scalactic.Equality[(Int, Boolean)]
-
-org.scalactic.Equality[(Int, Boolean)]
-2 times = 7ms
-
-
-
-org.scalactic.Equality[(Int, Boolean)]->scalaz.Equal[(Int, Boolean)]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: shapeless.HNil,String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: shapeless.HNil,String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-1 times = 10ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Long :: shapeless.HNil,Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Long :: shapeless.HNil,Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: shapeless.HNil,String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[String :: Long :: shapeless.HNil,Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-monocle.function.Index[String,Int,A]
-
-monocle.function.Index[String,Int,A]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Option[(scala.collection.immutable.Vector[Int], Int)]]
-
-org.scalactic.Equality[Option[(scala.collection.immutable.Vector[Int], Int)]]
-1 times = 6ms
-
-
-
-org.scalactic.Equality[Option[(scala.collection.immutable.Vector[Int], Int)]]->scalaz.Equal[Option[(scala.collection.immutable.Vector[Int], Int)]]
-
-
-
-
-
-(=> Float) => Int
-
-(=> Float) => Int
-57 times = 13ms
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long),A]
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long),A]
-1 times = 93ms
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long),A]->shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A]
-
-
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long),A]->shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long)]
-
-
-
-
-
-monocle.function.Reverse[(Int, Char, Boolean, Double, String, Long),A]->shapeless.ops.tuple.Reverse.Aux[(Int, Char, Boolean, Double, String, Long),A]
-
-
-
-
-
-org.scalactic.Equality[SymbolicSyntaxExample.this.Store]
-
-org.scalactic.Equality[SymbolicSyntaxExample.this.Store]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[SymbolicSyntaxExample.this.Store]->scalaz.Equal[SymbolicSyntaxExample.this.Store]
-
-
-
-
-
-Int(32) => ?{def applyLens: ?}
-
-Int(32) => ?{def applyLens: ?}
-1 times = 15ms
-
-
-
-Int(32) => ?{def applyLens: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Option[String])]]
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Option[String])]]
-2 times = 8ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Option[String])]]->scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Option[String])]]
-
-
-
-
-
-monocle.function.Field2[Int :: String :: Boolean :: shapeless.HNil,A]
-
-monocle.function.Field2[Int :: String :: Boolean :: shapeless.HNil,A]
-1 times = 23ms
-
-
-
-monocle.function.Field2[Int :: String :: Boolean :: shapeless.HNil,A]->shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._1.N,A]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._1.N,this.Out,(this.Out, Int :: String :: Boolean :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._1.N,this.Out,(this.Out, Int :: String :: Boolean :: shapeless.HNil)]
-1 times = 8ms
-
-
-
-monocle.function.Field2[Int :: String :: Boolean :: shapeless.HNil,A]->shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._1.N,this.Out,(this.Out, Int :: String :: Boolean :: shapeless.HNil)]
-
-
-
-
-
-String :: shapeless.HNil => ?{def ::: ?}
-
-String :: shapeless.HNil => ?{def ::: ?}
-1 times = 0ms
-
-
-
-org.scalactic.Equality[String @@ Nothing]
-
-org.scalactic.Equality[String @@ Nothing]
-1 times = 3ms
-
-
-
-scalaz.Equal[String @@ Nothing]
-
-scalaz.Equal[String @@ Nothing]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[String @@ Nothing]->scalaz.Equal[String @@ Nothing]
-
-
-
-
-
-scalaz.OneAnd[List,Int] => ?{def applyTraversal: ?}
-
-scalaz.OneAnd[List,Int] => ?{def applyTraversal: ?}
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Option[(Int, List[Int])]]
-
-org.scalactic.Equality[Option[(Int, List[Int])]]
-2 times = 14ms
-
-
-
-scalaz.Equal[Option[(Int, List[Int])]]
-
-scalaz.Equal[Option[(Int, List[Int])]]
-2 times = 13ms
-
-
-
-org.scalactic.Equality[Option[(Int, List[Int])]]->scalaz.Equal[Option[(Int, List[Int])]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: shapeless.HNil,Out]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]
-
-
-
-
-
-scalaz.Equal[(Int, List[Int])]
-
-scalaz.Equal[(Int, List[Int])]
-2 times = 10ms
-
-
-
-scalaz.Equal[(Int, List[Int])]->scalaz.Equal[List[Int]]
-
-
-
-
-
-scalaz.Equal[(Int, List[Int])]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.function.Wrapped[Int @@ scalaz.Tags.Max,A]
-
-monocle.function.Wrapped[Int @@ scalaz.Tags.Max,A]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-1 times = 7ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-scalaz.Functor[F$macro$22]
-
-scalaz.Functor[F$macro$22]
-1 times = 0ms
-
-
-
-TreeExample.this.tree.type => ?{def applyLens: ?}
-
-TreeExample.this.tree.type => ?{def applyLens: ?}
-8 times = 7ms
-
-
-
-HListExample.this.Example => ?{def applyIso: ?}
-
-HListExample.this.Example => ?{def applyIso: ?}
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$18]
-
-scalaz.Functor[F$macro$18]
-1 times = 1ms
-
-
-
-((Char, Boolean, String, Double, Int, Int)) => ?{def applyLens: ?}
-
-((Char, Boolean, String, Double, Int, Int)) => ?{def applyLens: ?}
-4 times = 3ms
-
-
-
-((Int, Int) => Int) => ?{def applyIso: ?}
-
-((Int, Int) => Int) => ?{def applyIso: ?}
-3 times = 2ms
-
-
-
-scalaz.Equal[Option[Double]]->scalaz.Equal[Double]
-
-
-
-
-
-monocle.function.Each[scala.collection.immutable.Stream[Int],A]
-
-monocle.function.Each[scala.collection.immutable.Stream[Int],A]
-1 times = 79ms
-
-
-
-monocle.function.Each[scala.collection.immutable.Stream[Int],A]->shapeless.Generic.Aux[scala.collection.immutable.Stream[Int],SGen]
-
-
-
-
-
-org.scalactic.Equality[Point$3]
-
-org.scalactic.Equality[Point$3]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[Point$3]->scalaz.Equal[Point$3]
-
-
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def shouldEqual: ?}
-
-scala.collection.immutable.Vector[Int] => ?{def shouldEqual: ?}
-7 times = 19ms
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Cons1[(Char, Boolean, String, Double, Int, Int),H,T]
-
-monocle.function.Cons1[(Char, Boolean, String, Double, Int, Int),H,T]
-1 times = 7ms
-
-
-
-monocle.function.Cons1[(Char, Boolean, String, Double, Int, Int),H,T]->shapeless.ops.hlist.IsHCons.Aux[(Char, Boolean, String, Double, Int, Int),H,T]
-
-
-
-
-
-StateExample.this._age.type => ?{def extract: ?}
-
-StateExample.this._age.type => ?{def extract: ?}
-1 times = 6ms
-
-
-
-org.scalactic.Equality[Option[Char]]
-
-org.scalactic.Equality[Option[Char]]
-4 times = 11ms
-
-
-
-org.scalactic.Equality[Option[Char]]->scalaz.Equal[Option[Char]]
-
-
-
-
-
-(=> (Nothing, Nothing)) => String
-
-(=> (Nothing, Nothing)) => String
-3 times = 8ms
-
-
-
-eu.timepit.refined.api.RefType[Tuple2]
-
-eu.timepit.refined.api.RefType[Tuple2]
-6 times = 3ms
-
-
-
-(=> (Nothing, Nothing)) => String->eu.timepit.refined.api.RefType[Tuple2]
-
-
-
-
-
-String('keyword') => ?{def ->: ?}
-
-String('keyword') => ?{def ->: ?}
-1 times = 1ms
-
-
-
-String :: Boolean :: shapeless.HNil => ?{def ::: ?}
-
-String :: Boolean :: shapeless.HNil => ?{def ::: ?}
-10 times = 11ms
-
-
-
-myStore.articles.type => ?{def &|-?: ?}
-
-myStore.articles.type => ?{def &|-?: ?}
-1 times = 1ms
-
-
-
-((String, Int, Boolean)) => ?{def applyLens: ?}
-
-((String, Int, Boolean)) => ?{def applyLens: ?}
-1 times = 1ms
-
-
-
-scalaz.Order[A]
-
-scalaz.Order[A]
-1 times = 2ms
-
-
-
-scalaz.Functor[F$macro$16]
-
-scalaz.Functor[F$macro$16]
-1 times = 0ms
-
-
-
-monocle.function.Plated[scalaz.Tree[Int]]
-
-monocle.function.Plated[scalaz.Tree[Int]]
-2 times = 1ms
-
-
-
-scalaz.Equal[scalaz.Validation[String,Int]]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[scalaz.Validation[String,Int]]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[scalaz.Validation[String,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.function.Cons[scalaz.IList[Int],A]
-
-monocle.function.Cons[scalaz.IList[Int],A]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[scalaz.OneAnd[List,Int],SGen]
-
-shapeless.Generic.Aux[scalaz.OneAnd[List,Int],SGen]
-1 times = 27ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, String)]]
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, String)]]
-1 times = 3ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, String)]]
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, String)]]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, String)]]->scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, String)]]
-
-
-
-
-
-scalaz.Functor[F$macro$5]
-
-scalaz.Functor[F$macro$5]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[List[Int] :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[List[Int] :: shapeless.HNil,SGen]
-1 times = 4ms
-
-
-
-org.scalactic.Equality[(String, Int, Boolean, Double, Long, Char)]
-
-org.scalactic.Equality[(String, Int, Boolean, Double, Long, Char)]
-2 times = 19ms
-
-
-
-org.scalactic.Equality[(String, Int, Boolean, Double, Long, Char)]->scalaz.Equal[(String, Int, Boolean, Double, Long, Char)]
-
-
-
-
-
-((Int, Boolean)) => ?{def applyLens: ?}
-
-((Int, Boolean)) => ?{def applyLens: ?}
-6 times = 10ms
-
-
-
-org.scalactic.Equality[(Int, Boolean, String)]
-
-org.scalactic.Equality[(Int, Boolean, String)]
-2 times = 10ms
-
-
-
-scalaz.Equal[(Int, Boolean, String)]
-
-scalaz.Equal[(Int, Boolean, String)]
-2 times = 9ms
-
-
-
-org.scalactic.Equality[(Int, Boolean, String)]->scalaz.Equal[(Int, Boolean, String)]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scala.collection.immutable.Stream[Int],Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scala.collection.immutable.Stream[Int],Out0]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[Int :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[Int :: shapeless.HNil,SGen]
-1 times = 4ms
-
-
-
-monocle.function.Each[scalaz.IList[Int],A]
-
-monocle.function.Each[scalaz.IList[Int],A]
-1 times = 27ms
-
-
-
-monocle.function.Each[scalaz.IList[Int],A]->shapeless.Generic.Aux[scalaz.IList[Int],SGen]
-
-
-
-
-
-monocle.function.At[String ==>> Int,String,A]
-
-monocle.function.At[String ==>> Int,String,A]
-1 times = 1ms
-
-
-
-monocle.function.At[String ==>> Int,String,A]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, String)] => ?{def shouldEqual: ?}
-
-scalaz.Id.Id[(StateExample.this.Person, String)] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, String)] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, String)] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Cons[String,A]
-
-monocle.function.Cons[String,A]
-1 times = 1ms
-
-
-
-scalaz.Monad[scalaz.Id.Id]
-
-scalaz.Monad[scalaz.Id.Id]
-32 times = 93ms
-
-
-
-monocle.function.Each[List[Int] :: shapeless.HNil,Int]
-
-monocle.function.Each[List[Int] :: shapeless.HNil,Int]
-1 times = 16ms
-
-
-
-monocle.function.Each[List[Int] :: shapeless.HNil,Int]->monocle.function.Each[shapeless.HNil,Any]
-
-
-
-
-
-monocle.function.Each[List[Int] :: shapeless.HNil,Int]->shapeless.Generic.Aux[List[Int] :: shapeless.HNil,SGen]
-
-
-
-
-
-org.scalactic.Equality[Option[Boolean]]
-
-org.scalactic.Equality[Option[Boolean]]
-2 times = 6ms
-
-
-
-org.scalactic.Equality[Option[Boolean]]->scalaz.Equal[Option[Boolean]]
-
-
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int]->monocle.function.Each[shapeless.HNil,Int]
-
-
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int]->shapeless.Generic.Aux[Int :: shapeless.HNil,SGen]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Boolean :: shapeless.HNil,String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Boolean :: shapeless.HNil,String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-1 times = 11ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Boolean :: shapeless.HNil,String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[String :: Long :: Boolean :: shapeless.HNil,Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._3,this.Out,(this.Out, Boolean :: Float :: Char :: Long :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Float :: Char :: Long :: shapeless.HNil,shapeless.nat._2,this.Out,(this.Out, Float :: Char :: Long :: shapeless.HNil)]
-
-
-
-
-
-monocle.function.FilterIndex[scala.collection.immutable.Stream[Int],Int,A]
-
-monocle.function.FilterIndex[scala.collection.immutable.Stream[Int],Int,A]
-1 times = 0ms
-
-
-
-String('last_name') => ?{def ->: ?}
-
-String('last_name') => ?{def ->: ?}
-7 times = 8ms
-
-
-
-scalaz.Functor[F$macro$33]
-
-scalaz.Functor[F$macro$33]
-1 times = 1ms
-
-
-
-monocle.function.Index[List[Int],Int,A]
-
-monocle.function.Index[List[Int],Int,A]
-1 times = 0ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[Int :: String :: Boolean :: shapeless.HNil,A]
-
-shapeless.ops.tuple.Reverse.Aux[Int :: String :: Boolean :: shapeless.HNil,A]
-1 times = 12ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[Int :: String :: Boolean :: shapeless.HNil,A]->shapeless.Generic.Aux[Int :: String :: Boolean :: shapeless.HNil,L1]
-
-
-
-
-
-monocle.function.Field1[(String, Int, Boolean, Double, Long, Char),A]
-
-monocle.function.Field1[(String, Int, Boolean, Double, Long, Char),A]
-1 times = 5ms
-
-
-
-monocle.function.Field1[(String, Int, Boolean, Double, Long, Char),A]->shapeless.ops.hlist.At.Aux[(String, Int, Boolean, Double, Long, Char),shapeless.nat._0.N,A]
-
-
-
-
-
-List[Int] => ?{def shouldEqual: ?}
-
-List[Int] => ?{def shouldEqual: ?}
-12 times = 35ms
-
-
-
-List[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-List[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Snoc1[(Char, Boolean, String, Double, Int, Int),I,L]
-
-monocle.function.Snoc1[(Char, Boolean, String, Double, Int, Int),I,L]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Init.Aux[(Char, Boolean, String, Double, Int, Int),I]
-
-shapeless.ops.hlist.Init.Aux[(Char, Boolean, String, Double, Int, Int),I]
-1 times = 2ms
-
-
-
-monocle.function.Snoc1[(Char, Boolean, String, Double, Int, Int),I,L]->shapeless.ops.hlist.Init.Aux[(Char, Boolean, String, Double, Int, Int),I]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[Int :: shapeless.HNil,shapeless.nat._0.N,Int]
-
-shapeless.ops.hlist.At.Aux[Int :: shapeless.HNil,shapeless.nat._0.N,Int]
-1 times = 2ms
-
-
-
-String('Foo') => ?{def ->: ?}
-
-String('Foo') => ?{def ->: ?}
-1 times = 6ms
-
-
-
-String('Foo') => ?{def ->: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scala.collection.immutable.Stream[Int],A]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scala.collection.immutable.Stream[Int],Out0]
-
-
-
-
-
-scalaz.Functor[F$macro$23]
-
-scalaz.Functor[F$macro$23]
-1 times = 0ms
-
-
-
-Option[Nothing] => ?{def shouldEqual: ?}
-
-Option[Nothing] => ?{def shouldEqual: ?}
-3 times = 7ms
-
-
-
-Option[Nothing] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[Nothing] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Tree[Int] => ?{def applyTraversal: ?}
-
-scalaz.Tree[Int] => ?{def applyTraversal: ?}
-2 times = 1ms
-
-
-
-scalaz.Validation[String,?X] => scalaz.Validation[E,A]
-
-scalaz.Validation[String,?X] => scalaz.Validation[E,A]
-1 times = 0ms
-
-
-
-Boolean => ?{def shouldBe: ?}
-
-Boolean => ?{def shouldBe: ?}
-2 times = 11ms
-
-
-
-Boolean => ?{def shouldBe: ?}->org.scalactic.source.Position
-
-
-
-
-
-Boolean => ?{def shouldBe: ?}->org.scalactic.Prettifier
-
-
-
-
-
-String('nick_name') => ?{def ->: ?}
-
-String('nick_name') => ?{def ->: ?}
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Long :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-scalaz.Functor[F$macro$35]
-
-scalaz.Functor[F$macro$35]
-1 times = 0ms
-
-
-
-monocle.function.Index[scala.collection.immutable.Vector[Int],Int,A]
-
-monocle.function.Index[scala.collection.immutable.Vector[Int],Int,A]
-1 times = 0ms
-
-
-
-monocle.generic.internal.TupleGeneric[monocle.generic.Example]
-
-monocle.generic.internal.TupleGeneric[monocle.generic.Example]
-2 times = 127ms
-
-
-
-monocle.generic.internal.TupleGeneric[monocle.generic.Example]->shapeless.Generic.Aux[(Int, String, Boolean),Int :: String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-monocle.generic.internal.TupleGeneric[monocle.generic.Example]->shapeless.ops.hlist.Tupler.Aux[Int :: String :: Boolean :: shapeless.HNil,R]
-
-
-
-
-
-monocle.generic.internal.TupleGeneric[monocle.generic.Example]->shapeless.Generic.Aux[monocle.generic.Example,L]
-
-
-
-
-
-monocle.function.FilterIndex[String ==>> Int,String,A]
-
-monocle.function.FilterIndex[String ==>> Int,String,A]
-1 times = 1ms
-
-
-
-monocle.function.FilterIndex[String ==>> Int,String,A]->scalaz.Order[String]
-
-
-
-
-
-monocle.function.Field2[(String, Int),A]
-
-monocle.function.Field2[(String, Int),A]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int),shapeless.nat._1.N,A]
-
-shapeless.ops.hlist.At.Aux[(String, Int),shapeless.nat._1.N,A]
-1 times = 3ms
-
-
-
-monocle.function.Field2[(String, Int),A]->shapeless.ops.hlist.At.Aux[(String, Int),shapeless.nat._1.N,A]
-
-
-
-
-
-monocle.function.Cons1[scalaz.OneAnd[List,Int],H,T]
-
-monocle.function.Cons1[scalaz.OneAnd[List,Int],H,T]
-1 times = 5ms
-
-
-
-monocle.function.Cons1[scalaz.OneAnd[List,Int],H,T]->shapeless.ops.hlist.IsHCons.Aux[scalaz.OneAnd[List,Int],H,T]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-1 times = 8ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int]->monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-String('connection_timeout') => ?{def ->: ?}
-
-String('connection_timeout') => ?{def ->: ?}
-1 times = 1ms
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Int)] => ?{def shouldEqual: ?}
-
-scalaz.Id.Id[(StateExample.this.Person, Int)] => ?{def shouldEqual: ?}
-6 times = 19ms
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Int)] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Int)] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Double => Int
-
-Double => Int
-57 times = 22ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: Boolean :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: Boolean :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: Boolean :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-scalaz.Unapply[scalaz.Traverse,Map[String,JsonExample.this.Json]]
-
-scalaz.Unapply[scalaz.Traverse,Map[String,JsonExample.this.Json]]
-2 times = 66ms
-
-
-
-scalaz.Traverse[[β$11$]Map[String,β$11$]]
-
-scalaz.Traverse[[β$11$]Map[String,β$11$]]
-2 times = 6ms
-
-
-
-scalaz.Unapply[scalaz.Traverse,Map[String,JsonExample.this.Json]]->scalaz.Traverse[[β$11$]Map[String,β$11$]]
-
-
-
-
-
-scalaz.Traverse[[α$10$]Map[α$10$,JsonExample.this.Json]]
-
-scalaz.Traverse[[α$10$]Map[α$10$,JsonExample.this.Json]]
-2 times = 1ms
-
-
-
-scalaz.Unapply[scalaz.Traverse,Map[String,JsonExample.this.Json]]->scalaz.Traverse[[α$10$]Map[α$10$,JsonExample.this.Json]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 1ms
-
-
-
-scalaz.Equal[E]
-
-scalaz.Equal[E]
-1 times = 146ms
-
-
-
-scalaz.Equal[E]->scalaz.Equal[S => A]
-
-
-
-
-
-scalaz.Equal[E]->scalaz.Equal[A]
-
-
-
-
-
-scalaz.Equal[E]->scalaz.Equal[S => Option[A]]
-
-
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Option[Int])] => ?{def shouldEqual: ?}
-
-scalaz.Id.Id[(StateExample.this.Person, Option[Int])] => ?{def shouldEqual: ?}
-12 times = 37ms
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Option[Int])] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Option[Int])] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Last.Aux[Int :: String :: Boolean :: shapeless.HNil,L]->shapeless.ops.hlist.Last[String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-((Int, Int, Int, Int, Int, Int)) => ?{def shouldEqual: ?}
-
-((Int, Int, Int, Int, Int, Int)) => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-((Int, Int, Int, Int, Int, Int)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Int, Int, Int, Int, Int, Int)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Equal[(List[Int], Int)]
-
-scalaz.Equal[(List[Int], Int)]
-2 times = 11ms
-
-
-
-scalaz.Equal[Option[(List[Int], Int)]]->scalaz.Equal[(List[Int], Int)]
-
-
-
-
-
-monocle.function.Wrapped[S,String]
-
-monocle.function.Wrapped[S,String]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-l.type => ?{def traverse: ?}
-
-l.type => ?{def traverse: ?}
-1 times = 7ms
-
-
-
-scalaz.Traverse[List]
-
-scalaz.Traverse[List]
-2 times = 1ms
-
-
-
-l.type => ?{def traverse: ?}->scalaz.Traverse[List]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: String :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-x$1.type => ?{def reverse: ?}
-
-x$1.type => ?{def reverse: ?}
-1 times = 1ms
-
-
-
-StateExample.this._age.type => ?{def assign: ?}
-
-StateExample.this._age.type => ?{def assign: ?}
-1 times = 1ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Unit)]]
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Unit)]]
-8 times = 18ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Unit)]]->scalaz.Equal[StateExample.this.Person]
-
-
-
-
-
-StateExample.this._oldAge.type => ?{def assign: ?}
-
-StateExample.this._oldAge.type => ?{def assign: ?}
-2 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: Boolean :: Double :: String :: Long :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: String :: Long :: Boolean :: shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-((Int, Char, Boolean, Double, String, Long, Boolean)) => ?{def applyIso: ?}
-
-((Int, Char, Boolean, Double, String, Long, Boolean)) => ?{def applyIso: ?}
-1 times = 1ms
-
-
-
-((Int, Int, Int)) => ?{def applyTraversal: ?}
-
-((Int, Int, Int)) => ?{def applyTraversal: ?}
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._1.N,this.Out,(this.Out, Int :: String :: Boolean :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[String :: Boolean :: shapeless.HNil,shapeless._0,this.Out,(this.Out, String :: Boolean :: shapeless.HNil)]
-
-
-
-
-
-scalaz.Equal[String ==>> Int]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[String ==>> Int]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[Option[List[Int]]]
-
-scalaz.Equal[Option[List[Int]]]
-2 times = 6ms
-
-
-
-scalaz.Equal[Option[List[Int]]]->scalaz.Equal[List[Int]]
-
-
-
-
-
-org.scalactic.Equality[Option[Int \/ String]]
-
-org.scalactic.Equality[Option[Int / String]]
-3 times = 29ms
-
-
-
-org.scalactic.Equality[Option[Int \/ String]]->scalaz.Equal[Option[Int \/ String]]
-
-
-
-
-
-StateExample.this._nameSet.type => ?{def assign_: ?}
-
-StateExample.this._nameSet.type => ?{def assign_: ?}
-1 times = 3ms
-
-
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Boolean]
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Boolean]
-3 times = 3ms
-
-
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Boolean]->shapeless.ops.coproduct.Selector[shapeless.CNil,Boolean]
-
-
-
-
-
-Int(3) => ?{def applyLens: ?}
-
-Int(3) => ?{def applyLens: ?}
-2 times = 15ms
-
-
-
-Int(3) => ?{def applyLens: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-((String, Int, Boolean, Double, Long, Char)) => ?{def applyLens: ?}
-
-((String, Int, Boolean, Double, Long, Char)) => ?{def applyLens: ?}
-4 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out0]
-1 times = 11ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out0]
-
-
-
-
-
-shapeless.ops.hlist.Prepend[String :: shapeless.HNil,this.Out :: shapeless.HNil]->shapeless.ops.hlist.Prepend[shapeless.HNil,this.Out :: shapeless.HNil]
-
-
-
-
-
-String('Two') => ?{def ->: ?}
-
-String('Two') => ?{def ->: ?}
-28 times = 82ms
-
-
-
-String('Two') => ?{def ->: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(15)]]
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(15)]]
-4 times = 206ms
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(15)]]->eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA]
-
-
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(15)]]->eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(15)],RB]
-
-
-
-
-
-scalaz.std.map.BuildKeyConstraint[String]
-
-scalaz.std.map.BuildKeyConstraint[String]
-2 times = 2ms
-
-
-
-org.scalactic.Equality[(Int, Int, Int)]
-
-org.scalactic.Equality[(Int, Int, Int)]
-1 times = 7ms
-
-
-
-org.scalactic.Equality[(Int, Int, Int)]->scalaz.Equal[(Int, Int, Int)]
-
-
-
-
-
-List[Int] => ?{def applyOptional: ?}
-
-List[Int] => ?{def applyOptional: ?}
-19 times = 20ms
-
-
-
-org.scalactic.Equality[Option[List[Int]]]
-
-org.scalactic.Equality[Option[List[Int]]]
-6 times = 24ms
-
-
-
-org.scalactic.Equality[Option[List[Int]]]->scalaz.Equal[Option[List[Int]]]
-
-
-
-
-
-org.scalactic.Equality[scalaz.Tree[Int]]
-
-org.scalactic.Equality[scalaz.Tree[Int]]
-6 times = 15ms
-
-
-
-org.scalactic.Equality[scalaz.Tree[Int]]->scalaz.Equal[scalaz.Tree[Int]]
-
-
-
-
-
-scalaz.Equal[Option[Unit]]->scalaz.Equal[Unit]
-
-
-
-
-
-monocle.function.Each[scalaz.Tree[Int],A]
-
-monocle.function.Each[scalaz.Tree[Int],A]
-1 times = 13ms
-
-
-
-monocle.function.Each[scalaz.Tree[Int],A]->shapeless.Generic.Aux[scalaz.Tree[Int],SGen]
-
-
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def shouldEqual: ?}
-
-scala.collection.immutable.Map[String,Int] => ?{def shouldEqual: ?}
-7 times = 34ms
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def shouldEqual: ?}->eu.timepit.refined.api.RefType[scala.collection.immutable.Map]
-
-
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-((Int, Int, Int)) => ?{def shouldEqual: ?}
-
-((Int, Int, Int)) => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-((Int, Int, Int)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Int, Int, Int)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[(List[Int], Int)] => ?{def shouldEqual: ?}
-
-Option[(List[Int], Int)] => ?{def shouldEqual: ?}
-2 times = 4ms
-
-
-
-Option[(List[Int], Int)] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[(List[Int], Int)] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Equal[scalaz.Validation[Nothing,Int]]
-
-scalaz.Equal[scalaz.Validation[Nothing,Int]]
-1 times = 154ms
-
-
-
-scalaz.Equal[scalaz.Validation[Nothing,Int]]->scalaz.Equal[E]
-
-
-
-
-
-scalaz.Order[E]
-
-scalaz.Order[E]
-1 times = 4ms
-
-
-
-scalaz.Equal[scalaz.Validation[Nothing,Int]]->scalaz.Order[E]
-
-
-
-
-
-Int(1) => monocle.refined.IntBits
-
-Int(1) => monocle.refined.IntBits
-1 times = 102ms
-
-
-
-Int(1) => monocle.refined.IntBits->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-Int(1) => monocle.refined.IntBits->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-Int(1) => monocle.refined.IntBits->eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: shapeless.HNil,Out]
-
-
-
-
-
-shapeless.ops.coproduct.Inject[shapeless.CNil,Int]
-
-shapeless.ops.coproduct.Inject[shapeless.CNil,Int]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Char :: Int :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Char :: Int :: shapeless.HNil,Out0]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Char :: Int :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Char :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-
-
-
-
-monocle.function.At[scala.collection.immutable.Map[String,Int],String,Option[A]]
-
-monocle.function.At[scala.collection.immutable.Map[String,Int],String,Option[A]]
-1 times = 1ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, String)]]->scalaz.Equal[StateExample.this.Person]
-
-
-
-
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Boolean]
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Boolean]
-4 times = 3ms
-
-
-
-shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Boolean]->shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Boolean]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean)]->shapeless.Generic.Aux[this.Out,L1]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean)]->shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: Char :: Int :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: Char :: Int :: shapeless.HNil,L2]
-1 times = 8ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean)]->shapeless.ops.hlist.Reverse.Aux[Boolean :: Char :: Int :: shapeless.HNil,L2]
-
-
-
-
-
-scalaz.Functor[F$macro$4]
-
-scalaz.Functor[F$macro$4]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Vector[Int]]
-
-org.scalactic.Equality[scala.collection.immutable.Vector[Int]]
-7 times = 22ms
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Vector[Int]]->scalaz.Equal[scala.collection.immutable.Vector[Int]]
-
-
-
-
-
-monocle.function.Field1[Int :: String :: Boolean :: shapeless.HNil,A]
-
-monocle.function.Field1[Int :: String :: Boolean :: shapeless.HNil,A]
-1 times = 9ms
-
-
-
-monocle.function.Field1[Int :: String :: Boolean :: shapeless.HNil,A]->shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._0.N,Int,(Int, Int :: String :: Boolean :: shapeless.HNil)]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._0.N,A]
-
-shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._0.N,A]
-1 times = 3ms
-
-
-
-monocle.function.Field1[Int :: String :: Boolean :: shapeless.HNil,A]->shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: shapeless.HNil,shapeless.nat._0.N,A]
-
-
-
-
-
-Float :: Char :: Long :: shapeless.HNil => ?{def ::: ?}
-
-Float :: Char :: Long :: shapeless.HNil => ?{def ::: ?}
-1 times = 0ms
-
-
-
-Option[String] => ?{def shouldBe: ?}
-
-Option[String] => ?{def shouldBe: ?}
-5 times = 15ms
-
-
-
-Option[String] => ?{def shouldBe: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[String] => ?{def shouldBe: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[(scala.collection.immutable.Vector[Int], Int)] => ?{def shouldEqual: ?}
-
-Option[(scala.collection.immutable.Vector[Int], Int)] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-Option[(scala.collection.immutable.Vector[Int], Int)] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[(scala.collection.immutable.Vector[Int], Int)] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Init.Aux[(Int, Boolean),I]
-
-shapeless.ops.hlist.Init.Aux[(Int, Boolean),I]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[Option[Nothing]]
-
-org.scalactic.Equality[Option[Nothing]]
-3 times = 268ms
-
-
-
-org.scalactic.Equality[Option[Nothing]]->scalaz.Equal[Option[Nothing]]
-
-
-
-
-
-monocle.function.Each[scalaz.OneAnd[List,Int],A]
-
-monocle.function.Each[scalaz.OneAnd[List,Int],A]
-1 times = 217ms
-
-
-
-monocle.function.Each[scalaz.OneAnd[List,Int],A]->shapeless.Generic.Aux[scalaz.OneAnd[List,Int],SGen]
-
-
-
-
-
-monocle.function.Each[List[Int],Int]
-
-monocle.function.Each[List[Int],Int]
-1 times = 159ms
-
-
-
-monocle.function.Each[scalaz.OneAnd[List,Int],A]->monocle.function.Each[List[Int],Int]
-
-
-
-
-
-monocle.function.Each[Int :: List[Int] :: shapeless.HNil,A]
-
-monocle.function.Each[Int :: List[Int] :: shapeless.HNil,A]
-1 times = 26ms
-
-
-
-monocle.function.Each[scalaz.OneAnd[List,Int],A]->monocle.function.Each[Int :: List[Int] :: shapeless.HNil,A]
-
-
-
-
-
-scala.languageFeature.postfixOps
-
-scala.languageFeature.postfixOps
-92 times = 18ms
-
-
-
-monocle.function.Each[List[Int],Int]->shapeless.Generic.Aux[List[Int],SGen]
-
-
-
-
-
-ComposeIssueExample.this.B[Nothing,String] => ComposeIssueExample.this.A[String,?U]
-
-ComposeIssueExample.this.B[Nothing,String] => ComposeIssueExample.this.A[String,?U]
-1 times = 1ms
-
-
-
-monocle.LensPolyExample.Semi.type => ?{def q_=: ?}
-
-monocle.LensPolyExample.Semi.type => ?{def q_=: ?}
-3 times = 1ms
-
-
-
-LensPolyExample.this.Foo[Int,Symbol] => ?{def shouldEqual: ?}
-
-LensPolyExample.this.Foo[Int,Symbol] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-LensPolyExample.this.Foo[Int,Symbol] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-LensPolyExample.this.Foo[Int,Symbol] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-List[Int] => ?{def applyIso: ?}
-
-List[Int] => ?{def applyIso: ?}
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil,Out]
-
-
-
-
-
-org.scalactic.Equality[Option[SymbolicSyntaxExample.this.Sofa]]
-
-org.scalactic.Equality[Option[SymbolicSyntaxExample.this.Sofa]]
-1 times = 4ms
-
-
-
-scalaz.Equal[Option[SymbolicSyntaxExample.this.Sofa]]
-
-scalaz.Equal[Option[SymbolicSyntaxExample.this.Sofa]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[Option[SymbolicSyntaxExample.this.Sofa]]->scalaz.Equal[Option[SymbolicSyntaxExample.this.Sofa]]
-
-
-
-
-
-monocle.function.At[Map[String,JsonExample.this.Json],String,A]
-
-monocle.function.At[Map[String,JsonExample.this.Json],String,A]
-1 times = 1ms
-
-
-
-StateExample.this._age.type => ?{def mod_: ?}
-
-StateExample.this._age.type => ?{def mod_: ?}
-1 times = 1ms
-
-
-
-org.scalactic.Equality[LensPolyExample.this.Foo[Int,Symbol]]
-
-org.scalactic.Equality[LensPolyExample.this.Foo[Int,Symbol]]
-1 times = 2ms
-
-
-
-scalaz.Equal[LensPolyExample.this.Foo[Int,Symbol]]
-
-scalaz.Equal[LensPolyExample.this.Foo[Int,Symbol]]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[LensPolyExample.this.Foo[Int,Symbol]]->scalaz.Equal[LensPolyExample.this.Foo[Int,Symbol]]
-
-
-
-
-
-monocle.function.Index[List[SymbolicSyntaxExample.this.Article],Int,A]
-
-monocle.function.Index[List[SymbolicSyntaxExample.this.Article],Int,A]
-1 times = 0ms
-
-
-
-monocle.function.Empty[String]
-
-monocle.function.Empty[String]
-1 times = 0ms
-
-
-
-monocle.function.Field6[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,A]
-
-monocle.function.Field6[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,A]
-1 times = 49ms
-
-
-
-monocle.function.Field6[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,A]->shapeless.ops.hlist.At.Aux[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._5.N,A]
-
-
-
-
-
-monocle.function.Field6[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,A]->shapeless.ops.hlist.ReplaceAt.Aux[Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._5.N,this.Out,(this.Out, Int :: String :: Boolean :: Float :: Char :: Long :: shapeless.HNil)]
-
-
-
-
-
-scalaz.Functor[F$macro$28]
-
-scalaz.Functor[F$macro$28]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Int :: shapeless.HNil]
-
-org.scalactic.Equality[Int :: shapeless.HNil]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[Int :: shapeless.HNil]->scalaz.Equal[Int :: shapeless.HNil]
-
-
-
-
-
-scalaz.Equal[(Int, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Long :: shapeless.HNil,String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,A]
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,A]
-1 times = 11ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-1 times = 9ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,A]->monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-monocle.function.Index[scala.collection.immutable.Map[String,Int],String,A]
-
-monocle.function.Index[scala.collection.immutable.Map[String,Int],String,A]
-1 times = 0ms
-
-
-
-((Int, String, Boolean)) => ?{def shouldEqual: ?}
-
-((Int, String, Boolean)) => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-((Int, String, Boolean)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Int, String, Boolean)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Reverse[scala.collection.immutable.Vector[Int],A]
-
-monocle.function.Reverse[scala.collection.immutable.Vector[Int],A]
-1 times = 27ms
-
-
-
-monocle.function.Reverse[scala.collection.immutable.Vector[Int],A]->shapeless.ops.tuple.Reverse.Aux[scala.collection.immutable.Vector[Int],A]
-
-
-
-
-
-monocle.function.Reverse[scala.collection.immutable.Vector[Int],A]->shapeless.ops.hlist.Reverse.Aux[scala.collection.immutable.Vector[Int],A]
-
-
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def applyPrism: ?}
-
-scala.collection.immutable.Vector[Int] => ?{def applyPrism: ?}
-1 times = 0ms
-
-
-
-F[List[JsonExample.this.Json]] => ?{def map: ?}
-
-F[List[JsonExample.this.Json]] => ?{def map: ?}
-1 times = 12ms
-
-
-
-F[List[JsonExample.this.Json]] => ?{def map: ?}->scalaz.Functor[F]
-
-
-
-
-
-scalaz.Equal[(Int, Boolean, String)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(Int, Boolean, String)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Int, Boolean, String)]->scalaz.Equal[Int]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[String,A]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,String,Out0]
-
-
-
-
-
-scalaz.Functor[F$macro$7]
-
-scalaz.Functor[F$macro$7]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-1 times = 13ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Long :: Boolean :: shapeless.HNil,String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long, Boolean)]->shapeless.ops.hlist.Reverse.Aux[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,L2]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long, Boolean)]->shapeless.ops.hlist.Tupler[Int :: Char :: Boolean :: Double :: String :: Long :: Boolean :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char, Boolean, Double, String, Long, Boolean)]->shapeless.Generic.Aux[this.Out,L1]
-
-
-
-
-
-org.scalactic.Equality[Stream[Int]]
-
-org.scalactic.Equality[Stream[Int]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[Stream[Int]]->scalaz.Equal[Stream[Int]]
-
-
-
-
-
-org.scalactic.Equality[Int ==>> String]
-
-org.scalactic.Equality[Int ==>> String]
-1 times = 6ms
-
-
-
-org.scalactic.Equality[Int ==>> String]->scalaz.Equal[Int ==>> String]
-
-
-
-
-
-LensMonoExample.this.Person => ?{def shouldEqual: ?}
-
-LensMonoExample.this.Person => ?{def shouldEqual: ?}
-4 times = 15ms
-
-
-
-LensMonoExample.this.Person => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-LensMonoExample.this.Person => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def applyTraversal: ?}
-
-scala.collection.immutable.Map[String,Int] => ?{def applyTraversal: ?}
-3 times = 2ms
-
-
-
-monocle.function.Reverse[Int :: String :: Boolean :: shapeless.HNil,A]
-
-monocle.function.Reverse[Int :: String :: Boolean :: shapeless.HNil,A]
-1 times = 42ms
-
-
-
-monocle.function.Reverse[Int :: String :: Boolean :: shapeless.HNil,A]->shapeless.ops.hlist.Reverse.Aux[Boolean :: String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-monocle.function.Reverse[Int :: String :: Boolean :: shapeless.HNil,A]->shapeless.ops.tuple.Reverse.Aux[Int :: String :: Boolean :: shapeless.HNil,A]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: String :: Boolean :: shapeless.HNil,A]
-
-shapeless.ops.hlist.Reverse.Aux[Int :: String :: Boolean :: shapeless.HNil,A]
-1 times = 11ms
-
-
-
-monocle.function.Reverse[Int :: String :: Boolean :: shapeless.HNil,A]->shapeless.ops.hlist.Reverse.Aux[Int :: String :: Boolean :: shapeless.HNil,A]
-
-
-
-
-
-JsonExample.this.Json => ?{def shouldEqual: ?}
-
-JsonExample.this.Json => ?{def shouldEqual: ?}
-6 times = 18ms
-
-
-
-JsonExample.this.Json => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-JsonExample.this.Json => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,A]
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,A]
-1 times = 5ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,A]->monocle.function.Each[Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-monocle.function.Each[(Int, Int, Int),A]
-
-monocle.function.Each[(Int, Int, Int),A]
-1 times = 28ms
-
-
-
-monocle.function.Each[(Int, Int, Int),A]->monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,A]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int),SGen]
-
-shapeless.Generic.Aux[(Int, Int, Int),SGen]
-1 times = 20ms
-
-
-
-monocle.function.Each[(Int, Int, Int),A]->shapeless.Generic.Aux[(Int, Int, Int),SGen]
-
-
-
-
-
-(Int => (Int => (Int => (Int => (Int => Int))))) => ?{def applyIso: ?}
-
-(Int => (Int => (Int => (Int => (Int => Int))))) => ?{def applyIso: ?}
-1 times = 0ms
-
-
-
-scalaz.Equal[SymbolicSyntaxExample.this.Sofa]
-
-scalaz.Equal[SymbolicSyntaxExample.this.Sofa]
-1 times = 0ms
-
-
-
-StateExample.this._age.type => ?{def modo: ?}
-
-StateExample.this._age.type => ?{def modo: ?}
-1 times = 1ms
-
-
-
-scalaz.Validation[Nothing,Int] => ?{def shouldEqual: ?}
-
-scalaz.Validation[Nothing,Int] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-scalaz.Validation[Nothing,Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Validation[Nothing,Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.Generic.Aux[HListExample.this.Example,A]
-
-shapeless.Generic.Aux[HListExample.this.Example,A]
-1 times = 29ms
-
-
-
-org.scalactic.Equality[Option[String]]
-
-org.scalactic.Equality[Option[String]]
-1 times = 2ms
-
-
-
-scalaz.Equal[Option[String]]
-
-scalaz.Equal[Option[String]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[Option[String]]->scalaz.Equal[Option[String]]
-
-
-
-
-
-monocle.function.Cons[scala.collection.immutable.Vector[Int],A]
-
-monocle.function.Cons[scala.collection.immutable.Vector[Int],A]
-1 times = 0ms
-
-
-
-Boolean => ?{def shouldEqual: ?}
-
-Boolean => ?{def shouldEqual: ?}
-18 times = 360ms
-
-
-
-Boolean => ?{def shouldEqual: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-Boolean => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Boolean => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil,Out0]
-1 times = 7ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,String :: Boolean :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,String :: Boolean :: shapeless.HNil,Out]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,String :: Boolean :: shapeless.HNil,Out]
-
-
-
-
-
-monocle.function.Snoc1[(Int, Boolean),I,L]
-
-monocle.function.Snoc1[(Int, Boolean),I,L]
-1 times = 6ms
-
-
-
-monocle.function.Snoc1[(Int, Boolean),I,L]->shapeless.ops.hlist.Init.Aux[(Int, Boolean),I]
-
-
-
-
-
-String('cba') => ?{def failure: ?}
-
-String('cba') => ?{def failure: ?}
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Init[shapeless.HNil]
-
-shapeless.ops.hlist.Init[shapeless.HNil]
-2 times = 0ms
-
-
-
-shapeless.ops.hlist.Init[Boolean :: shapeless.HNil]->shapeless.ops.hlist.Init[shapeless.HNil]
-
-
-
-
-
-Option[Char] => ?{def shouldEqual: ?}
-
-Option[Char] => ?{def shouldEqual: ?}
-4 times = 10ms
-
-
-
-Option[Char] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[Char] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Traverse[[β$11$]Map[String,β$11$]]->scalaz.std.map.BuildKeyConstraint[String]
-
-
-
-
-
-StateExample.this._oldAge.type => ?{def extract: ?}
-
-StateExample.this._oldAge.type => ?{def extract: ?}
-2 times = 3ms
-
-
-
-StateExample.this._oldAge.type => ?{def modo: ?}
-
-StateExample.this._oldAge.type => ?{def modo: ?}
-4 times = 5ms
-
-
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def applyIso: ?}
-
-Int :: String :: Boolean :: shapeless.HNil => ?{def applyIso: ?}
-1 times = 1ms
-
-
-
-String ==>> Int => ?{def applyTraversal: ?}
-
-String ==>> Int => ?{def applyTraversal: ?}
-3 times = 2ms
-
-
-
-Point$3 => ?{def shouldEqual: ?}
-
-Point$3 => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-Point$3 => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Point$3 => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-String('Hello') => ?{def applyOptional: ?}
-
-String('Hello') => ?{def applyOptional: ?}
-4 times = 3ms
-
-
-
-scalaz.Equal[(String, Int, Boolean)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(String, Int, Boolean)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(String, Int, Boolean)]->scalaz.Equal[Int]
-
-
-
-
-
-Int(79) => monocle.refined.IntBits
-
-Int(79) => monocle.refined.IntBits
-1 times = 81ms
-
-
-
-Int(79) => monocle.refined.IntBits->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-Int(79) => monocle.refined.IntBits->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-Int(79) => monocle.refined.IntBits->eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]]
-
-
-
-
-
-Option[(Int, List[Int])] => ?{def shouldEqual: ?}
-
-Option[(Int, List[Int])] => ?{def shouldEqual: ?}
-2 times = 5ms
-
-
-
-Option[(Int, List[Int])] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[(Int, List[Int])] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Applicative[F]
-
-scalaz.Applicative[F]
-3 times = 9ms
-
-
-
-Int(0) => monocle.refined.CharBits
-
-Int(0) => monocle.refined.CharBits
-2 times = 119ms
-
-
-
-Int(0) => monocle.refined.CharBits->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-Int(0) => monocle.refined.CharBits->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-Int(0) => monocle.refined.CharBits->eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(15)]]
-
-
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Set[Int]]
-
-org.scalactic.Equality[scala.collection.immutable.Set[Int]]
-2 times = 5ms
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Set[Int]]->scalaz.Equal[scala.collection.immutable.Set[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: String :: Boolean :: shapeless.HNil,shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: String :: Boolean :: shapeless.HNil,shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]->shapeless.ops.hlist.Reverse.Reverse0[Int :: String :: Boolean :: shapeless.HNil,shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-Double => ?{def shouldEqual: ?}
-
-Double => ?{def shouldEqual: ?}
-4 times = 12ms
-
-
-
-Double => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Double => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Float]
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Float]
-1 times = 13ms
-
-
-
-shapeless.ops.coproduct.Inject[CoproductExample.this.ISB,Float]->shapeless.ops.coproduct.Inject[String :+: Boolean :+: shapeless.CNil,Float]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),A]->shapeless.ops.hlist.Tupler[Char :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),A]->shapeless.ops.hlist.Reverse.Aux[Int :: Char :: shapeless.HNil,L2]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),A]->shapeless.Generic.Aux[(Int, Char),L1]
-
-
-
-
-
-shapeless.ops.coproduct.Selector[shapeless.CNil,Int]
-
-shapeless.ops.coproduct.Selector[shapeless.CNil,Int]
-1 times = 0ms
-
-
-
-myStore.type => ?{def &|->: ?}
-
-myStore.type => ?{def &|->: ?}
-2 times = 1ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[Int]]
-
-scalaz.Equal[scalaz.Id.Id[Int]]
-2 times = 2ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]->monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-String :: Int :: shapeless.HNil => ?{def ::: ?}
-
-String :: Int :: shapeless.HNil => ?{def ::: ?}
-1 times = 0ms
-
-
-
-List[Int] => ?{def applyTraversal: ?}
-
-List[Int] => ?{def applyTraversal: ?}
-3 times = 2ms
-
-
-
-shapeless.ops.hlist.At.Aux[(String, Int),shapeless.nat._0.N,A]
-
-shapeless.ops.hlist.At.Aux[(String, Int),shapeless.nat._0.N,A]
-1 times = 3ms
-
-
-
-StateExample.this._nameGet.type => ?{def extracts: ?}
-
-StateExample.this._nameGet.type => ?{def extracts: ?}
-1 times = 0ms
-
-
-
-((Int, Symbol)) => ?{def ->: ?}
-
-((Int, Symbol)) => ?{def ->: ?}
-2 times = 2ms
-
-
-
-scalaz.Equal[LensPolyExample.this.Foo[Symbol,Int]]
-
-scalaz.Equal[LensPolyExample.this.Foo[Symbol,Int]]
-1 times = 0ms
-
-
-
-monocle.function.Cons[List[Int],A]
-
-monocle.function.Cons[List[Int],A]
-1 times = 0ms
-
-
-
-scalaz.Equal[Option[SymbolicSyntaxExample.this.Sofa]]->scalaz.Equal[SymbolicSyntaxExample.this.Sofa]
-
-
-
-
-
-scalaz.Equal[Option[String]]->scalaz.Equal[String]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,String :: Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]->shapeless.ops.hlist.Reverse.Reverse0[String :: Boolean :: shapeless.HNil,Int :: shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil]
-
-
-
-
-
-monocle.function.Index[Map[String,String],String,A]
-
-monocle.function.Index[Map[String,String],String,A]
-1 times = 40ms
-
-
-
-Char => ?{def shouldEqual: ?}
-
-Char => ?{def shouldEqual: ?}
-3 times = 14ms
-
-
-
-Char => ?{def shouldEqual: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-Char => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Char => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Functor[F$macro$17]
-
-scalaz.Functor[F$macro$17]
-1 times = 0ms
-
-
-
-scalaz.Order[E]->scalaz.Order[A]
-
-
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Unit)]]
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Unit)]]
-8 times = 37ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[(StateExample.this.Person, Unit)]]->scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Unit)]]
-
-
-
-
-
-scalaz.Functor[F$macro$8]
-
-scalaz.Functor[F$macro$8]
-1 times = 0ms
-
-
-
-StateExample.this._age.type => ?{def extracts: ?}
-
-StateExample.this._age.type => ?{def extracts: ?}
-1 times = 1ms
-
-
-
-monocle.function.Snoc[scala.collection.immutable.Vector[Int],Int]
-
-monocle.function.Snoc[scala.collection.immutable.Vector[Int],Int]
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$3]
-
-scalaz.Functor[F$macro$3]
-1 times = 2ms
-
-
-
-String('') => ?{def applyPrism: ?}
-
-String('') => ?{def applyPrism: ?}
-1 times = 0ms
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Map[String,Int]]
-
-org.scalactic.Equality[scala.collection.immutable.Map[String,Int]]
-7 times = 29ms
-
-
-
-scalaz.Equal[scala.collection.immutable.Map[String,Int]]
-
-scalaz.Equal[scala.collection.immutable.Map[String,Int]]
-7 times = 23ms
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Map[String,Int]]->scalaz.Equal[scala.collection.immutable.Map[String,Int]]
-
-
-
-
-
-StateExample.this._oldAge.type => ?{def mod: ?}
-
-StateExample.this._oldAge.type => ?{def mod: ?}
-2 times = 4ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: shapeless.HNil,shapeless.nat._0.N,Int,(Int, Int :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Int :: shapeless.HNil,shapeless.nat._0.N,Int,(Int, Int :: shapeless.HNil)]
-1 times = 2ms
-
-
-
-((Int, Char, Boolean, Double, String, Long)) => ?{def applyIso: ?}
-
-((Int, Char, Boolean, Double, String, Long)) => ?{def applyIso: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => String
-
-((Nothing, Nothing)) => String
-3 times = 12ms
-
-
-
-((Nothing, Nothing)) => String->eu.timepit.refined.api.RefType[Tuple2]
-
-
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]]->eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.GreaterEqual[Int(0)],RA]
-
-
-
-
-
-eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]]->eu.timepit.refined.api.Validate.Aux[Int,eu.timepit.refined.numeric.LessEqual[Int(31)],RB]
-
-
-
-
-
-scalaz.Functor[F$macro$25]
-
-scalaz.Functor[F$macro$25]
-1 times = 0ms
-
-
-
-scalaz.Equal[(Boolean, String, Double, Int, Int)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(Boolean, String, Double, Int, Int)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Boolean, String, Double, Int, Int)]->scalaz.Equal[Double]
-
-
-
-
-
-scalaz.Equal[(Boolean, String, Double, Int, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.function.Field1[other.Custom,Int]
-
-monocle.function.Field1[other.Custom,Int]
-1 times = 0ms
-
-
-
-Option[Unit] => ?{def shouldBe: ?}
-
-Option[Unit] => ?{def shouldBe: ?}
-1 times = 3ms
-
-
-
-Option[Unit] => ?{def shouldBe: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[Unit] => ?{def shouldBe: ?}->org.scalactic.Prettifier
-
-
-
-
-
-String :: Boolean :: shapeless.HNil => ?{def shouldEqual: ?}
-
-String :: Boolean :: shapeless.HNil => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-String :: Boolean :: shapeless.HNil => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-String :: Boolean :: shapeless.HNil => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Field1[Int :: shapeless.HNil,Int]
-
-monocle.function.Field1[Int :: shapeless.HNil,Int]
-1 times = 6ms
-
-
-
-monocle.function.Field1[Int :: shapeless.HNil,Int]->shapeless.ops.hlist.At.Aux[Int :: shapeless.HNil,shapeless.nat._0.N,Int]
-
-
-
-
-
-monocle.function.Field1[Int :: shapeless.HNil,Int]->shapeless.ops.hlist.ReplaceAt.Aux[Int :: shapeless.HNil,shapeless.nat._0.N,Int,(Int, Int :: shapeless.HNil)]
-
-
-
-
-
-scalaz.Functor[scalaz.Id.Id]
-
-scalaz.Functor[scalaz.Id.Id]
-18 times = 10ms
-
-
-
-scalaz.Equal[scalaz.Id.Id[(StateExample.this.Person, Int)]]->scalaz.Equal[StateExample.this.Person]
-
-
-
-
-
-((Int, Boolean, String)) => ?{def applyLens: ?}
-
-((Int, Boolean, String)) => ?{def applyLens: ?}
-2 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-scalaz.Equal[(Int, Int, Int, Int, Int, Int)]
-
-scalaz.Equal[(Int, Int, Int, Int, Int, Int)]
-1 times = 8ms
-
-
-
-scalaz.Equal[(Int, Int, Int, Int, Int, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-Long :: shapeless.HNil => ?{def ::: ?}
-
-Long :: shapeless.HNil => ?{def ::: ?}
-1 times = 0ms
-
-
-
-monocle.function.Cons1[(Int, Boolean, String),H,T]
-
-monocle.function.Cons1[(Int, Boolean, String),H,T]
-1 times = 5ms
-
-
-
-monocle.function.Cons1[(Int, Boolean, String),H,T]->shapeless.ops.hlist.IsHCons.Aux[(Int, Boolean, String),H,T]
-
-
-
-
-
-scalaz.OneAnd[List,Int] => ?{def applyOptional: ?}
-
-scalaz.OneAnd[List,Int] => ?{def applyOptional: ?}
-2 times = 1ms
-
-
-
-monocle.function.Each[scala.collection.immutable.Map[String,Int],A]
-
-monocle.function.Each[scala.collection.immutable.Map[String,Int],A]
-1 times = 21ms
-
-
-
-monocle.function.Each[scala.collection.immutable.Map[String,Int],A]->shapeless.Generic.Aux[scala.collection.immutable.Map[String,Int],SGen]
-
-
-
-
-
-monocle.function.Snoc[scala.collection.immutable.Vector[Int],A]
-
-monocle.function.Snoc[scala.collection.immutable.Vector[Int],A]
-1 times = 0ms
-
-
-
-String('Three') => ?{def ->: ?}
-
-String('Three') => ?{def ->: ?}
-2 times = 11ms
-
-
-
-String('Three') => ?{def ->: ?}->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-StateExample.this._oldAge.type => ?{def assigno: ?}
-
-StateExample.this._oldAge.type => ?{def assigno: ?}
-2 times = 3ms
-
-
-
-scalaz.Equal[(List[Int], Int)]->scalaz.Equal[List[Int]]
-
-
-
-
-
-scalaz.Equal[(List[Int], Int)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[scala.collection.immutable.Map[String,Int]]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[scala.collection.immutable.Map[String,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-ComposeIssueExample.this.aI2S.type => ?{def compose(x$1: ? >: ComposeIssueExample.this.B[Nothing,String]): ?}
-
-ComposeIssueExample.this.aI2S.type => ?{def compose(x$1: ? >: ComposeIssueExample.this.B[Nothing,String]): ?}
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: String :: Long :: shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: String :: Long :: shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out]
-1 times = 7ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: String :: Long :: shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Double :: String :: Long :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-Stream[Int] => ?{def shouldEqual: ?}
-
-Stream[Int] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-Stream[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Stream[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-(=> Long) => Int
-
-(=> Long) => Int
-57 times = 93ms
-
-
-
-StateExample.this._age.type => ?{def assigno: ?}
-
-StateExample.this._age.type => ?{def assigno: ?}
-1 times = 1ms
-
-
-
-String ==>> Int => ?{def applyLens: ?}
-
-String ==>> Int => ?{def applyLens: ?}
-4 times = 18ms
-
-
-
-String ==>> Int => ?{def applyLens: ?}->eu.timepit.refined.api.RefType[scalaz.==>>]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Char :: Int :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Char :: Int :: shapeless.HNil,L2]
-1 times = 7ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Char :: Int :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Char :: Int :: shapeless.HNil,Out0]
-
-
-
-
-
-scalaz.Equal[Int \&/ String]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[Int \&/ String]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[Int \&/ String]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[Int \&/ String]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.generic.Example => ?{def applyIso: ?}
-
-monocle.generic.Example => ?{def applyIso: ?}
-1 times = 2ms
-
-
-
-Int @@ scalaz.Tags.Max => ?{def applyIso: ?}
-
-Int @@ scalaz.Tags.Max => ?{def applyIso: ?}
-1 times = 5ms
-
-
-
-m.type => ?{def traverse: ?}
-
-m.type => ?{def traverse: ?}
-1 times = 38ms
-
-
-
-m.type => ?{def traverse: ?}->scalaz.Unapply[scalaz.Traverse,Map[String,JsonExample.this.Json]]
-
-
-
-
-
-scalaz.Traverse[scala.collection.immutable.Iterable]
-
-scalaz.Traverse[scala.collection.immutable.Iterable]
-1 times = 1ms
-
-
-
-m.type => ?{def traverse: ?}->scalaz.Traverse[scala.collection.immutable.Iterable]
-
-
-
-
-
-shapeless.Generic.Aux[String,L1]
-
-shapeless.Generic.Aux[String,L1]
-1 times = 4ms
-
-
-
-org.scalactic.Equality[LensPolyExample.this.Foo[Symbol,Int]]
-
-org.scalactic.Equality[LensPolyExample.this.Foo[Symbol,Int]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[LensPolyExample.this.Foo[Symbol,Int]]->scalaz.Equal[LensPolyExample.this.Foo[Symbol,Int]]
-
-
-
-
-
-scalaz.Equal[Int \/ String]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[Int \/ String]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[Int \/ String]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[Int \/ String]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Vector[Int]]
-
-scalaz.Equal[Vector[Int]]
-1 times = 1ms
-
-
-
-scalaz.Equal[Vector[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.function.FilterIndex[scala.collection.immutable.Vector[Int],Int,A]
-
-monocle.function.FilterIndex[scala.collection.immutable.Vector[Int],Int,A]
-1 times = 0ms
-
-
-
-monocle.function.Curry[F,Int => (Int => (Int => (Int => (Int => Int))))]
-
-monocle.function.Curry[F,Int => (Int => (Int => (Int => (Int => Int))))]
-1 times = 7ms
-
-
-
-Int(-1) => monocle.refined.IntBits
-
-Int(-1) => monocle.refined.IntBits
-1 times = 71ms
-
-
-
-Int(-1) => monocle.refined.IntBits->eu.timepit.refined.api.RefType[F]
-
-
-
-
-
-Int(-1) => monocle.refined.IntBits->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-Int(-1) => monocle.refined.IntBits->eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Interval.Closed[Int(0),Int(31)]]
-
-
-
-
-
-scalaz.Functor[F$macro$20]
-
-scalaz.Functor[F$macro$20]
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$13]
-
-scalaz.Functor[F$macro$13]
-1 times = 0ms
-
-
-
-Int(123) => ?{def success: ?}
-
-Int(123) => ?{def success: ?}
-2 times = 3ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Long :: shapeless.HNil,shapeless._0,this.Out,(this.Out, Long :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Long :: shapeless.HNil,shapeless._0,this.Out,(this.Out, Long :: shapeless.HNil)]
-1 times = 3ms
-
-
-
-((String, Int)) => ?{def applyLens: ?}
-
-((String, Int)) => ?{def applyLens: ?}
-2 times = 2ms
-
-
-
-scalaz.Functor[F$macro$11]
-
-scalaz.Functor[F$macro$11]
-1 times = 3ms
-
-
-
-(=> List[?A]) => S
-
-(=> List[?A]) => S
-1 times = 0ms
-
-
-
-(=> Unit) => monocle.function.Each[?,?]
-
-(=> Unit) => monocle.function.Each[?,?]
-1 times = 0ms
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Unit)] => ?{def shouldEqual: ?}
-
-scalaz.Id.Id[(StateExample.this.Person, Unit)] => ?{def shouldEqual: ?}
-8 times = 20ms
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Unit)] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Id.Id[(StateExample.this.Person, Unit)] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-org.scalactic.Equality[scalaz.IList[Int]]
-
-org.scalactic.Equality[scalaz.IList[Int]]
-6 times = 16ms
-
-
-
-org.scalactic.Equality[scalaz.IList[Int]]->scalaz.Equal[scalaz.IList[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: String :: Boolean :: shapeless.HNil,A]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: String :: Boolean :: shapeless.HNil,Out0]
-
-
-
-
-
-CoproductExample.this.ISB => ?{def shouldEqual: ?}
-
-CoproductExample.this.ISB => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-CoproductExample.this.ISB => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-CoproductExample.this.ISB => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-org.scalactic.Equality[scalaz.Validation[Nothing,Int]]
-
-org.scalactic.Equality[scalaz.Validation[Nothing,Int]]
-1 times = 156ms
-
-
-
-org.scalactic.Equality[scalaz.Validation[Nothing,Int]]->scalaz.Equal[scalaz.Validation[Nothing,Int]]
-
-
-
-
-
-Boolean :: shapeless.HNil => ?{def ::: ?}
-
-Boolean :: shapeless.HNil => ?{def ::: ?}
-11 times = 14ms
-
-
-
-monocle.function.Each[scalaz.IList[Int],Int]
-
-monocle.function.Each[scalaz.IList[Int],Int]
-2 times = 1ms
-
-
-
-Vector[Int] => ?{def shouldEqual: ?}
-
-Vector[Int] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-Vector[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Vector[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Stream[Int]]
-
-org.scalactic.Equality[scala.collection.immutable.Stream[Int]]
-5 times = 14ms
-
-
-
-org.scalactic.Equality[scala.collection.immutable.Stream[Int]]->scalaz.Equal[scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-Int ==>> String => ?{def shouldEqual: ?}
-
-Int ==>> String => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-Int ==>> String => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Int ==>> String => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.function.Field1[(String, Int),A]
-
-monocle.function.Field1[(String, Int),A]
-1 times = 5ms
-
-
-
-monocle.function.Field1[(String, Int),A]->shapeless.ops.hlist.At.Aux[(String, Int),shapeless.nat._0.N,A]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Long :: shapeless.HNil,shapeless.nat._1,this.Out,(this.Out, Char :: Long :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Long :: shapeless.HNil,shapeless._0,this.Out,(this.Out, Long :: shapeless.HNil)]
-
-
-
-
-
-scalaz.Validation[?X,Int] => scalaz.Validation[E,A]
-
-scalaz.Validation[?X,Int] => scalaz.Validation[E,A]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.At[Boolean :: Float :: Char :: Long :: shapeless.HNil,shapeless.nat._3]->shapeless.ops.hlist.At[Float :: Char :: Long :: shapeless.HNil,shapeless.nat._2]
-
-
-
-
-
-monocle.function.Each[(Int, Int, Int, Int, Int, Int),A]
-
-monocle.function.Each[(Int, Int, Int, Int, Int, Int),A]
-1 times = 41ms
-
-
-
-monocle.function.Each[(Int, Int, Int, Int, Int, Int),A]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),SGen]
-
-
-
-
-
-monocle.function.Each[(Int, Int, Int, Int, Int, Int),A]->monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,A]
-
-
-
-
-
-Option[Int \/ String] => ?{def shouldEqual: ?}
-
-Option[Int / String] => ?{def shouldEqual: ?}
-3 times = 15ms
-
-
-
-Option[Int \/ String] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Option[Int \/ String] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-StateExample.this._coolGuy.type => ?{def modo: ?}
-
-StateExample.this._coolGuy.type => ?{def modo: ?}
-2 times = 2ms
-
-
-
-((Int, Double) => Double) => ?{def applyIso: ?}
-
-((Int, Double) => Double) => ?{def applyIso: ?}
-1 times = 0ms
-
-
-
-Option[Int] => ?{def applyTraversal: ?}
-
-Option[Int] => ?{def applyTraversal: ?}
-2 times = 3ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[Int]]
-
-org.scalactic.Equality[scalaz.Id.Id[Int]]
-2 times = 4ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[Int]]->scalaz.Equal[scalaz.Id.Id[Int]]
-
-
-
-
-
-Boolean :: String :: Int :: shapeless.HNil => ?{def shouldEqual: ?}
-
-Boolean :: String :: Int :: shapeless.HNil => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-Boolean :: String :: Int :: shapeless.HNil => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Boolean :: String :: Int :: shapeless.HNil => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Long :: shapeless.HNil,Double :: Boolean :: Char :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Double :: String :: Long :: shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-Unit => monocle.function.Each[?,?]
-
-Unit => monocle.function.Each[?,?]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out0]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: shapeless.HNil,Char :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-String => Double
-
-String => Double
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$12]
-
-scalaz.Functor[F$macro$12]
-1 times = 0ms
-
-
-
-shapeless.ops.coproduct.Selector[String :+: Boolean :+: shapeless.CNil,Boolean]->shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Boolean]
-
-
-
-
-
-scalaz.Functor[F$macro$132]
-
-scalaz.Functor[F$macro$132]
-1 times = 1ms
-
-
-
-monocle.function.FilterIndex[scala.collection.immutable.Map[String,Int],String,A]
-
-monocle.function.FilterIndex[scala.collection.immutable.Map[String,Int],String,A]
-1 times = 1ms
-
-
-
-String('siblings') => ?{def ->: ?}
-
-String('siblings') => ?{def ->: ?}
-7 times = 8ms
-
-
-
-monocle.function.Plated[JsonExample.this.Json]
-
-monocle.function.Plated[JsonExample.this.Json]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Boolean :: Char :: Int :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Boolean :: Char :: Int :: shapeless.HNil,Out0]
-
-
-
-
-
-org.scalactic.Equality[Int]
-
-org.scalactic.Equality[Int]
-26 times = 53ms
-
-
-
-org.scalactic.Equality[Int]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.function.Each[S,A]
-
-monocle.function.Each[S,A]
-1 times = 44ms
-
-
-
-monocle.function.Each[S,A]->monocle.function.Each[T[A],A]
-
-
-
-
-
-monocle.function.Each[S,A]->scalaz.Traverse[S]
-
-
-
-
-
-Int :: shapeless.HNil => ?{def ::: ?}
-
-Int :: shapeless.HNil => ?{def ::: ?}
-1 times = 0ms
-
-
-
-scalaz.Equal[(Int, scalaz.Tree[Int])]->scalaz.Equal[scalaz.Tree[Int]]
-
-
-
-
-
-scalaz.Equal[(Int, scalaz.Tree[Int])]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Stream[scalaz.Tree[Int]]]->scalaz.Equal[scalaz.Tree[Int]]
-
-
-
-
-
-scalaz.Id.Id[Int] => ?{def shouldEqual: ?}
-
-scalaz.Id.Id[Int] => ?{def shouldEqual: ?}
-2 times = 8ms
-
-
-
-scalaz.Id.Id[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Id.Id[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Char :: Long :: shapeless.HNil => ?{def ::: ?}
-
-Char :: Long :: shapeless.HNil => ?{def ::: ?}
-1 times = 0ms
-
-
-
-StateExample.this._oldAge.type => ?{def mod_: ?}
-
-StateExample.this._oldAge.type => ?{def mod_: ?}
-2 times = 2ms
-
-
-
-monocle.function.At[Char,monocle.refined.CharBits,A]
-
-monocle.function.At[Char,monocle.refined.CharBits,A]
-1 times = 0ms
-
-
-
-monocle.function.Cons[scala.collection.immutable.Stream[Int],A]
-
-monocle.function.Cons[scala.collection.immutable.Stream[Int],A]
-1 times = 0ms
-
-
-
-other.Custom => ?{def shouldEqual: ?}
-
-other.Custom => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-other.Custom => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-other.Custom => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,String :: Boolean :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[String :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]
-
-
-
-
-
-monocle.function.Snoc[String,A]
-
-monocle.function.Snoc[String,A]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Stream[Int] => ?{def applyTraversal: ?}
-
-scala.collection.immutable.Stream[Int] => ?{def applyTraversal: ?}
-2 times = 5ms
-
-
-
-org.scalactic.Equality[Option[(Int, scala.collection.immutable.Vector[Int])]]
-
-org.scalactic.Equality[Option[(Int, scala.collection.immutable.Vector[Int])]]
-1 times = 7ms
-
-
-
-scalaz.Equal[Option[(Int, scala.collection.immutable.Vector[Int])]]
-
-scalaz.Equal[Option[(Int, scala.collection.immutable.Vector[Int])]]
-1 times = 6ms
-
-
-
-org.scalactic.Equality[Option[(Int, scala.collection.immutable.Vector[Int])]]->scalaz.Equal[Option[(Int, scala.collection.immutable.Vector[Int])]]
-
-
-
-
-
-scalaz.IList[Int] => ?{def applyTraversal: ?}
-
-scalaz.IList[Int] => ?{def applyTraversal: ?}
-2 times = 1ms
-
-
-
-org.scalactic.Equality[Vector[Int]]
-
-org.scalactic.Equality[Vector[Int]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[Vector[Int]]->scalaz.Equal[Vector[Int]]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char)]->shapeless.ops.hlist.Tupler[Int :: Char :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char)]->shapeless.Generic.Aux[this.Out,L1]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[this.Out,(Int, Char)]->shapeless.ops.hlist.Reverse.Aux[Char :: Int :: shapeless.HNil,L2]
-
-
-
-
-
-((Int, Boolean, String)) => ?{def shouldEqual: ?}
-
-((Int, Boolean, String)) => ?{def shouldEqual: ?}
-2 times = 5ms
-
-
-
-((Int, Boolean, String)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-((Int, Boolean, String)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Map[Int,String] => ?{def shouldEqual: ?}
-
-Map[Int,String] => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-Map[Int,String] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Map[Int,String] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char, Boolean, Double, String, Long, Boolean),A]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char, Boolean, Double, String, Long, Boolean),Out0]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: shapeless.HNil,Out0]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: Boolean :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: shapeless.HNil,Out0]
-
-
-
-
-
-monocle.function.Index[List[JsonExample.this.Json],Int,A]
-
-monocle.function.Index[List[JsonExample.this.Json],Int,A]
-1 times = 23ms
-
-
-
-org.scalactic.Equality[LensMonoExample.this.Person]
-
-org.scalactic.Equality[LensMonoExample.this.Person]
-4 times = 12ms
-
-
-
-org.scalactic.Equality[LensMonoExample.this.Person]->scalaz.Equal[LensMonoExample.this.Person]
-
-
-
-
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Int]->shapeless.ops.coproduct.Selector[shapeless.CNil,Int]
-
-
-
-
-
-monocle.function.Snoc1[(Int, Boolean, String),I,L]
-
-monocle.function.Snoc1[(Int, Boolean, String),I,L]
-1 times = 6ms
-
-
-
-monocle.function.Snoc1[(Int, Boolean, String),I,L]->shapeless.ops.hlist.Init.Aux[(Int, Boolean, String),I]
-
-
-
-
-
-monocle.function.Each[List[JsonExample.this.Json],A]
-
-monocle.function.Each[List[JsonExample.this.Json],A]
-1 times = 313ms
-
-
-
-shapeless.Generic.Aux[List[JsonExample.this.Json],SGen]
-
-shapeless.Generic.Aux[List[JsonExample.this.Json],SGen]
-1 times = 308ms
-
-
-
-monocle.function.Each[List[JsonExample.this.Json],A]->shapeless.Generic.Aux[List[JsonExample.this.Json],SGen]
-
-
-
-
-
-String => Int
-
-String => Int
-52 times = 16ms
-
-
-
-scalaz.Functor[F$macro$133]
-
-scalaz.Functor[F$macro$133]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: Boolean :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: Boolean :: shapeless.HNil,Out]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Long :: Boolean :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Long :: String :: Double :: Boolean :: Char :: Int :: shapeless.HNil,Boolean :: shapeless.HNil,Out]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[String,A]->shapeless.Generic.Aux[String,L1]
-
-
-
-
-
-monocle.function.Each[Int :: List[Int] :: shapeless.HNil,A]->shapeless.Generic.Aux[Int :: List[Int] :: shapeless.HNil,SGen]
-
-
-
-
-
-monocle.function.Each[Int :: List[Int] :: shapeless.HNil,A]->monocle.function.Each[List[Int] :: shapeless.HNil,Int]
-
-
-
-
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Int]->shapeless.ops.coproduct.Inject[shapeless.CNil,Int]
-
-
-
-
-
-scalaz.Equal[Option[(Int, scala.collection.immutable.Vector[Int])]]->scalaz.Equal[(Int, scala.collection.immutable.Vector[Int])]
-
-
-
-
-
-Int \&/ String => ?{def shouldEqual: ?}
-
-Int &/ String => ?{def shouldEqual: ?}
-2 times = 5ms
-
-
-
-Int \&/ String => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Int \&/ String => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def applyOptional: ?}
-
-scala.collection.immutable.Vector[Int] => ?{def applyOptional: ?}
-5 times = 3ms
-
-
-
-StateExample.this._oldAge.type => ?{def extracts: ?}
-
-StateExample.this._oldAge.type => ?{def extracts: ?}
-2 times = 2ms
-
-
-
-String('hello') => ?{def applyOptional: ?}
-
-String('hello') => ?{def applyOptional: ?}
-2 times = 1ms
-
-
-
-StateExample.this._nameGet.type => ?{def extract: ?}
-
-StateExample.this._nameGet.type => ?{def extract: ?}
-1 times = 1ms
-
-
-
-scalaz.Equal[Option[(Int, List[Int])]]->scalaz.Equal[(Int, List[Int])]
-
-
-
-
-
-Int(5) => ?{def left: ?}
-
-Int(5) => ?{def left: ?}
-1 times = 0ms
-
-
-
-((Int, Char, Boolean)) => ?{def applyIso: ?}
-
-((Int, Char, Boolean)) => ?{def applyIso: ?}
-1 times = 0ms
-
-
-
-org.scalactic.Equality[(Int, Int, Int, Int, Int, Int)]
-
-org.scalactic.Equality[(Int, Int, Int, Int, Int, Int)]
-1 times = 8ms
-
-
-
-org.scalactic.Equality[(Int, Int, Int, Int, Int, Int)]->scalaz.Equal[(Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-String('socket_timeout') => ?{def ->: ?}
-
-String('socket_timeout') => ?{def ->: ?}
-1 times = 1ms
-
-
-
diff --git a/docs/monocle-test-suite-flamegraph.svg b/docs/monocle-test-suite-flamegraph.svg
deleted file mode 100644
index 6a162b6..0000000
--- a/docs/monocle-test-suite-flamegraph.svg
+++ /dev/null
@@ -1,5878 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Flame Graph
-
-Reset Zoom
-Search
-
-
-org.scalacheck.Cogen[(List[Int], Int)] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar => monocle.refined.UpperCaseChar] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Cogen[Char] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)] (19 ms, 0.15%)
-
-
-
-org.scalacheck.Cogen[monocle.function.CList] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[(Char, scalaz.IList[Char])] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[List[A]] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar => monocle.refined.LowerCaseChar] (18 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[Either[Unit,Int]] (44 ms, 0.36%)
-
-
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,Double :: shapeless.HNil] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[Boolean \/ Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Char] (29 ms, 0.24%)
-
-
-
-org.scalacheck.Cogen[List[Char]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]] (6 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Float,(Float, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)] (6 ms, 0.05%)
-
-
-
-scalaz.Equal[scalaz.Validation[String,Int]] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int ==>> Char] (6 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Init[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(Char, scalaz.IList[Char])] (19 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[(Boolean, Int)] (51 ms, 0.42%)
-
-
-
-org.scalacheck.Arbitrary[Byte] (32 ms, 0.26%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int,),(Int,)] (19 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[Option[Int]] (27 ms, 0.22%)
-
-
-
-shapeless.Generic.Aux[String,L1] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[List[List[Int]]] (22 ms, 0.18%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Long :: Double :: shapeless.HNil,Char :: Boolean :: Int :: shapeless.HNil,Out] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean] (27 ms, 0.22%)
-
-
-
-monocle.function.Field3[(Boolean, Char, Int, Long, Float, Double),Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[monocle.function.CList] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.ReverseH => HListSpec.this.ReverseH] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Char] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Char)] (40 ms, 0.33%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (17 ms, 0.14%)
-
-
-
-org.scalacheck.Arbitrary[(monocle.Example, Boolean)] (18 ms, 0.15%)
-
-
-
-scalaz.Equal[Int] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[monocle.Nullary => Unit] (7 ms, 0.06%)
-
-
-
-scalaz.Equal[scalaz.IList[Char]] (17 ms, 0.14%)
-
-
-
-scala.reflect.ClassTag[monocle.function.Raw] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Char] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[(Int, Char)] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[java.net.URL => java.net.URL] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, (Char, Boolean, String, Long, Float))] (18 ms, 0.15%)
-
-
-
-scala.reflect.ClassTag[Long] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[Float] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(List[Int], Boolean)] (12 ms, 0.10%)
-
-
-
-scalaz.Equal[monocle.Unary => Int] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int] (8 ms, 0.07%)
-
-
-
-scalaz.Equal[Int => monocle.Arities] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Cogen[Char] (7 ms, 0.06%)
-
-
-
-monocle.function.Each[shapeless.HNil,Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[A1] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Cogen[String] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[B] (6 ms, 0.05%)
-
-
-
-shapeless.Generic.Aux[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,SGen] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[monocle.Arities => Option[(Char, Boolean, String, Int, Double)]] (3 ms, 0.02%)
-
-
-
-monocle.function.Cons1[HListSpec.this.H,Int,HListSpec.this.HTail] (12 ms, 0.10%)
-
-
-
-shapeless.Witness.Aux[String("world")] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Option[scalaz.Cofree[Option,Int]])] (7 ms, 0.06%)
-
-
-
-monocle.function.Each[shapeless.HNil,Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Option[String]] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[Int] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (10 ms, 0.08%)
-
-
-
-monocle.function.Each[Boolean :: shapeless.HNil,Boolean] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[String] (22 ms, 0.18%)
-
-
-
-shapeless.Generic.Aux[scalaz.Cofree[Option,Int],SGen] (18 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[((scalaz.IList[Char], Char)) => (scalaz.IList[Char], Char)] (16 ms, 0.13%)
-
-
-
-org.scalacheck.Arbitrary[Char] (136 ms, 1.11%)
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String \/ Int)] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[A] (106 ms, 0.86%)
-
-
-
-org.scalacheck.Arbitrary[Int] (4 ms, 0.03%)
-
-
-
-((Int, String)) => ?{def shouldEqual: ?} (6 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Prepend[Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[((scalaz.IList[Int], Int)) => (scalaz.IList[Int], Int)] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Int] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[java.net.URI => java.net.URI] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (18 ms, 0.15%)
-
-
-
-monocle.function.Reverse[(Int, Char),(Char, Int)] (19 ms, 0.15%)
-
-
-
-org.scalacheck.Cogen[Option[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(String, Boolean)] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Float] (27 ms, 0.22%)
-
-
-
-scalaz.Equal[A2] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[String \/ Int] (9 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[scala.util.Try[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[String] (6 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[Boolean] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[((Int, Boolean)) => (Int, Boolean)] (4 ms, 0.03%)
-
-
-
-scalaz.Equal[S => A] (53 ms, 0.43%)
-
-
-
-org.scalacheck.util.Buildable[A,scalaz.Tree[A]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((Char, monocle.function.CList)) => (Char, monocle.function.CList)] (26 ms, 0.21%)
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList => monocle.function.CList] (21 ms, 0.17%)
-
-
-
-scala.reflect.ClassTag[Unit] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[Option[String]] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[List[Int]] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[(Char, Int)] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Maybe[Long]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Boolean] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (4 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Int] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper \/ Boolean] (20 ms, 0.16%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[List[Int]] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[(Boolean, Int)] (7 ms, 0.06%)
-
-
-
-monocle.Unary => ?{def shouldEqual: ?} (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Long] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)] (6 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.ReverseH,Out0] (11 ms, 0.09%)
-
-
-
-scala.reflect.ClassTag[Boolean] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(A, B)] (16 ms, 0.13%)
-
-
-
-scala.reflect.ClassTag[String] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Int] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Char] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[Boolean] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean => Int \/ Boolean] (49 ms, 0.40%)
-
-
-
-monocle.function.Cons1[scalaz.Cofree[Option,Int],Int,Option[scalaz.Cofree[Option,Int]]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.NonEmptyList[Int]]] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[monocle.Quintary => (Char, Boolean, String, Int, Double)] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3,Long,(Long, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]] => Stream[scalaz.Tree[Int]]] (7 ms, 0.06%)
-
-
-
-org.scalacheck.util.Buildable[Int,Stream[Int]] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]] => Option[scalaz.Cofree[Option,Int]]] (8 ms, 0.07%)
-
-
-
-scalaz.Equal[Boolean] (7 ms, 0.06%)
-
-
-
-scalaz.Equal[scalaz.Validation[Unit,Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((Int, Vector[Int])) => (Int, Vector[Int])] (12 ms, 0.10%)
-
-
-
-scalaz.Equal[Int] (3 ms, 0.02%)
-
-
-
-org.scalactic.Equality[Option[Int]] (96 ms, 0.78%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._2.N,Char,(Char, HListSpec.this.H)] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[String] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Cogen[(scalaz.IList[Char], Char)] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[String] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (21 ms, 0.17%)
-
-
-
-scala.reflect.ClassTag[monocle.Example] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int]] (3 ms, 0.02%)
-
-
-
-monocle.function.Reverse[scalaz.Tree[Int],scalaz.Tree[Int]] (6 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[Either[Unit,Int]] (2 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[(String, Int),String :: Int :: shapeless.HNil] (6 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[scalaz.Tree[Int] => scalaz.Tree[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int]] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int \&/ String] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[A] (40 ms, 0.33%)
-
-
-
-List[List[Int]] => ?{def shouldEqual: ?} (14 ms, 0.11%)
-
-
-
-scalaz.Equal[Boolean \/ Int] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Either[A,B]] (34 ms, 0.28%)
-
-
-
-org.scalacheck.Arbitrary[(String, Char)] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Option,Int]] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (10 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[(Int, Boolean)] (10 ms, 0.08%)
-
-
-
-(Char, Boolean, String, Int, Double) <~< (Char, Boolean, String, Int, Double) (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Long] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-monocle.function.Cons1[(Int, Char, Boolean, String, Long, Float),Int,(Char, Boolean, String, Long, Float)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Byte] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Float => Float] (43 ms, 0.35%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Foo] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Option[Long]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(monocle.function.CList, Char)] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[String] (8 ms, 0.07%)
-
-
-
-monocle.Point => ?{def shouldEqual: ?} (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.ExampleObject.type] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(scalaz.IList[Int], Int)] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Cogen[Char] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Quintary] (29 ms, 0.24%)
-
-
-
-org.scalacheck.Cogen[Char] (5 ms, 0.04%)
-
-
-
-shapeless.ops.coproduct.Selector[CoproductSpec.this.IB,Boolean] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[(K, V)] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[String \/ Int \/ Boolean] (14 ms, 0.11%)
-
-
-
-scala.reflect.ClassTag[Int] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[BigDecimal] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Option[Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (5 ms, 0.04%)
-
-
-
-scalaz.Monoid[Int] (6 ms, 0.05%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Char, Int),(Int, Char)] (9 ms, 0.07%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[List[Int],List[Int]] (66 ms, 0.54%)
-
-
-
-org.scalacheck.Cogen[Int] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Long :: Double :: shapeless.HNil,shapeless._0,Long,(Long, Long :: Double :: shapeless.HNil)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Long] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (46 ms, 0.38%)
-
-
-
-scalaz.Equal[Unit \/ Int] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]] (6 ms, 0.05%)
-
-
-
-(=> String) => Int (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int] (26 ms, 0.21%)
-
-
-
-org.scalacheck.Arbitrary[Int] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((Int, HListSpec.this.HTail)) => (Int, HListSpec.this.HTail)] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Cogen[Stream[scalaz.Cofree[Stream,A]]] (2 ms, 0.02%)
-
-
-
-scala.languageFeature.higherKinds (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[(Int, Option[scalaz.Cofree[Option,Int]])] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[List[Int]] (18 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Stream[Int]] (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[shapeless.HNil,SGen] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (29 ms, 0.24%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int]] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[scalaz.IList[Int]] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[monocle.function.MMap[Int,String]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Char, Int)] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[S => Option[A]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[monocle.Unary] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[List[Int]] (51 ms, 0.42%)
-
-
-
-scala.reflect.ClassTag[Int] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(scalaz.IList[Char], Char)] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Long] (22 ms, 0.18%)
-
-
-
-monocle.function.Field1[(Boolean, Char, Int, Long, Float, Double),Boolean] (7 ms, 0.06%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char),(Char, Int)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[scalaz.OneAnd[List,Int]] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Cogen[Option[Int]] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int => Int] (89 ms, 0.73%)
-
-
-
-scalaz.Equal[(Boolean, IsoSpec.this.IntWrapper)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalactic.Equality[List[(Int, String)]] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[((Boolean, String)) => (Boolean, String)] (28 ms, 0.23%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Stream,Int]] (3 ms, 0.02%)
-
-
-
-Fractional[Int] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Char => Char] (19 ms, 0.15%)
-
-
-
-shapeless.ops.hlist.Prepend[Boolean :: Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil] (21 ms, 0.17%)
-
-
-
-org.scalacheck.Cogen[Long] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example2] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[String] (2 ms, 0.02%)
-
-
-
-monocle.function.At[Map[K,V],K,Option[V]] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[A => A] (4 ms, 0.03%)
-
-
-
-scalaz.Equal[monocle.Example] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[(String \/ Int, Boolean)] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[((String, Boolean)) => (String, Boolean)] (29 ms, 0.24%)
-
-
-
-org.scalacheck.Arbitrary[String] (17 ms, 0.14%)
-
-
-
-shapeless.Witness.Aux[Int(7)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Char, monocle.function.CList)] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int] => scalaz.OneAnd[List,Int]] (16 ms, 0.13%)
-
-
-
-scala.reflect.ClassTag[Int] (60 ms, 0.49%)
-
-
-
-scalaz.Equal[A] (83 ms, 0.68%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[ProductSpec.this.Permissions,SGen] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int \/ String => Int \/ String] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (17 ms, 0.14%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.ExampleType[Int]] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Cogen[Int] (8 ms, 0.07%)
-
-
-
-scalaz.Equal[Unit => monocle.Nullary] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[monocle.Example] (54 ms, 0.44%)
-
-
-
-org.scalacheck.Arbitrary[Char] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[(Boolean, String \/ Int)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[monocle.refined.LowerCaseChar] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(Int, List[Int])] (24 ms, 0.20%)
-
-
-
-org.scalacheck.Arbitrary[((Int, Boolean)) => (Int, Boolean)] (104 ms, 0.85%)
-
-
-
-scala.reflect.ClassTag[Boolean] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(A, Stream[scalaz.Tree[A]])] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[monocle.Example] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Int \/ String] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example] (14 ms, 0.11%)
-
-
-
-scala.reflect.ClassTag[IsoSpec.this.EmptyCase] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1] (2 ms, 0.02%)
-
-
-
-monocle.function.Each[Boolean :: Boolean :: shapeless.HNil,Boolean] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[A1] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Throwable] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int] (24 ms, 0.20%)
-
-
-
-shapeless.Generic.Aux[scalaz.Tree[Int],L1] (3 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[List[Int],List[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, HListSpec.this.HTail)] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String("hello")]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[V] (26 ms, 0.21%)
-
-
-
-shapeless.Generic.Aux[Int :: shapeless.HNil,SGen] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-HListSpec.this.Example => ?{def ===: ?} (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((List[Int], Int)) => (List[Int], Int)] (16 ms, 0.13%)
-
-
-
-org.scalacheck.Arbitrary[(Boolean, monocle.Example)] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Char] (2 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[(K, V),List[(K, V)]] (42 ms, 0.34%)
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Example] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[IsoSpec.this.AnObject.type] (3 ms, 0.02%)
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int] (11 ms, 0.09%)
-
-
-
-monocle.function.Each[scalaz.Tree[Int],Int] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]] (12 ms, 0.10%)
-
-
-
-shapeless.Generic.Aux[scalaz.NonEmptyList[Int],SGen] (7 ms, 0.06%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.02%)
-
-
-
-String => ?{def shouldEqual: ?} (81 ms, 0.66%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,List[Int]] (10 ms, 0.08%)
-
-
-
-scalaz.Equal[List[TraversalSpec.this.Location]] (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[scalaz.OneAnd[List,Int],SGen] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Double] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[String] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Either[String,Int]] (5 ms, 0.04%)
-
-
-
-List[Int] => Traversable[Int] (9 ms, 0.07%)
-
-
-
-scalaz.Equal[Int \/ Boolean] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[((Vector[Int], Int)) => (Vector[Int], Int)] (9 ms, 0.07%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Char,(Char, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int] => scalaz.OneAnd[Stream,Int]] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Char] (12 ms, 0.10%)
-
-
-
-shapeless.Generic.Aux[ProductSpec.this.Person,L] (9 ms, 0.07%)
-
-
-
-monocle.Iso[monocle.Binary,(String, Int)] => ?{def shouldEqual: ?} (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int]] (9 ms, 0.07%)
-
-
-
-monocle.function.Each[scalaz.OneAnd[List,Int],Int] (73 ms, 0.60%)
-
-
-
-org.scalacheck.Arbitrary[Int] (14 ms, 0.11%)
-
-
-
-shapeless.Witness.Aux[Int(15)] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Init.Aux[HListSpec.this.H,HListSpec.this.HInit] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(Int, (Char, Boolean, String, Long, Float))] (9 ms, 0.07%)
-
-
-
-monocle.function.Plated[Stream[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(String, Int)] (19 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (4 ms, 0.03%)
-
-
-
-scalaz.Zip[[β$0$]monocle.Getter[String,β$0$]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int)] (13 ms, 0.11%)
-
-
-
-org.scalactic.Prettifier (15 ms, 0.12%)
-
-
-
-org.scalacheck.Shrink[Int] (63 ms, 0.51%)
-
-
-
-monocle.function.Each[Unit \/ Int,Int] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (29 ms, 0.24%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int),SGen] (7 ms, 0.06%)
-
-
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int] (7 ms, 0.06%)
-
-
-
-scala.reflect.ClassTag[Boolean] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[(Int, String)] (13 ms, 0.11%)
-
-
-
-scalaz.Equal[List[Int] \/ TraversalSpec.this.Location] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Option,Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (382 ms, 3.11%)
-org..
-
-
-org.scalactic.Equality[IsoSpec.this.IntWrapper] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[monocle.Binary] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[List[Int] \/ List[Int]] (4 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Int] (88 ms, 0.72%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Long :: Double :: shapeless.HNil,shapeless.nat._1,Double,(Double, Long :: Double :: shapeless.HNil)] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,A]] (22 ms, 0.18%)
-
-
-
-scala.reflect.ClassTag[Char] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-monocle.Iso[monocle.Unary,Int] => ?{def shouldEqual: ?} (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Byte] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[scalaz.ISet[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ IsoSpec.this.IntWrapper] (21 ms, 0.17%)
-
-
-
-monocle.function.Each[shapeless.HNil,Boolean] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (24 ms, 0.20%)
-
-
-
-org.scalacheck.Arbitrary[A] (17 ms, 0.14%)
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.EmptyCaseType[Int]] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)] (17 ms, 0.14%)
-
-
-
-org.scalacheck.Cogen[(Int, HListSpec.this.HTail)] (4 ms, 0.03%)
-
-
-
-Integral[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[A] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Option[Nothing]] (100 ms, 0.82%)
-
-
-
-scala.reflect.ClassTag[scalaz.IList[Char] => scalaz.IList[Char]] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)]] (32 ms, 0.26%)
-
-
-
-org.scalactic.Equality[String] (26 ms, 0.21%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.Tree[Int],scalaz.Tree[Int]] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[(Int, Option[Int])] (4 ms, 0.03%)
-
-
-
-scalaz.Id.Id[Int] => ?{def shouldEqual: ?} (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Boolean] (64 ms, 0.52%)
-
-
-
-org.scalacheck.Arbitrary[String \/ Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList] (6 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Prepend[Long :: shapeless.HNil,Double :: shapeless.HNil] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[Long] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Float] (20 ms, 0.16%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int]] (30 ms, 0.24%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Float,(Float, Char :: Float :: Long :: Double :: shapeless.HNil)] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(String, Int)] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[Double] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (21 ms, 0.17%)
-
-
-
-scala.reflect.ClassTag[List[A]] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (11 ms, 0.09%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,Stream[Int]] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[String => String] (27 ms, 0.22%)
-
-
-
-org.scalacheck.Arbitrary[(Int, String)] (25 ms, 0.20%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalactic.Equality[List[List[Int]]] (25 ms, 0.20%)
-
-
-
-org.scalacheck.Arbitrary[B] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[(Int, Int)] (2 ms, 0.02%)
-
-
-
-(=> Long) => Int (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean => Boolean] (246 ms, 2.01%)
-o..
-
-
-scalaz.Equal[PrismSpec.this.IntOrString] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[String \/ Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[String] (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[Stream[Int],SGen] (19 ms, 0.15%)
-
-
-
-scala.reflect.ClassTag[String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]] (4 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._4,Double,(Double, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)] (11 ms, 0.09%)
-
-
-
-org.scalactic.Equality[List[TraversalSpec.this.Location]] (4 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Stream[Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[scalaz.IList[Char]] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Int] (15 ms, 0.12%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._1.N,Boolean,(Boolean, HListSpec.this.H)] (5 ms, 0.04%)
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int] (8 ms, 0.07%)
-
-
-
-scalaz.Equal[Boolean \/ (String \/ Int)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String("world")]] (4 ms, 0.03%)
-
-
-
-scalaz.Equal[IsoSpec.this.EmptyCaseType[Int]] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[B] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[Float] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[((Int, Char, Boolean, String, Long), Float)] (9 ms, 0.07%)
-
-
-
-shapeless.Generic.Aux[List[Int],L1] (63 ms, 0.51%)
-
-
-
-scalaz.Equal[A] (98 ms, 0.80%)
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[(A, B),Either[A,B]] (2 ms, 0.02%)
-
-
-
-monocle.function.Field3[HListSpec.this.H,Char] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Map[K,V]] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Shrink[String] (3 ms, 0.02%)
-
-
-
-org.scalactic.Equality[(Int, GetterSpec.this.Bar)] (21 ms, 0.17%)
-
-
-
-org.scalacheck.Arbitrary[(Boolean, Int)] (60 ms, 0.49%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[(Int,)] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[S] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((monocle.function.CList, Char)) => (monocle.function.CList, Char)] (18 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CNel] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[String] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (10 ms, 0.08%)
-
-
-
-org.scalactic.source.Position (37 ms, 0.30%)
-
-
-
-scalaz.Equal[Map[Int,String]] (4 ms, 0.03%)
-
-
-
-(=> Double) => Int (3 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Stream[Int]] (2 ms, 0.02%)
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int] (5 ms, 0.04%)
-
-
-
-eu.timepit.refined.api.Validate[String,eu.timepit.refined.string.StartsWith[String("hello")]] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Example] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Init[Char :: Float :: Long :: Double :: shapeless.HNil] (9 ms, 0.07%)
-
-
-
-shapeless.Generic.Aux[List[Int],SGen] (70 ms, 0.57%)
-
-
-
-scalaz.Equal[Option[List[Unit]]] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-shapeless.Witness.Aux[String("hello")] (2 ms, 0.02%)
-
-
-
-monocle.function.Each[List[Int],Int] (54 ms, 0.44%)
-
-
-
-org.scalacheck.Arbitrary[((Int, Stream[Int])) => (Int, Stream[Int])] (9 ms, 0.07%)
-
-
-
-shapeless.Witness.Aux[String("world")] (3 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[Int,Stream[Int]] (2 ms, 0.02%)
-
-
-
-monocle.function.Snoc1[scalaz.NonEmptyList[Char],scalaz.IList[Char],Char] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int]] (3 ms, 0.02%)
-
-
-
-((Int, GetterSpec.this.Bar)) => ?{def shouldEqual: ?} (2 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[Vector[Int],SGen] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Double] (3 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Int :: shapeless.HNil,Out] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Char, scalaz.IList[Char])] (37 ms, 0.30%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Choice[monocle.Fold] (6 ms, 0.05%)
-
-
-
-scalaz.Equal[Long] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Boolean] (30 ms, 0.24%)
-
-
-
-Option[String] => ?{def shouldEqual: ?} (7 ms, 0.06%)
-
-
-
-scalaz.Equal[scalaz.Either3[String,Int,Char]] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[scalaz.Cofree[Option,A]] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Unit] (2 ms, 0.02%)
-
-
-
-monocle.Arities => ?{def shouldEqual: ?} (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)] (28 ms, 0.23%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Cogen[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Unit => monocle.Arities] (5 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Prepend.Aux[HListSpec.this.HInit,Double :: shapeless.HNil,HListSpec.this.H] (23 ms, 0.19%)
-
-
-
-scala.reflect.ClassTag[Int] (9 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[scalaz.OneAnd[Stream,Int]] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Long,(Long, Char :: Float :: Long :: Double :: shapeless.HNil)] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1 => MacroOutSideMonocleSpec.this.Bar1] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[(Boolean, List[Int])] (25 ms, 0.20%)
-
-
-
-org.scalacheck.Arbitrary[String] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[(Unit, Int)] (9 ms, 0.07%)
-
-
-
-shapeless.ops.hlist.Prepend[Long :: shapeless.HNil,Double :: shapeless.HNil] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[(String, Int)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (12 ms, 0.10%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Long,(Long, Float :: Long :: Double :: shapeless.HNil)] (5 ms, 0.04%)
-
-
-
-monocle.function.Cons1[scalaz.NonEmptyList[Char],Char,scalaz.IList[Char]] (7 ms, 0.06%)
-
-
-
-shapeless.Witness.Aux[Int(31)] (2 ms, 0.02%)
-
-
-
-org.scalactic.Equality[Option[Nothing]] (101 ms, 0.82%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[HListSpec.this.ReverseH,HListSpec.this.H] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[List[Int]] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Int] (5 ms, 0.04%)
-
-
-
-Double => Int (6 ms, 0.05%)
-
-
-
-scalaz.Equal[BigInt] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Either[Unit,Int]] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(15)]] (16 ms, 0.13%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int]] (31 ms, 0.25%)
-
-
-
-org.scalacheck.Cogen[Char] (11 ms, 0.09%)
-
-
-
-scala.reflect.ClassTag[String] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((Char, Int)) => (Char, Int)] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Double] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[Double] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[A \/ B] (17 ms, 0.14%)
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[IsoSpec.this.IntWrapper]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[A] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-monocle.function.Field1[HListSpec.this.H,Int] (2 ms, 0.02%)
-
-
-
-scalaz.Compose[monocle.Getter] (6 ms, 0.05%)
-
-
-
-scalaz.Equal[String] (17 ms, 0.14%)
-
-
-
-org.scalacheck.Arbitrary[Int] (446 ms, 3.64%)
-org...
-
-
-org.scalacheck.Arbitrary[Byte => Byte] (34 ms, 0.28%)
-
-
-
-org.scalacheck.Arbitrary[Int] (18 ms, 0.15%)
-
-
-
-monocle.function.Each[String :: shapeless.HNil,String] (4 ms, 0.03%)
-
-
-
-scalaz.Unapply[scalaz.Applicative,org.scalacheck.Gen[scalaz.Tree[A]]] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[T[A]] (5 ms, 0.04%)
-
-
-
-List[TraversalSpec.this.Location] => ?{def shouldEqual: ?} (2 ms, 0.02%)
-
-
-
-scalaz.Traverse[List] (2 ms, 0.02%)
-
-
-
-String => ?{def should: ?} (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Char] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[A] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Unit \/ Int] (24 ms, 0.20%)
-
-
-
-org.scalacheck.Arbitrary[((String, Char)) => (String, Char)] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[(IsoSpec.this.IntWrapper, Boolean)] (17 ms, 0.14%)
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)]] (18 ms, 0.15%)
-
-
-
-org.scalacheck.Cogen[(A, Option[scalaz.Cofree[Option,A]])] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-(String, Int) <~< (String, Int) (2 ms, 0.02%)
-
-
-
-org.scalactic.Equality[(Int, String)] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[String] (18 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[String] (3 ms, 0.02%)
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Binary,(String, Int)]] (23 ms, 0.19%)
-
-
-
-scalaz.Equal[IsoSpec.this.IntWrapper \/ Boolean] (11 ms, 0.09%)
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.OneAnd[List,Int],Int,List[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[monocle.function.Raw] (28 ms, 0.23%)
-
-
-
-org.scalacheck.Cogen[Option[scalaz.Cofree[Option,A]]] (5 ms, 0.04%)
-
-
-
-shapeless.Witness.Aux[String("hello")] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Set[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(String, Int)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[List[Int] => List[Int]] (91 ms, 0.74%)
-
-
-
-org.scalacheck.Arbitrary[Float] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (16 ms, 0.13%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Option,Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (672 ms, 5.48%)
-org.sca..
-
-
-org.scalacheck.Arbitrary[String] (12 ms, 0.10%)
-
-
-
-scala.reflect.ClassTag[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Unit \/ Int] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Cogen[Int] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (4 ms, 0.03%)
-
-
-
-monocle.function.Each[Int ==>> String,String] (5 ms, 0.04%)
-
-
-
-monocle.function.Each[Boolean :: Boolean :: Boolean :: shapeless.HNil,Boolean] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Stream[Int] => Stream[Int]] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long, Float)] (18 ms, 0.15%)
-
-
-
-scalaz.Unzip[[β$0$]monocle.Fold[List[(Int, String)],β$0$]] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[(HListSpec.this.HInit, Double)] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Vector[Int],Vector[Int]] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[Vector[Int]] (10 ms, 0.08%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[HListSpec.this.H,HListSpec.this.ReverseH] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, HListSpec.this.HTail)] (6 ms, 0.05%)
-
-
-
-shapeless.Generic.Aux[Int :: Int :: shapeless.HNil,SGen] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Long] (64 ms, 0.52%)
-
-
-
-monocle.function.Field5[HListSpec.this.H,Long] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[String] (6 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.Prepend[Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil] (17 ms, 0.14%)
-
-
-
-org.scalacheck.Cogen[String] (2 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[Stream[Int],L1] (21 ms, 0.17%)
-
-
-
-PlatedSpec.this.PropertyCheckConfigurable (2 ms, 0.02%)
-
-
-
-Option[Nothing] => ?{def shouldEqual: ?} (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Tupler[HListSpec.this.HInit] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (5 ms, 0.04%)
-
-
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]] (4 ms, 0.03%)
-
-
-
-scalaz.Equal[Byte] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[Option[PrismSpec.this.IntOrString]] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int] (6 ms, 0.05%)
-
-
-
-monocle.function.Each[Stream[Int],Int] (20 ms, 0.16%)
-
-
-
-scalaz.Equal[Unit] (12 ms, 0.10%)
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)]] (32 ms, 0.26%)
-
-
-
-shapeless.Generic.Aux[(Char, Int),L1] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (4 ms, 0.03%)
-
-
-
-org.scalactic.Equality[(Int, Int)] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[List[Int]] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[String] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.H => HListSpec.this.H] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[monocle.refined.UpperCaseChar] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Int] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[List[Char]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (44 ms, 0.36%)
-
-
-
-monocle.function.Cons1[scalaz.NonEmptyList[Int],Int,scalaz.IList[Int]] (2 ms, 0.02%)
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit]] (8 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: shapeless.HNil,Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Out] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[S] (9 ms, 0.07%)
-
-
-
-scalaz.Equal[(Int, Char)] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.EmptyCaseType[Int]] (7 ms, 0.06%)
-
-
-
-scala.reflect.ClassTag[(Int, Boolean)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int]] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Double :: shapeless.HNil,shapeless._0,Double,(Double, Double :: shapeless.HNil)] (2 ms, 0.02%)
-
-
-
-scalaz.Monoid[M] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[monocle.function.CList] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[Int \/ Boolean] (11 ms, 0.09%)
-
-
-
-scalaz.Functor[F$macro$1] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Vector[Int])] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (24 ms, 0.20%)
-
-
-
-org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)] (6 ms, 0.05%)
-
-
-
-shapeless.Generic.Aux[Option[Int],SGen] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[K] (41 ms, 0.33%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String("hello")] => monocle.refined.StartsWithString[String("hello")]] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[Int] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Cogen[scalaz.Validation[String,Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (11 ms, 0.09%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3,Double,(Double, Char :: Float :: Long :: Double :: shapeless.HNil)] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (117 ms, 0.95%)
-
-
-
-org.scalacheck.Cogen[(Int,)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Option[Int]] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList] (18 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[String] (7 ms, 0.06%)
-
-
-
-shapeless.ops.hlist.Init[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Int] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Cogen[String] (53 ms, 0.43%)
-
-
-
-scalaz.Equal[monocle.function.MMap[Int,String]] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[monocle.function.Raw] (4 ms, 0.03%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (2 ms, 0.02%)
-
-
-
-eu.timepit.refined.api.Validate[String,eu.timepit.refined.string.EndsWith[String("world")]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Vector[Int]] (16 ms, 0.13%)
-
-
-
-shapeless.Generic.Aux[Int :: shapeless.HNil,SGen] (2 ms, 0.02%)
-
-
-
-monocle.function.Reverse[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[String] (14 ms, 0.11%)
-
-
-
-org.scalactic.Prettifier (4 ms, 0.03%)
-
-
-
-scalaz.Equal[Option[Int]] (76 ms, 0.62%)
-
-
-
-Int => ?{def shouldEqual: ?} (146 ms, 1.19%)
-
-
-
-scala.reflect.ClassTag[Stream[Int]] (6 ms, 0.05%)
-
-
-
-scalaz.Order[String] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[((String, Int)) => monocle.Arities] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-scalaz.Order[List[Int]] (11 ms, 0.09%)
-
-
-
-scala.reflect.ClassTag[Long => Long] (4 ms, 0.03%)
-
-
-
-(=> Float) => Int (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Map[Int,Char]] (6 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[Unit => Unit] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[String] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int] (21 ms, 0.17%)
-
-
-
-org.scalacheck.Arbitrary[Option[String] => Option[String]] (35 ms, 0.29%)
-
-
-
-org.scalactic.Prettifier (100 ms, 0.82%)
-
-
-
-Int => org.scalacheck.util.Pretty (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[List[Int]] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-Integral[scala.collection.immutable.Map[Int,String]] (6 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Option[String]] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Int] (26 ms, 0.21%)
-
-
-
-org.scalacheck.Arbitrary[String] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Map[Int,String]] (42 ms, 0.34%)
-
-
-
-org.scalactic.source.Position (5 ms, 0.04%)
-
-
-
-org.scalacheck.Cogen[monocle.refined.StartsWithString[String("hello")]] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Arities] (28 ms, 0.23%)
-
-
-
-org.scalacheck.Cogen[List[Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int] => scalaz.Validation[String,Int]] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[String] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[List[Char]] (26 ms, 0.21%)
-
-
-
-scala.reflect.ClassTag[Unit] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[Char] (40 ms, 0.33%)
-
-
-
-org.scalacheck.Arbitrary[Int] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[String] (6 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[Boolean => Boolean] (15 ms, 0.12%)
-
-
-
-scalaz.Equal[Option[Int]] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (54 ms, 0.44%)
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IdWrapper[Int]] (17 ms, 0.14%)
-
-
-
-monocle.function.Reverse[Vector[Int],Vector[Int]] (16 ms, 0.13%)
-
-
-
-PrismSpec.this.IntOrString => ?{def shouldEqual: ?} (9 ms, 0.07%)
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int] (6 ms, 0.05%)
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]] (37 ms, 0.30%)
-
-
-
-org.scalacheck.Arbitrary[A] (31 ms, 0.25%)
-
-
-
-scalaz.Equal[List[Int]] (34 ms, 0.28%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (4 ms, 0.03%)
-
-
-
-scalaz.Equal[A3] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Double => Double] (19 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.EmptyCase] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Set[Int]] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Cogen[(Boolean, String)] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (18 ms, 0.15%)
-
-
-
-org.scalacheck.Cogen[scalaz.IList[Char]] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Int] (11 ms, 0.09%)
-
-
-
-scala.reflect.ClassTag[Byte] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[((String, Int)) => (String, Int)] (12 ms, 0.10%)
-
-
-
-scala.reflect.ClassTag[Double] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int \/ Boolean => Int \/ Boolean] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (5 ms, 0.04%)
-
-
-
-Option[String] => ?{def should: ?} (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)] (12 ms, 0.10%)
-
-
-
-shapeless.ops.hlist.Last[Long :: Double :: shapeless.HNil] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[String] (2 ms, 0.02%)
-
-
-
-monocle.function.Reverse[scalaz.IList[Char],scalaz.IList[Char]] (25 ms, 0.20%)
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Char => Char] (228 ms, 1.86%)
-o..
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Unit \/ Int => Unit \/ Int] (21 ms, 0.17%)
-
-
-
-org.scalacheck.Cogen[(String, Char)] (3 ms, 0.02%)
-
-
-
-monocle.function.Each[scalaz.Validation[Unit,Int],Int] (13 ms, 0.11%)
-
-
-
-shapeless.Witness.Aux[Int(63)] (2 ms, 0.02%)
-
-
-
-monocle.function.At[Set[Int],Int,Boolean] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (4 ms, 0.03%)
-
-
-
-org.scalactic.Equality[monocle.Point] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[List[Int]] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int] => scalaz.IList[Int]] (12 ms, 0.10%)
-
-
-
-Option[Int] => ?{def shouldEqual: ?} (84 ms, 0.68%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Unit => Unit] (110 ms, 0.90%)
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]]] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (11 ms, 0.09%)
-
-
-
-shapeless.ops.hlist.Prepend.Aux[Int :: shapeless.HNil,HListSpec.this.HTail,HListSpec.this.H] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Int] (16 ms, 0.13%)
-
-
-
-monocle.function.Each[Option[Int],Int] (12 ms, 0.10%)
-
-
-
-scalaz.Equal[IsoSpec.this.EmptyCase] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[String] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[A2] (8 ms, 0.07%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Option[scalaz.Cofree[Option,Int]]] (2 ms, 0.02%)
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]] (37 ms, 0.30%)
-
-
-
-monocle.function.Field5[(Boolean, Char, Int, Long, Float, Double),Float] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Int] (4 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless._0,Float,(Float, Float :: Long :: Double :: shapeless.HNil)] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[A] (75 ms, 0.61%)
-
-
-
-List[Int] => ?{def shouldEqual: ?} (41 ms, 0.33%)
-
-
-
-org.scalacheck.Arbitrary[((Int, Char)) => (Int, Char)] (28 ms, 0.23%)
-
-
-
-org.scalacheck.Cogen[(Int, Vector[Int])] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[(Boolean, Int)] (8 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[String] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[BigInt] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[Unit] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int]] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Double] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (6 ms, 0.05%)
-
-
-
-scalaz.Equal[V] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (6 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[((Char, scalaz.IList[Char])) => (Char, scalaz.IList[Char])] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[String] (2 ms, 0.02%)
-
-
-
-Long => Int (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[scalaz.Tree[Int]] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[Boolean] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Option[scalaz.Cofree[Option,Int]]] (3 ms, 0.02%)
-
-
-
-monocle.function.Each[(String, String),String] (13 ms, 0.11%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Float :: Long :: Double :: shapeless.HNil,Boolean :: Int :: shapeless.HNil,Out] (3 ms, 0.02%)
-
-
-
-monocle.function.Reverse[String,String] (7 ms, 0.06%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._5.N,Double,(Double, HListSpec.this.H)] (14 ms, 0.11%)
-
-
-
-scalaz.Equal[String \/ Int \/ Boolean] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1] (3 ms, 0.02%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]] (10 ms, 0.08%)
-
-
-
-org.scalactic.source.Position (41 ms, 0.33%)
-
-
-
-scalaz.Equal[Either[String,Int]] (3 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Last[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (6 ms, 0.05%)
-
-
-
-scala.math.Ordering[Int] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[(Char, String)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(Boolean, Int)] (26 ms, 0.21%)
-
-
-
-org.scalactic.Prettifier (18 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[String] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int] (6 ms, 0.05%)
-
-
-
-scalaz.Equal[String \/ Int] (31 ms, 0.25%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Char)] (16 ms, 0.13%)
-
-
-
-org.scalacheck.Arbitrary[Int] (12 ms, 0.10%)
-
-
-
-IsoSpec.this.IntWrapper => ?{def shouldEqual: ?} (7 ms, 0.06%)
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Nullary,Unit]] (14 ms, 0.11%)
-
-
-
-scala.reflect.ClassTag[List[Int] => List[Int]] (5 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._4.N,Long,(Long, HListSpec.this.H)] (11 ms, 0.09%)
-
-
-
-scalaz.Equal[scalaz.NonEmptyList[Int]] (6 ms, 0.05%)
-
-
-
-all (12,265 ms, 100%)
-
-
-
-org.scalacheck.Arbitrary[Int => Boolean] (75 ms, 0.61%)
-
-
-
-org.scalacheck.Cogen[Int] (14 ms, 0.11%)
-
-
-
-scalaz.Equal[Stream[Int]] (10 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[String] (12 ms, 0.10%)
-
-
-
-scala.reflect.ClassTag[V] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Cogen[(Long, Long)] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Cogen[Unit] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.ISet[Int]] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[Int] (2 ms, 0.02%)
-
-
-
-monocle.function.Field2[HListSpec.this.H,Boolean] (9 ms, 0.07%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0,Char,(Char, Char :: Float :: Long :: Double :: shapeless.HNil)] (2 ms, 0.02%)
-
-
-
-monocle.function.Each[Vector[Int],Int] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[String] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Cogen[(Vector[Int], Int)] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[(String, Boolean)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (5 ms, 0.04%)
-
-
-
-Boolean => org.scalacheck.Prop (9 ms, 0.07%)
-
-
-
-scalaz.Equal[monocle.function.CList] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Init[Double :: shapeless.HNil] (4 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._3.N,Float] (3 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[A,List[A]] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[String \/ Int => String \/ Int] (12 ms, 0.10%)
-
-
-
-scala.reflect.ClassTag[IsoSpec.this.IdWrapper[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char] => scalaz.IList[Char]] (66 ms, 0.54%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar2] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.EmptyCaseType[Int]] (2 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[scalaz.Validation[Unit,Int],SGen] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[(List[Int], Int)] (10 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Stream[Int] => Stream[Int]] (41 ms, 0.33%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Char] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (6 ms, 0.05%)
-
-
-
-monocle.function.Field6[HListSpec.this.H,Double] (17 ms, 0.14%)
-
-
-
-shapeless.Generic.Aux[Vector[Int],L1] (9 ms, 0.07%)
-
-
-
-scalaz.Equal[monocle.Arities] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String)] (16 ms, 0.13%)
-
-
-
-shapeless.ops.hlist.Init[HListSpec.this.H] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[((HListSpec.this.HInit, Double)) => (HListSpec.this.HInit, Double)] (14 ms, 0.11%)
-
-
-
-Unit === Unit (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[scalaz.OneAnd[Stream,Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (11 ms, 0.09%)
-
-
-
-scalaz.Equal[Option[scalaz.Cofree[Option,A]]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[String] (43 ms, 0.35%)
-
-
-
-org.scalactic.Equality[Unit] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Unit \/ Int] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[A] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[((Int, scalaz.IList[Int])) => (Int, scalaz.IList[Int])] (12 ms, 0.10%)
-
-
-
-scala.reflect.ClassTag[Option[String] => Option[String]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Double] (3 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._3.N,Float,(Float, HListSpec.this.H)] (8 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[Float] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[Int] (59 ms, 0.48%)
-
-
-
-scalaz.Equal[String] (24 ms, 0.20%)
-
-
-
-scalaz.Equal[(Int, Int, Int, Int, Int, Int)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[List[Char]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Long] (21 ms, 0.17%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),SGen] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int] (8 ms, 0.07%)
-
-
-
-scalaz.Equal[((String, Int)) => monocle.Binary] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[String] (21 ms, 0.17%)
-
-
-
-org.scalacheck.Cogen[String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (24 ms, 0.20%)
-
-
-
-org.scalacheck.Cogen[scalaz.IList[Int]] (2 ms, 0.02%)
-
-
-
-monocle.function.Each[Int :: List[Int] :: shapeless.HNil,Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int] (24 ms, 0.20%)
-
-
-
-org.scalacheck.Arbitrary[A] (6 ms, 0.05%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)] (11 ms, 0.09%)
-
-
-
-org.scalactic.source.Position (78 ms, 0.64%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Option,Int]] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[List[Int]] (13 ms, 0.11%)
-
-
-
-shapeless.Generic.Aux[scalaz.Tree[Int],SGen] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[Int] (181 ms, 1.48%)
-
-
-
-org.scalacheck.Arbitrary[Int] (26 ms, 0.21%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[B] (17 ms, 0.14%)
-
-
-
-shapeless.Generic.Aux[List[Int],SGen] (53 ms, 0.43%)
-
-
-
-scalaz.Order[K] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[HListSpec.this.H] (4 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[String] (44 ms, 0.36%)
-
-
-
-monocle.function.Each[ProductSpec.this.Permissions,Boolean] (11 ms, 0.09%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Maybe[Int]] (21 ms, 0.17%)
-
-
-
-monocle.function.Each[(Int, Int),Int] (17 ms, 0.14%)
-
-
-
-scalaz.Equal[Int] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Cogen[Unit] (20 ms, 0.16%)
-
-
-
-org.scalacheck.Arbitrary[(Int, scalaz.IList[Int])] (8 ms, 0.07%)
-
-
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._0.N,Boolean] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[monocle.Quintary] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper] (71 ms, 0.58%)
-
-
-
-monocle.function.Each[Map[Int,String],String] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Char] (93 ms, 0.76%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int]] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String)] (16 ms, 0.13%)
-
-
-
-shapeless.ops.hlist.Last[Float :: Long :: Double :: shapeless.HNil] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[java.util.UUID => java.util.UUID] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(Int, List[Int])] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Cogen[(A, Stream[scalaz.Cofree[Stream,A]])] (10 ms, 0.08%)
-
-
-
-monocle.function.Field4[(Int, Char, Boolean, String, Long, Float),String] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,List[Int]] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[A] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[List[Int]] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Binary,(String, Int)]] (23 ms, 0.19%)
-
-
-
-org.scalacheck.Cogen[(Int, Boolean)] (25 ms, 0.20%)
-
-
-
-org.scalactic.Equality[Stream[Int]] (5 ms, 0.04%)
-
-
-
-org.scalactic.Equality[monocle.Arities] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)] (27 ms, 0.22%)
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)]] (18 ms, 0.15%)
-
-
-
-shapeless.ops.hlist.Prepend[Float :: Long :: shapeless.HNil,Double :: shapeless.HNil] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Int] (4 ms, 0.03%)
-
-
-
-Option[List[Int]] => ?{def shouldEqual: ?} (6 ms, 0.05%)
-
-
-
-shapeless.Generic.Aux[HListSpec.this.H,L1] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)] (7 ms, 0.06%)
-
-
-
-shapeless.Generic.Aux[(String, String),SGen] (7 ms, 0.06%)
-
-
-
-scalaz.Equal[scalaz.Cofree[Option,Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (4 ms, 0.03%)
-
-
-
-shapeless.ops.hlist.Last[Double :: shapeless.HNil] (2 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[Char,List[Char]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((Char, Boolean, String, Long, Float)) => (Char, Boolean, String, Long, Float)] (14 ms, 0.11%)
-
-
-
-scalaz.Equal[(Boolean, List[Int])] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[scalaz.Tree[Int]] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[monocle.function.MMap[Int,String]] (68 ms, 0.55%)
-
-
-
-monocle.function.Each[scalaz.Maybe[Int],Int] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(63)]] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long), Float)] (16 ms, 0.13%)
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int]] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[monocle.Nullary] (5 ms, 0.04%)
-
-
-
-Stream[Int] => Traversable[Int] (4 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[(Int, Char),L1] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int]] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[PrismSpec.this.IntOrString] (4 ms, 0.03%)
-
-
-
-monocle.function.Each[scalaz.NonEmptyList[Int],Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[(Int, Char)] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Char] (4 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Option[Unit]] (2 ms, 0.02%)
-
-
-
-shapeless.Witness.Aux[String("hello")] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Boolean] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Boolean] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Long] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Boolean] (12 ms, 0.10%)
-
-
-
-scalaz.Equal[(IsoSpec.this.IntWrapper, Boolean)] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(7)]] (22 ms, 0.18%)
-
-
-
-monocle.function.Each[List[Char],Char] (188 ms, 1.53%)
-
-
-
-Float => Int (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String("world")] => monocle.refined.EndsWithString[String("world")]] (14 ms, 0.11%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[String \/ Int] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[IsoSpec.this.IntWrapper] (16 ms, 0.13%)
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Int] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[(String, Int)] (14 ms, 0.11%)
-
-
-
-monocle.function.Snoc1[scalaz.NonEmptyList[Int],scalaz.IList[Int],Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int]] (43 ms, 0.35%)
-
-
-
-scalaz.Equal[Int] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[String] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[Option[(Char, Boolean, String, Int, Double)]] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Init[Float :: Long :: Double :: shapeless.HNil] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (62 ms, 0.51%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int]] (35 ms, 0.29%)
-
-
-
-scalaz.Equal[String] (4 ms, 0.03%)
-
-
-
-scalaz.Equal[Boolean \/ IsoSpec.this.IntWrapper] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (53 ms, 0.43%)
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((Char, scalaz.IList[Char])) => (Char, scalaz.IList[Char])] (68 ms, 0.55%)
-
-
-
-org.scalacheck.Cogen[monocle.refined.EndsWithString[String("world")]] (2 ms, 0.02%)
-
-
-
-scalaz.Order[Int] (6 ms, 0.05%)
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.NonEmptyList[Char],Char,scalaz.IList[Char]] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[String] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[Boolean] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[(Stream[Int], Int)] (10 ms, 0.08%)
-
-
-
-org.scalactic.source.Position (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int \/ String] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Gen.Choose[Int] (80 ms, 0.65%)
-
-
-
-scala.reflect.ClassTag[((Boolean, Int)) => (Boolean, Int)] (4 ms, 0.03%)
-
-
-
-scalaz.Equal[GetterSpec.this.Bar] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]] (25 ms, 0.20%)
-
-
-
-org.scalacheck.Cogen[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int]] (9 ms, 0.07%)
-
-
-
-scalaz.Equal[monocle.Arities => Option[(String, Int)]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[monocle.function.CNel] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[B] (2 ms, 0.02%)
-
-
-
-monocle.function.Each[List[Int],Int] (71 ms, 0.58%)
-
-
-
-org.scalactic.source.Position (65 ms, 0.53%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-org.scalatest.enablers.CheckerAsserting[ASSERTION] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Boolean)] (59 ms, 0.48%)
-
-
-
-((Nothing, Nothing, Nothing)) => Seq[?T] (47 ms, 0.38%)
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]] (16 ms, 0.13%)
-
-
-
-scala.reflect.ClassTag[(Int, Char, Boolean, String, Long, Float)] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[(String, Int)] (13 ms, 0.11%)
-
-
-
-scalaz.Equal[scalaz.Maybe[Int]] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[scala.util.Try[Int]] (46 ms, 0.38%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Boolean)] (49 ms, 0.40%)
-
-
-
-scalaz.Equal[IsoSpec.this.IntWrapper] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[Int] (6 ms, 0.05%)
-
-
-
-scalaz.Equal[A5] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[List[Char] => List[Char]] (7 ms, 0.06%)
-
-
-
-scalaz.Equal[(Int, GetterSpec.this.Bar)] (19 ms, 0.15%)
-
-
-
-org.scalacheck.Cogen[(monocle.function.CList, Char)] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Unary,Int]] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int)] (19 ms, 0.15%)
-
-
-
-scalaz.Equal[IsoSpec.this.IdWrapper[Int]] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Long] (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[(Int,),L1] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Boolean] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Option[List[Int]]] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[Int] (5 ms, 0.04%)
-
-
-
-monocle.function.Each[List[Int] :: shapeless.HNil,Int] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[Int => monocle.Unary] (5 ms, 0.04%)
-
-
-
-scalaz.Equal[Long] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String \/ Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int] => scalaz.NonEmptyList[Int]] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[List[A]] (67 ms, 0.55%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Double,(Double, Float :: Long :: Double :: shapeless.HNil)] (7 ms, 0.06%)
-
-
-
-org.scalactic.Equality[PrismSpec.this.IntOrString] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int => Boolean] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (3 ms, 0.02%)
-
-
-
-Stream[Int] => ?{def ===: ?} (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[(Int, String)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[BigInt] (24 ms, 0.20%)
-
-
-
-scala.reflect.ClassTag[Int] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]] (37 ms, 0.30%)
-
-
-
-shapeless.Generic.Aux[scalaz.Maybe[Int],SGen] (10 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Float] (4 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Long] (8 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[Byte => Byte] (3 ms, 0.02%)
-
-
-
-monocle.function.Field4[(Boolean, Char, Int, Long, Float, Double),Long] (2 ms, 0.02%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[HListSpec.this.H,HListSpec.this.ReverseH] (5 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Init[Char :: Float :: Long :: Double :: shapeless.HNil] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (3 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(Long, String)] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example2Type[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Boolean] (5 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Prepend[Boolean :: Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil] (16 ms, 0.13%)
-
-
-
-org.scalacheck.Arbitrary[Int] (33 ms, 0.27%)
-
-
-
-scalaz.Equal[String \/ Int] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Long => Long] (53 ms, 0.43%)
-
-
-
-org.scalacheck.Arbitrary[A] (5 ms, 0.04%)
-
-
-
-monocle.function.Field2[(Int, Char),Char] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (103 ms, 0.84%)
-
-
-
-scala.reflect.ClassTag[(Int, Boolean)] (4 ms, 0.03%)
-
-
-
-List[Int] => Traversable[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long, Float)] (165 ms, 1.35%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String("world")]] (4 ms, 0.03%)
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]] (2 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[Either[Unit,Int],SGen] (8 ms, 0.07%)
-
-
-
-scalaz.Equal[Int] (35 ms, 0.29%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[Vector[Int],Vector[Int]] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[String] (23 ms, 0.19%)
-
-
-
-org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)] (4 ms, 0.03%)
-
-
-
-org.scalactic.Prettifier (2 ms, 0.02%)
-
-
-
-List[(K, V)] => Traversable[(K, V)] (6 ms, 0.05%)
-
-
-
-monocle.function.Reverse[HListSpec.this.H,HListSpec.this.ReverseH] (10 ms, 0.08%)
-
-
-
-scala.collection.immutable.Stream[Int] => org.scalacheck.util.Pretty (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[List[Int]] (163 ms, 1.33%)
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Nullary,Unit]] (14 ms, 0.11%)
-
-
-
-org.scalacheck.Cogen[Byte] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.EmptyCase] (7 ms, 0.06%)
-
-
-
-scalaz.Equal[List[(Int, String)]] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Double] (24 ms, 0.20%)
-
-
-
-org.scalacheck.Arbitrary[(Vector[Int], Int)] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[Char] (2 ms, 0.02%)
-
-
-
-monocle.function.Field1[(Int, Char, Boolean, String, Long, Float),Int] (2 ms, 0.02%)
-
-
-
-Integral[Int] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Int] (67 ms, 0.55%)
-
-
-
-scalaz.Foldable[List] (9 ms, 0.07%)
-
-
-
-monocle.function.Each[String,Char] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[C] (6 ms, 0.05%)
-
-
-
-shapeless.Generic.Aux[Int ==>> String,SGen] (4 ms, 0.03%)
-
-
-
-org.scalactic.Equality[List[Int] \/ TraversalSpec.this.Location] (3 ms, 0.02%)
-
-
-
-monocle.function.Each[shapeless.HNil,Any] (2 ms, 0.02%)
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int] (15 ms, 0.12%)
-
-
-
-monocle.function.Snoc1[(Int, Char, Boolean, String, Long, Float),(Int, Char, Boolean, String, Long),Float] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Cogen[Boolean] (4 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.H] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (536 ms, 4.37%)
-org.s..
-
-
-scalaz.Equal[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.AnObject.type] (7 ms, 0.06%)
-
-
-
-scala.reflect.ClassTag[(Boolean, List[Int])] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((Int, Option[scalaz.Cofree[Option,Int]])) => (Int, Option[scalaz.Cofree[Option,Int]])] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Shrink[Int] (4 ms, 0.03%)
-
-
-
-monocle.function.Reverse[Stream[Int],Stream[Int]] (25 ms, 0.20%)
-
-
-
-org.scalacheck.Cogen[Int] (3 ms, 0.02%)
-
-
-
-Boolean => ?{def shouldEqual: ?} (139 ms, 1.13%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String("hello")]] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[List[Int]] (25 ms, 0.20%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[Stream[Int],Stream[Int]] (23 ms, 0.19%)
-
-
-
-shapeless.Generic.Aux[String :: shapeless.HNil,SGen] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[(Int, String)] (8 ms, 0.07%)
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Unary,Int]] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Cogen[Int \/ String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Option[Unit]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String \/ Int] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int]] (32 ms, 0.26%)
-
-
-
-String => Int (4 ms, 0.03%)
-
-
-
-scalaz.Equal[Stream[Int]] (4 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[HListSpec.this.Example,HListSpec.this.H] (72 ms, 0.59%)
-
-
-
-scala.reflect.ClassTag[Char] (2 ms, 0.02%)
-
-
-
-Integral[scala.collection.immutable.Stream[Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Boolean] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)] (16 ms, 0.13%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char]] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[Int] (23 ms, 0.19%)
-
-
-
-shapeless.ops.hlist.Last[Char :: Float :: Long :: Double :: shapeless.HNil] (2 ms, 0.02%)
-
-
-
-Unit => ?{def shouldEqual: ?} (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (6 ms, 0.05%)
-
-
-
-scala.collection.immutable.Stream[Int] => Traversable[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[(Int, Int),SGen] (9 ms, 0.07%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.IList[Char],scalaz.IList[Char]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[B] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[(((Int, Char, Boolean, String, Long), Float)) => ((Int, Char, Boolean, String, Long), Float)] (27 ms, 0.22%)
-
-
-
-scala.collection.immutable.Stream[Int] => Traversable[Int] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[List[(K, V)]] (24 ms, 0.20%)
-
-
-
-shapeless.Generic.Aux[List[Char],SGen] (184 ms, 1.50%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-shapeless.Generic.Aux[Unit \/ Int,SGen] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[Char] (14 ms, 0.11%)
-
-
-
-monocle.function.Each[Either[Unit,Int],Int] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]] (50 ms, 0.41%)
-
-
-
-scalaz.Equal[monocle.Arities => Option[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[java.net.URL => java.net.URL] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (15 ms, 0.12%)
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._2.N,Char] (4 ms, 0.03%)
-
-
-
-scalaz.Order[Int] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Stream[Int]] (41 ms, 0.33%)
-
-
-
-org.scalacheck.Cogen[Boolean] (8 ms, 0.07%)
-
-
-
-scalaz.Compose[monocle.Fold] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int ==>> String] (35 ms, 0.29%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[monocle.Example] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Float => Float] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int]] (9 ms, 0.07%)
-
-
-
-monocle.function.Snoc1[HListSpec.this.H,HListSpec.this.HInit,Double] (31 ms, 0.25%)
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]] (75 ms, 0.61%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int] => Either[String,Int]] (17 ms, 0.14%)
-
-
-
-org.scalacheck.Arbitrary[String] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char]] (27 ms, 0.22%)
-
-
-
-scala.reflect.ClassTag[Boolean] (4 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Char] (4 ms, 0.03%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),(Char, Int)] (7 ms, 0.06%)
-
-
-
-monocle.function.Reverse[(Int,),(Int,)] (21 ms, 0.17%)
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._5.N,Double] (3 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Option[Int])] (11 ms, 0.09%)
-
-
-
-org.scalacheck.util.Buildable[Int,scala.util.Try[Int]] (5 ms, 0.04%)
-
-
-
-Option[A] => scala.collection.GenTraversableOnce[B] (8 ms, 0.07%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.IList[Char],scalaz.IList[Char]] (21 ms, 0.17%)
-
-
-
-shapeless.Generic.Aux[scalaz.NonEmptyList[Int],L1] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Vector[Int] => Vector[Int]] (53 ms, 0.43%)
-
-
-
-org.scalacheck.Cogen[(Char, monocle.function.CList)] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[(K, V)] (92 ms, 0.75%)
-
-
-
-org.scalacheck.Cogen[(A, T[A])] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char]] (33 ms, 0.27%)
-
-
-
-org.scalacheck.Cogen[Long] (7 ms, 0.06%)
-
-
-
-scalaz.Equal[Int ==>> String] (10 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[(Boolean, Int)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Int] (4 ms, 0.03%)
-
-
-
-monocle.function.Cons1[scalaz.OneAnd[List,Int],Int,List[Int]] (3 ms, 0.02%)
-
-
-
-org.scalactic.Equality[Option[PrismSpec.this.IntOrString]] (13 ms, 0.11%)
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._1.N,Boolean] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[Stream[Int]] (5 ms, 0.04%)
-
-
-
-shapeless.ops.tuple.Reverse.Aux[String,String] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[((Int,)) => (Int,)] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Char] (2 ms, 0.02%)
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int]] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[A] (52 ms, 0.42%)
-
-
-
-Option[PrismSpec.this.IntOrString] => ?{def shouldEqual: ?} (6 ms, 0.05%)
-
-
-
-org.scalacheck.Cogen[List[Int]] (5 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Init[Float :: Long :: Double :: shapeless.HNil] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[(HListSpec.this.HInit, Double)] (4 ms, 0.03%)
-
-
-
-shapeless.Generic.Aux[String,SGen] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int] (96 ms, 0.78%)
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Option[Int] => Option[Int]] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int => Boolean \/ Int] (39 ms, 0.32%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,(K, V),List[(K, V)]] (13 ms, 0.11%)
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Stream[Int]] (4 ms, 0.03%)
-
-
-
-org.scalactic.Prettifier (30 ms, 0.24%)
-
-
-
-scala.reflect.ClassTag[String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(HListSpec.this.HInit, Double)] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[A] (6 ms, 0.05%)
-
-
-
-scala.reflect.ClassTag[Boolean] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (11 ms, 0.09%)
-
-
-
-shapeless.Witness.Aux[String("world")] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._4.N,Long] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(Char, Int)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ (String \/ Int)] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[List[(K, V)]] (310 ms, 2.53%)
-or..
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[Unit,Int]] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[Int] (22 ms, 0.18%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: shapeless.HNil,L2] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[List[Int]] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Tupler[HListSpec.this.HTail] (5 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Int] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[String] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int => Int] (1,027 ms, 8.37%)
-org.scalach..
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit]] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[(scala.collection.immutable.Map[Int,String], Int)] (22 ms, 0.18%)
-
-
-
-org.scalacheck.Arbitrary[A] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[K] (10 ms, 0.08%)
-
-
-
-monocle.function.Each[String :: String :: shapeless.HNil,String] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[(Int,)] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Float] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[(scalaz.IList[Int], Int)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(31)]] (15 ms, 0.12%)
-
-
-
-org.scalacheck.Arbitrary[Int] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]] (6 ms, 0.05%)
-
-
-
-List[A] => Traversable[A] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (12 ms, 0.10%)
-
-
-
-org.scalacheck.Arbitrary[((Int, List[Int])) => (Int, List[Int])] (41 ms, 0.33%)
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[(String, String)] (7 ms, 0.06%)
-
-
-
-scala.reflect.ClassTag[Boolean] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Arbitrary[(K, V)] (3 ms, 0.02%)
-
-
-
-Fractional[Int] (10 ms, 0.08%)
-
-
-
-org.scalacheck.Cogen[Boolean] (7 ms, 0.06%)
-
-
-
-shapeless.Generic.Aux[scalaz.IList[Char],L1] (18 ms, 0.15%)
-
-
-
-org.scalactic.Equality[Option[List[Int]]] (9 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-shapeless.Witness.Aux[Int(0)] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String \/ Int] (106 ms, 0.86%)
-
-
-
-shapeless.ops.hlist.Reverse[HListSpec.this.ReverseH] (13 ms, 0.11%)
-
-
-
-scala.reflect.ClassTag[Int] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Throwable] (3 ms, 0.02%)
-
-
-
-monocle.function.Each[(Int, Int, Int, Int),Int] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Option[String]] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int] => scalaz.Tree[Int]] (23 ms, 0.19%)
-
-
-
-org.scalacheck.Arbitrary[Int] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Cogen[String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[A] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[String \/ Int] (10 ms, 0.08%)
-
-
-
-org.scalactic.Equality[List[Int] \/ List[Int]] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Arbitrary[((Int, (Char, Boolean, String, Long, Float))) => (Int, (Char, Boolean, String, Long, Float))] (30 ms, 0.24%)
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]] (20 ms, 0.16%)
-
-
-
-shapeless.ops.hlist.Prepend[Float :: Long :: shapeless.HNil,Double :: shapeless.HNil] (13 ms, 0.11%)
-
-
-
-org.scalactic.Prettifier (16 ms, 0.13%)
-
-
-
-scala.reflect.ClassTag[A] (22 ms, 0.18%)
-
-
-
-org.scalacheck.Arbitrary[(Int, Stream[Int])] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Char] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Int] (26 ms, 0.21%)
-
-
-
-org.scalacheck.Arbitrary[Float] (16 ms, 0.13%)
-
-
-
-org.scalacheck.Arbitrary[(Char, String)] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[Char] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[A] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[CoproductSpec.this.IB] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Float] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,String]] (18 ms, 0.15%)
-
-
-
-org.scalacheck.Cogen[Float] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[Long] (2 ms, 0.02%)
-
-
-
-monocle.function.Each[scalaz.Cofree[Option,Int],Int] (20 ms, 0.16%)
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]]] (4 ms, 0.03%)
-
-
-
-scalaz.Equal[IsoSpec.this.IntWrapper] (3 ms, 0.02%)
-
-
-
-monocle.generic.internal.TupleGeneric[ProductSpec.this.Person] (17 ms, 0.14%)
-
-
-
-org.scalacheck.Cogen[List[A]] (13 ms, 0.11%)
-
-
-
-org.scalacheck.Arbitrary[((Char, String)) => (Char, String)] (10 ms, 0.08%)
-
-
-
-shapeless.ops.hlist.Init[Long :: Double :: shapeless.HNil] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[String] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Boolean, IsoSpec.this.IntWrapper)] (18 ms, 0.15%)
-
-
-
-monocle.function.Field4[HListSpec.this.H,Float] (11 ms, 0.09%)
-
-
-
-scalaz.Equal[Option[String]] (3 ms, 0.02%)
-
-
-
-scalaz.Equal[Int] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Cogen[Double] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[A]] (16 ms, 0.13%)
-
-
-
-org.scalacheck.Cogen[monocle.function.CList] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Either3[String,Int,Char]] (38 ms, 0.31%)
-
-
-
-org.scalacheck.Arbitrary[(Int,)] (12 ms, 0.10%)
-
-
-
-scalaz.Equal[(monocle.Example, Boolean)] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[List[Int]] (19 ms, 0.15%)
-
-
-
-org.scalacheck.Cogen[(A, scalaz.IList[A])] (9 ms, 0.07%)
-
-
-
-org.scalactic.Equality[Boolean] (104 ms, 0.85%)
-
-
-
-org.scalacheck.Arbitrary[String] (120 ms, 0.98%)
-
-
-
-shapeless.Generic.Aux[Map[Int,String],SGen] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Either[String,String]] (11 ms, 0.09%)
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[((Stream[Int], Int)) => (Stream[Int], Int)] (12 ms, 0.10%)
-
-
-
-org.scalactic.Equality[Option[List[Unit]]] (11 ms, 0.09%)
-
-
-
-shapeless.Generic.Aux[scala.util.Try[Int],SGen] (8 ms, 0.07%)
-
-
-
-org.scalacheck.Cogen[Option[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (3 ms, 0.02%)
-
-
-
-org.scalactic.Equality[Option[String]] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Shrink[Int] (18 ms, 0.15%)
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[HListSpec.this.H,Int,HListSpec.this.HTail] (2 ms, 0.02%)
-
-
-
-org.scalacheck.util.Buildable[(Int, String),monocle.function.MMap[Int,String]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (21 ms, 0.17%)
-
-
-
-org.scalacheck.Arbitrary[Throwable => Throwable] (7 ms, 0.06%)
-
-
-
-monocle.function.Each[scala.util.Try[Int],Int] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-scalaz.Monoid[String] (5 ms, 0.04%)
-
-
-
-monocle.function.Field2[(Boolean, Char, Int, Long, Float, Double),Char] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Boolean] (11 ms, 0.09%)
-
-
-
-monocle.function.Reverse[List[Int],List[Int]] (72 ms, 0.59%)
-
-
-
-org.scalacheck.Arbitrary[String => String] (288 ms, 2.35%)
-o..
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0,Boolean,(Boolean, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (3 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,A,List[A]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Long] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int]] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long)) => (Int, Char, Boolean, String, Long)] (21 ms, 0.17%)
-
-
-
-scala.reflect.ClassTag[Boolean] (2 ms, 0.02%)
-
-
-
-Option[List[Unit]] => ?{def shouldEqual: ?} (2 ms, 0.02%)
-
-
-
-scalaz.Equal[monocle.Binary => (String, Int)] (7 ms, 0.06%)
-
-
-
-Option[scalaz.Cofree[Option,A]] => ?{def ===: ?} (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Char] (18 ms, 0.15%)
-
-
-
-org.scalacheck.Arbitrary[Char] (3 ms, 0.02%)
-
-
-
-shapeless.ops.coproduct.Inject[CoproductSpec.this.IB,Boolean] (4 ms, 0.03%)
-
-
-
-org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)] (3 ms, 0.02%)
-
-
-
-monocle.function.Field6[(Boolean, Char, Int, Long, Float, Double),Double] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean] (29 ms, 0.24%)
-
-
-
-org.scalacheck.Arbitrary[List[Int]] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[((Boolean, Int)) => (Boolean, Int)] (94 ms, 0.77%)
-
-
-
-scalaz.Equal[(Char, Boolean, String, Int, Double)] (2 ms, 0.02%)
-
-
-
-monocle.function.Field1[(Int,),Int] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[monocle.Arities => Option[Unit]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (3 ms, 0.02%)
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Double :: shapeless.HNil,Float :: Char :: Boolean :: Int :: shapeless.HNil,Out] (7 ms, 0.06%)
-
-
-
-org.scalacheck.Arbitrary[Char] (2 ms, 0.02%)
-
-
-
-scalaz.Equal[A4] (5 ms, 0.04%)
-
-
-
-org.scalacheck.Cogen[List[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Cogen[Vector[Int]] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (6 ms, 0.05%)
-
-
-
-scalaz.Equal[List[Unit]] (7 ms, 0.06%)
-
-
-
-scala.reflect.ClassTag[Vector[Int] => Vector[Int]] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Double] (3 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(String, Int)] (6 ms, 0.05%)
-
-
-
-org.scalacheck.Shrink[(Int, String)] (8 ms, 0.07%)
-
-
-
-org.scalactic.Equality[List[Int]] (41 ms, 0.33%)
-
-
-
-org.scalacheck.Cogen[(Int, scalaz.IList[Int])] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[(Long, String)] (9 ms, 0.07%)
-
-
-
-org.scalacheck.Arbitrary[Unit] (5 ms, 0.04%)
-
-
-
-shapeless.ops.hlist.Last.Aux[HListSpec.this.H,Double] (4 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Int] (2 ms, 0.02%)
-
-
-
-monocle.function.Each[(Int, Int, Int, Int, Int, Int),Int] (23 ms, 0.19%)
-
-
-
-shapeless.ops.hlist.Reverse.Aux[String,String] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int] (4 ms, 0.03%)
-
-
-
-scalaz.Equal[Int] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[List[Int]] (2 ms, 0.02%)
-
-
-
diff --git a/docs/monocle-test-suite.html b/docs/monocle-test-suite.html
deleted file mode 100644
index d271d73..0000000
--- a/docs/monocle-test-suite.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-
-
-
- Click node to highlight; Shift-scroll to zoom; Esc to unhighlight
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/monocle-test-suite.svg b/docs/monocle-test-suite.svg
deleted file mode 100644
index 1e01c56..0000000
--- a/docs/monocle-test-suite.svg
+++ /dev/null
@@ -1,18596 +0,0 @@
-
-
-
-
-
-
-implicit-searches-1510254997317
-
-
-
-scalaz.Equal[Int => monocle.Arities]
-
-scalaz.Equal[Int => monocle.Arities]
-1 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[Int]
-
-org.scalacheck.Arbitrary[Int]
-519 times = 2217ms
-
-
-
-scalaz.Equal[Int => monocle.Arities]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Equal[monocle.Arities]
-
-scalaz.Equal[monocle.Arities]
-8 times = 6ms
-
-
-
-scalaz.Equal[Int => monocle.Arities]->scalaz.Equal[monocle.Arities]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Float :: Long :: Double :: shapeless.HNil,Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Float :: Long :: Double :: shapeless.HNil,Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Int :: shapeless.HNil,HListSpec.this.H]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Int :: shapeless.HNil,HListSpec.this.H]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Float :: Long :: Double :: shapeless.HNil,Boolean :: Int :: shapeless.HNil,HListSpec.this.H]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Int :: shapeless.HNil,HListSpec.this.H]
-
-
-
-
-
-scalaz.Choice[monocle.Traversal]
-
-scalaz.Choice[monocle.Traversal]
-1 times = 0ms
-
-
-
-scalaz.Traverse[List]
-
-scalaz.Traverse[List]
-4 times = 2ms
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit] => ?{def shouldEqual: ?}
-
-monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit] => ?{def shouldEqual: ?}
-1 times = 1ms
-
-
-
-org.scalactic.Prettifier
-
-org.scalactic.Prettifier
-417 times = 214ms
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-org.scalactic.source.Position
-
-org.scalactic.source.Position
-544 times = 850ms
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.Generic.Aux[(String, String),SGen]
-
-shapeless.Generic.Aux[(String, String),SGen]
-1 times = 7ms
-
-
-
-scala.reflect.ClassTag[Unit \/ Int => Unit \/ Int]
-
-scala.reflect.ClassTag[Unit / Int => Unit / Int]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Option[scalaz.Cofree[Option,Int]])) => (Int, Option[scalaz.Cofree[Option,Int]])]
-
-org.scalacheck.Arbitrary[((Int, Option[scalaz.Cofree[Option,Int]])) => (Int, Option[scalaz.Cofree[Option,Int]])]
-1 times = 25ms
-
-
-
-scala.reflect.ClassTag[((Int, Option[scalaz.Cofree[Option,Int]])) => (Int, Option[scalaz.Cofree[Option,Int]])]
-
-scala.reflect.ClassTag[((Int, Option[scalaz.Cofree[Option,Int]])) => (Int, Option[scalaz.Cofree[Option,Int]])]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Option[scalaz.Cofree[Option,Int]])) => (Int, Option[scalaz.Cofree[Option,Int]])]->scala.reflect.ClassTag[((Int, Option[scalaz.Cofree[Option,Int]])) => (Int, Option[scalaz.Cofree[Option,Int]])]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Option[scalaz.Cofree[Option,Int]])]
-
-org.scalacheck.Cogen[(Int, Option[scalaz.Cofree[Option,Int]])]
-1 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Option[scalaz.Cofree[Option,Int]])) => (Int, Option[scalaz.Cofree[Option,Int]])]->org.scalacheck.Cogen[(Int, Option[scalaz.Cofree[Option,Int]])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Option[scalaz.Cofree[Option,Int]])]
-
-org.scalacheck.Arbitrary[(Int, Option[scalaz.Cofree[Option,Int]])]
-1 times = 11ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Option[scalaz.Cofree[Option,Int]])) => (Int, Option[scalaz.Cofree[Option,Int]])]->org.scalacheck.Arbitrary[(Int, Option[scalaz.Cofree[Option,Int]])]
-
-
-
-
-
-scala.reflect.ClassTag[Int]
-
-scala.reflect.ClassTag[Int]
-519 times = 334ms
-
-
-
-scalaz.Equal[monocle.Quintary]
-
-scalaz.Equal[monocle.Quintary]
-2 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Long :: Double :: shapeless.HNil,Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Long :: Double :: shapeless.HNil,Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Long :: Double :: shapeless.HNil,Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Float :: Long :: Double :: shapeless.HNil,Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-
-
-
-
-
-scala.reflect.ClassTag[B]
-
-scala.reflect.ClassTag[B]
-4 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.H]
-
-org.scalacheck.Arbitrary[HListSpec.this.H]
-14 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Boolean)) => (Int, Boolean)]
-
-org.scalacheck.Arbitrary[((Int, Boolean)) => (Int, Boolean)]
-3 times = 110ms
-
-
-
-scala.reflect.ClassTag[((Int, Boolean)) => (Int, Boolean)]
-
-scala.reflect.ClassTag[((Int, Boolean)) => (Int, Boolean)]
-3 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Boolean)) => (Int, Boolean)]->scala.reflect.ClassTag[((Int, Boolean)) => (Int, Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Boolean)]
-
-org.scalacheck.Arbitrary[(Int, Boolean)]
-6 times = 114ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Boolean)) => (Int, Boolean)]->org.scalacheck.Arbitrary[(Int, Boolean)]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Boolean)]
-
-org.scalacheck.Cogen[(Int, Boolean)]
-3 times = 27ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Boolean)) => (Int, Boolean)]->org.scalacheck.Cogen[(Int, Boolean)]
-
-
-
-
-
-monocle.function.At[scalaz.ISet[Int],Int,Boolean]
-
-monocle.function.At[scalaz.ISet[Int],Int,Boolean]
-1 times = 0ms
-
-
-
-scalaz.Order[Int]
-
-scalaz.Order[Int]
-84 times = 29ms
-
-
-
-monocle.function.At[scalaz.ISet[Int],Int,Boolean]->scalaz.Order[Int]
-
-
-
-
-
-scala.reflect.ClassTag[HListSpec.this.H => HListSpec.this.H]
-
-scala.reflect.ClassTag[HListSpec.this.H => HListSpec.this.H]
-1 times = 1ms
-
-
-
-monocle.function.Plated[scala.collection.immutable.Stream[Int]]
-
-monocle.function.Plated[scala.collection.immutable.Stream[Int]]
-1 times = 0ms
-
-
-
-monocle.function.FilterIndex[Stream[Int],Int,Int]
-
-monocle.function.FilterIndex[Stream[Int],Int,Int]
-1 times = 0ms
-
-
-
-AtSpec.this.PropertyCheckConfigurable
-
-AtSpec.this.PropertyCheckConfigurable
-1 times = 0ms
-
-
-
-monocle.function.Reverse[Vector[Int],Vector[Int]]
-
-monocle.function.Reverse[Vector[Int],Vector[Int]]
-1 times = 19ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Vector[Int],Vector[Int]]
-
-shapeless.ops.hlist.Reverse.Aux[Vector[Int],Vector[Int]]
-1 times = 3ms
-
-
-
-monocle.function.Reverse[Vector[Int],Vector[Int]]->shapeless.ops.hlist.Reverse.Aux[Vector[Int],Vector[Int]]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[Vector[Int],Vector[Int]]
-
-shapeless.ops.tuple.Reverse.Aux[Vector[Int],Vector[Int]]
-1 times = 12ms
-
-
-
-monocle.function.Reverse[Vector[Int],Vector[Int]]->shapeless.ops.tuple.Reverse.Aux[Vector[Int],Vector[Int]]
-
-
-
-
-
-monocle.function.Plated[Vector[Int]]
-
-monocle.function.Plated[Vector[Int]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Bar1]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Bar1]
-3 times = 2ms
-
-
-
-(Int, Option[Int]) =:= (Int, Option[Int])
-
-(Int, Option[Int]) =:= (Int, Option[Int])
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[A => A]
-
-scala.reflect.ClassTag[A => A]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._2.N,Boolean]
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._2.N,Boolean]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Option[String]]
-
-org.scalacheck.Arbitrary[Option[String]]
-6 times = 30ms
-
-
-
-org.scalacheck.Arbitrary[String]
-
-org.scalacheck.Arbitrary[String]
-153 times = 1363ms
-
-
-
-org.scalacheck.Arbitrary[Option[String]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-scalaz.Category[monocle.Fold]
-
-scalaz.Category[monocle.Fold]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[((Int, scalaz.IList[Int])) => (Int, scalaz.IList[Int])]
-
-scala.reflect.ClassTag[((Int, scalaz.IList[Int])) => (Int, scalaz.IList[Int])]
-1 times = 0ms
-
-
-
-monocle.function.Index[Map[Int,String],Int,String]
-
-monocle.function.Index[Map[Int,String],Int,String]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[Option[scalaz.Cofree[Option,A]]]
-
-org.scalacheck.Cogen[Option[scalaz.Cofree[Option,A]]]
-2 times = 7ms
-
-
-
-org.scalacheck.Cogen[scalaz.Cofree[Option,A]]
-
-org.scalacheck.Cogen[scalaz.Cofree[Option,A]]
-2 times = 2ms
-
-
-
-org.scalacheck.Cogen[Option[scalaz.Cofree[Option,A]]]->org.scalacheck.Cogen[scalaz.Cofree[Option,A]]
-
-
-
-
-
-org.scalacheck.Arbitrary[V]
-
-org.scalacheck.Arbitrary[V]
-1 times = 14ms
-
-
-
-scala.reflect.ClassTag[V]
-
-scala.reflect.ClassTag[V]
-2 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[V]->scala.reflect.ClassTag[V]
-
-
-
-
-
-scala.languageFeature.postfixOps
-
-scala.languageFeature.postfixOps
-3 times = 0ms
-
-
-
-((Nothing, Nothing)) => Seq[?T]
-
-((Nothing, Nothing)) => Seq[?T]
-1 times = 1ms
-
-
-
-scalaz.Functor[F$macro$2]
-
-scalaz.Functor[F$macro$2]
-1 times = 0ms
-
-
-
-Integral[String]
-
-Integral[String]
-1 times = 0ms
-
-
-
-monocle.Foo.type => ?{def q_=: ?}
-
-monocle.Foo.type => ?{def q_=: ?}
-3 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.H,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.H,Out0]
-1 times = 7ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Out]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.H,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Out]
-
-
-
-
-
-org.scalacheck.Arbitrary[(monocle.function.CList, Char)]
-
-org.scalacheck.Arbitrary[(monocle.function.CList, Char)]
-1 times = 13ms
-
-
-
-scala.reflect.ClassTag[(monocle.function.CList, Char)]
-
-scala.reflect.ClassTag[(monocle.function.CList, Char)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(monocle.function.CList, Char)]->scala.reflect.ClassTag[(monocle.function.CList, Char)]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList]
-
-org.scalacheck.Arbitrary[monocle.function.CList]
-8 times = 41ms
-
-
-
-org.scalacheck.Arbitrary[(monocle.function.CList, Char)]->org.scalacheck.Arbitrary[monocle.function.CList]
-
-
-
-
-
-org.scalacheck.Arbitrary[Char]
-
-org.scalacheck.Arbitrary[Char]
-116 times = 460ms
-
-
-
-org.scalacheck.Arbitrary[(monocle.function.CList, Char)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[A]
-
-org.scalacheck.Arbitrary[A]
-2 times = 11ms
-
-
-
-scala.reflect.ClassTag[A]
-
-scala.reflect.ClassTag[A]
-2 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[A]->scala.reflect.ClassTag[A]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.Quintary]
-
-org.scalacheck.Arbitrary[monocle.Quintary]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[monocle.Quintary]
-
-scala.reflect.ClassTag[monocle.Quintary]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[monocle.Quintary]->scala.reflect.ClassTag[monocle.Quintary]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar]
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar]
-2 times = 7ms
-
-
-
-eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-16 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Char),L1]
-
-shapeless.Generic.Aux[(Int, Char),L1]
-1 times = 5ms
-
-
-
-scala.reflect.ClassTag[scalaz.IList[Char] => scalaz.IList[Char]]
-
-scala.reflect.ClassTag[scalaz.IList[Char] => scalaz.IList[Char]]
-6 times = 5ms
-
-
-
-org.scalactic.Equality[monocle.Point]
-
-org.scalactic.Equality[monocle.Point]
-2 times = 3ms
-
-
-
-scalaz.Equal[monocle.Point]
-
-scalaz.Equal[monocle.Point]
-2 times = 1ms
-
-
-
-org.scalactic.Equality[monocle.Point]->scalaz.Equal[monocle.Point]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[String,String]
-
-shapeless.ops.tuple.Reverse.Aux[String,String]
-1 times = 4ms
-
-
-
-shapeless.Generic.Aux[String,L1]
-
-shapeless.Generic.Aux[String,L1]
-1 times = 3ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[String,String]->shapeless.Generic.Aux[String,L1]
-
-
-
-
-
-monocle.function.Each[Either[Unit,Int],Int]
-
-monocle.function.Each[Either[Unit,Int],Int]
-1 times = 11ms
-
-
-
-shapeless.Generic.Aux[Either[Unit,Int],SGen]
-
-shapeless.Generic.Aux[Either[Unit,Int],SGen]
-1 times = 8ms
-
-
-
-monocle.function.Each[Either[Unit,Int],Int]->shapeless.Generic.Aux[Either[Unit,Int],SGen]
-
-
-
-
-
-monocle.function.Cons1[(Int, Char),Int,Char]
-
-monocle.function.Cons1[(Int, Char),Int,Char]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[(Int, Char),Int,Char]
-
-shapeless.ops.hlist.IsHCons.Aux[(Int, Char),Int,Char]
-1 times = 0ms
-
-
-
-monocle.function.Cons1[(Int, Char),Int,Char]->shapeless.ops.hlist.IsHCons.Aux[(Int, Char),Int,Char]
-
-
-
-
-
-scala.reflect.ClassTag[Either[String,Int]]
-
-scala.reflect.ClassTag[Either[String,Int]]
-3 times = 2ms
-
-
-
-scala.reflect.ClassTag[scalaz.Validation[String,Int] => scalaz.Validation[String,Int]]
-
-scala.reflect.ClassTag[scalaz.Validation[String,Int] => scalaz.Validation[String,Int]]
-1 times = 0ms
-
-
-
-monocle.function.Snoc[String,Char]
-
-monocle.function.Snoc[String,Char]
-1 times = 0ms
-
-
-
-scalaz.Equal[List[String]]
-
-scalaz.Equal[List[String]]
-1 times = 1ms
-
-
-
-scalaz.Order[String]
-
-scalaz.Order[String]
-26 times = 5ms
-
-
-
-scalaz.Equal[List[String]]->scalaz.Order[String]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char),(Char, Int)]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char),(Char, Int)]
-1 times = 0ms
-
-
-
-scalaz.Equal[Int => monocle.Unary]
-
-scalaz.Equal[Int => monocle.Unary]
-1 times = 7ms
-
-
-
-scalaz.Equal[monocle.Unary]
-
-scalaz.Equal[monocle.Unary]
-2 times = 2ms
-
-
-
-scalaz.Equal[Int => monocle.Unary]->scalaz.Equal[monocle.Unary]
-
-
-
-
-
-scalaz.Equal[Int => monocle.Unary]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-shapeless.Generic.Aux[scalaz.Tree[Int],SGen]
-
-shapeless.Generic.Aux[scalaz.Tree[Int],SGen]
-1 times = 4ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-(=> (Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Tupler[HListSpec.this.HTail]
-
-shapeless.ops.hlist.Tupler[HListSpec.this.HTail]
-1 times = 5ms
-
-
-
-Stream[Stream[Int]] => ?{def ===: ?}
-
-Stream[Stream[Int]] => ?{def ===: ?}
-1 times = 0ms
-
-
-
-monocle.function.Snoc1[scalaz.NonEmptyList[Int],scalaz.IList[Int],Int]
-
-monocle.function.Snoc1[scalaz.NonEmptyList[Int],scalaz.IList[Int],Int]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Init.Aux[scalaz.NonEmptyList[Int],scalaz.IList[Int]]
-
-shapeless.ops.hlist.Init.Aux[scalaz.NonEmptyList[Int],scalaz.IList[Int]]
-1 times = 0ms
-
-
-
-monocle.function.Snoc1[scalaz.NonEmptyList[Int],scalaz.IList[Int],Int]->shapeless.ops.hlist.Init.Aux[scalaz.NonEmptyList[Int],scalaz.IList[Int]]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, monocle.function.CList)]
-
-org.scalacheck.Cogen[(Char, monocle.function.CList)]
-1 times = 11ms
-
-
-
-org.scalacheck.Cogen[Char]
-
-org.scalacheck.Cogen[Char]
-56 times = 96ms
-
-
-
-org.scalacheck.Cogen[(Char, monocle.function.CList)]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[monocle.function.CList]
-
-org.scalacheck.Cogen[monocle.function.CList]
-4 times = 13ms
-
-
-
-org.scalacheck.Cogen[(Char, monocle.function.CList)]->org.scalacheck.Cogen[monocle.function.CList]
-
-
-
-
-
-org.scalacheck.Arbitrary[java.net.URL => java.net.URL]
-
-org.scalacheck.Arbitrary[java.net.URL => java.net.URL]
-1 times = 15ms
-
-
-
-scala.reflect.ClassTag[java.net.URL => java.net.URL]
-
-scala.reflect.ClassTag[java.net.URL => java.net.URL]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[java.net.URL => java.net.URL]->scala.reflect.ClassTag[java.net.URL => java.net.URL]
-
-
-
-
-
-org.scalacheck.Arbitrary[java.net.URL]
-
-org.scalacheck.Arbitrary[java.net.URL]
-2 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[java.net.URL => java.net.URL]->org.scalacheck.Arbitrary[java.net.URL]
-
-
-
-
-
-org.scalacheck.Cogen[java.net.URL]
-
-org.scalacheck.Cogen[java.net.URL]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[java.net.URL => java.net.URL]->org.scalacheck.Cogen[java.net.URL]
-
-
-
-
-
-scala.reflect.ClassTag[Option[Int] => Option[Int]]
-
-scala.reflect.ClassTag[Option[Int] => Option[Int]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Boolean, String)]
-
-scala.reflect.ClassTag[(Boolean, String)]
-2 times = 2ms
-
-
-
-scalaz.Equal[Stream[Int]]
-
-scalaz.Equal[Stream[Int]]
-16 times = 21ms
-
-
-
-scalaz.Equal[Int]
-
-scalaz.Equal[Int]
-339 times = 265ms
-
-
-
-scalaz.Equal[Stream[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[scalaz.Cofree[Option,Int]]
-
-scalaz.Equal[scalaz.Cofree[Option,Int]]
-4 times = 5ms
-
-
-
-scalaz.Equal[scalaz.Cofree[Option,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.Iso[MacroOutSideMonocleSpec.this.Example2,(Long, String)] => monocle.Iso[MacroOutSideMonocleSpec.this.Example2,_$1]
-
-monocle.Iso[MacroOutSideMonocleSpec.this.Example2,(Long, String)] => monocle.Iso[MacroOutSideMonocleSpec.this.Example2,_$1]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[scalaz.Tree[Int],Stream[scalaz.Tree[Int]]]
-
-org.scalacheck.util.Buildable[scalaz.Tree[Int],Stream[scalaz.Tree[Int]]]
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,scalaz.Tree[Int],Stream[scalaz.Tree[Int]]]
-
-scala.collection.generic.CanBuildFrom[F,scalaz.Tree[Int],Stream[scalaz.Tree[Int]]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[scalaz.Tree[Int],Stream[scalaz.Tree[Int]]]->scala.collection.generic.CanBuildFrom[F,scalaz.Tree[Int],Stream[scalaz.Tree[Int]]]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-((Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Map[K,V]]
-
-scala.reflect.ClassTag[Map[K,V]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Float]
-
-scala.reflect.ClassTag[Float]
-24 times = 12ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-2 times = 19ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int]
-2 times = 16ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int]->monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-shapeless.Generic.Aux[Int :: Int :: Int :: Int :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[Int :: Int :: Int :: Int :: shapeless.HNil,SGen]
-1 times = 1ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int]->shapeless.Generic.Aux[Int :: Int :: Int :: Int :: shapeless.HNil,SGen]
-
-
-
-
-
-scalaz.Equal[String \/ Int]
-
-scalaz.Equal[String / Int]
-14 times = 52ms
-
-
-
-scalaz.Equal[String \/ Int]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[String]
-
-scalaz.Equal[String]
-115 times = 81ms
-
-
-
-scalaz.Equal[String \/ Int]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[String \/ Int]->scalaz.Equal[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String \/ Int, Boolean)]
-
-org.scalacheck.Arbitrary[(String / Int, Boolean)]
-1 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[Boolean]
-
-org.scalacheck.Arbitrary[Boolean]
-101 times = 532ms
-
-
-
-org.scalacheck.Arbitrary[(String \/ Int, Boolean)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[String \/ Int]
-
-org.scalacheck.Arbitrary[String / Int]
-15 times = 169ms
-
-
-
-org.scalacheck.Arbitrary[(String \/ Int, Boolean)]->org.scalacheck.Arbitrary[String \/ Int]
-
-
-
-
-
-scala.reflect.ClassTag[(String \/ Int, Boolean)]
-
-scala.reflect.ClassTag[(String / Int, Boolean)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(String \/ Int, Boolean)]->scala.reflect.ClassTag[(String \/ Int, Boolean)]
-
-
-
-
-
-scala.reflect.ClassTag[List[Char]]
-
-scala.reflect.ClassTag[List[Char]]
-4 times = 3ms
-
-
-
-scala.collection.immutable.Stream[Int] => org.scalacheck.util.Pretty
-
-scala.collection.immutable.Stream[Int] => org.scalacheck.util.Pretty
-5 times = 6ms
-
-
-
-scalaz.Equal[B]
-
-scalaz.Equal[B]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0,Char,(Char, Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0,Char,(Char, Char :: Float :: Long :: Double :: shapeless.HNil)]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar => monocle.refined.LowerCaseChar]
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar => monocle.refined.LowerCaseChar]
-1 times = 21ms
-
-
-
-org.scalacheck.Cogen[monocle.refined.LowerCaseChar]
-
-org.scalacheck.Cogen[monocle.refined.LowerCaseChar]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar => monocle.refined.LowerCaseChar]->org.scalacheck.Cogen[monocle.refined.LowerCaseChar]
-
-
-
-
-
-scala.reflect.ClassTag[monocle.refined.LowerCaseChar => monocle.refined.LowerCaseChar]
-
-scala.reflect.ClassTag[monocle.refined.LowerCaseChar => monocle.refined.LowerCaseChar]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar => monocle.refined.LowerCaseChar]->scala.reflect.ClassTag[monocle.refined.LowerCaseChar => monocle.refined.LowerCaseChar]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar]
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar]
-2 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar => monocle.refined.LowerCaseChar]->org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Vector[Int],Vector[Int]]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Vector[Int],Vector[Int]]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Vector[Int],Vector[Int]]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Vector[Int],Vector[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Init.Aux[scalaz.NonEmptyList[Char],scalaz.IList[Char]]
-
-shapeless.ops.hlist.Init.Aux[scalaz.NonEmptyList[Char],scalaz.IList[Char]]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[((Char, String)) => (Char, String)]
-
-scala.reflect.ClassTag[((Char, String)) => (Char, String)]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[(HListSpec.this.HInit, Double)]
-
-scala.reflect.ClassTag[(HListSpec.this.HInit, Double)]
-2 times = 1ms
-
-
-
-scalaz.Equal[Int \&/ String]
-
-scalaz.Equal[Int &/ String]
-1 times = 2ms
-
-
-
-scalaz.Equal[Int \&/ String]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[Int \&/ String]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[Int \&/ String]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Int \&/ String]->scalaz.Order[Int]
-
-
-
-
-
-scala.reflect.ClassTag[scalaz.IList[Int] => scalaz.IList[Int]]
-
-scala.reflect.ClassTag[scalaz.IList[Int] => scalaz.IList[Int]]
-2 times = 1ms
-
-
-
-(=> Float) => Int
-
-(=> Float) => Int
-19 times = 2ms
-
-
-
-monocle.Iso[MacroOutSideMonocleSpec.this.ExampleType[Int],Option[Int]] => monocle.Iso[MacroOutSideMonocleSpec.this.ExampleType[Int],_$1]
-
-monocle.Iso[MacroOutSideMonocleSpec.this.ExampleType[Int],Option[Int]] => monocle.Iso[MacroOutSideMonocleSpec.this.ExampleType[Int],_$1]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Stream[Int] => Traversable[Int]
-
-scala.collection.immutable.Stream[Int] => Traversable[Int]
-5 times = 2ms
-
-
-
-scalaz.Equal[monocle.function.MMap[Int,String]]
-
-scalaz.Equal[monocle.function.MMap[Int,String]]
-3 times = 2ms
-
-
-
-org.scalacheck.Cogen[(String, Int)]
-
-org.scalacheck.Cogen[(String, Int)]
-1 times = 4ms
-
-
-
-org.scalacheck.Cogen[Int]
-
-org.scalacheck.Cogen[Int]
-178 times = 321ms
-
-
-
-org.scalacheck.Cogen[(String, Int)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[String]
-
-org.scalacheck.Cogen[String]
-49 times = 130ms
-
-
-
-org.scalacheck.Cogen[(String, Int)]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[Long]]
-
-org.scalacheck.Arbitrary[Option[Long]]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[Long]
-
-org.scalacheck.Arbitrary[Long]
-37 times = 140ms
-
-
-
-org.scalacheck.Arbitrary[Option[Long]]->org.scalacheck.Arbitrary[Long]
-
-
-
-
-
-scala.reflect.ClassTag[((Char, Boolean, String, Long, Float)) => (Char, Boolean, String, Long, Float)]
-
-scala.reflect.ClassTag[((Char, Boolean, String, Long, Float)) => (Char, Boolean, String, Long, Float)]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Prepend.Aux[Int :: shapeless.HNil,HListSpec.this.HTail,HListSpec.this.H]
-
-shapeless.ops.hlist.Prepend.Aux[Int :: shapeless.HNil,HListSpec.this.HTail,HListSpec.this.H]
-1 times = 10ms
-
-
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,HListSpec.this.HTail]
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,HListSpec.this.HTail]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Prepend.Aux[Int :: shapeless.HNil,HListSpec.this.HTail,HListSpec.this.H]->shapeless.ops.hlist.Prepend[shapeless.HNil,HListSpec.this.HTail]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)]
-
-org.scalacheck.Arbitrary[(String, Boolean)]
-2 times = 40ms
-
-
-
-scala.reflect.ClassTag[(String, Boolean)]
-
-scala.reflect.ClassTag[(String, Boolean)]
-2 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)]->scala.reflect.ClassTag[(String, Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Boolean)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-monocle.function.Each[(String, String),String]
-
-monocle.function.Each[(String, String),String]
-1 times = 17ms
-
-
-
-monocle.function.Each[(String, String),String]->shapeless.Generic.Aux[(String, String),SGen]
-
-
-
-
-
-monocle.function.Each[String :: String :: shapeless.HNil,String]
-
-monocle.function.Each[String :: String :: shapeless.HNil,String]
-1 times = 9ms
-
-
-
-monocle.function.Each[(String, String),String]->monocle.function.Each[String :: String :: shapeless.HNil,String]
-
-
-
-
-
-org.scalacheck.Cogen[List[Int]]
-
-org.scalacheck.Cogen[List[Int]]
-10 times = 33ms
-
-
-
-org.scalacheck.Cogen[List[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[java.net.URI => java.net.URI]
-
-org.scalacheck.Arbitrary[java.net.URI => java.net.URI]
-1 times = 3ms
-
-
-
-org.scalacheck.Cogen[java.net.URI]
-
-org.scalacheck.Cogen[java.net.URI]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[java.net.URI => java.net.URI]->org.scalacheck.Cogen[java.net.URI]
-
-
-
-
-
-org.scalacheck.Arbitrary[java.net.URI]
-
-org.scalacheck.Arbitrary[java.net.URI]
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[java.net.URI => java.net.URI]->org.scalacheck.Arbitrary[java.net.URI]
-
-
-
-
-
-scala.reflect.ClassTag[java.net.URI => java.net.URI]
-
-scala.reflect.ClassTag[java.net.URI => java.net.URI]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[java.net.URI => java.net.URI]->scala.reflect.ClassTag[java.net.URI => java.net.URI]
-
-
-
-
-
-scala.reflect.ClassTag[Long]
-
-scala.reflect.ClassTag[Long]
-37 times = 19ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Int :: shapeless.HNil,Float :: Long :: Double :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Int :: shapeless.HNil,Float :: Long :: Double :: shapeless.HNil,Out]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Char :: Boolean :: Int :: shapeless.HNil,Long :: Double :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Char :: Boolean :: Int :: shapeless.HNil,Long :: Double :: shapeless.HNil,Out]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Int :: shapeless.HNil,Float :: Long :: Double :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Float :: Char :: Boolean :: Int :: shapeless.HNil,Long :: Double :: shapeless.HNil,Out]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Double :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Double :: shapeless.HNil,Out]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Char :: Boolean :: Int :: shapeless.HNil,Long :: Double :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Double :: shapeless.HNil,Out]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, List[Int])]
-
-org.scalacheck.Arbitrary[(Boolean, List[Int])]
-1 times = 32ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, List[Int])]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-scala.reflect.ClassTag[(Boolean, List[Int])]
-
-scala.reflect.ClassTag[(Boolean, List[Int])]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, List[Int])]->scala.reflect.ClassTag[(Boolean, List[Int])]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Int]]
-
-org.scalacheck.Arbitrary[List[Int]]
-32 times = 328ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, List[Int])]->org.scalacheck.Arbitrary[List[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean]
-
-org.scalacheck.Arbitrary[Int / Boolean]
-4 times = 63ms
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-scala.reflect.ClassTag[Int \/ Boolean]
-
-scala.reflect.ClassTag[Int / Boolean]
-2 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean]->scala.reflect.ClassTag[Int \/ Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Int :: shapeless.HNil,Char :: Float :: Long :: Double :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Int :: shapeless.HNil,Char :: Float :: Long :: Double :: shapeless.HNil,Out]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Int :: shapeless.HNil,Char :: Float :: Long :: Double :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Int :: shapeless.HNil,Float :: Long :: Double :: shapeless.HNil,Out]
-
-
-
-
-
-scala.reflect.ClassTag[Double]
-
-scala.reflect.ClassTag[Double]
-13 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[List[Int] => List[Int]]
-
-org.scalacheck.Arbitrary[List[Int] => List[Int]]
-6 times = 100ms
-
-
-
-org.scalacheck.Arbitrary[List[Int] => List[Int]]->org.scalacheck.Cogen[List[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[List[Int] => List[Int]]
-
-scala.reflect.ClassTag[List[Int] => List[Int]]
-6 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[List[Int] => List[Int]]->scala.reflect.ClassTag[List[Int] => List[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Int] => List[Int]]->org.scalacheck.Arbitrary[List[Int]]
-
-
-
-
-
-org.scalacheck.Cogen[scalaz.Validation[String,Int]]
-
-org.scalacheck.Cogen[scalaz.Validation[String,Int]]
-1 times = 3ms
-
-
-
-org.scalacheck.Cogen[scalaz.Validation[String,Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[scalaz.Validation[String,Int]]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalactic.Equality[List[List[Int]]]
-
-org.scalactic.Equality[List[List[Int]]]
-3 times = 29ms
-
-
-
-scalaz.Equal[List[List[Int]]]
-
-scalaz.Equal[List[List[Int]]]
-3 times = 25ms
-
-
-
-org.scalactic.Equality[List[List[Int]]]->scalaz.Equal[List[List[Int]]]
-
-
-
-
-
-scalaz.Equal[CoproductSpec.this.IB]
-
-scalaz.Equal[CoproductSpec.this.IB]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Boolean, String \/ Int)]
-
-scala.reflect.ClassTag[(Boolean, String / Int)]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,SGen]
-1 times = 3ms
-
-
-
-shapeless.Generic.Aux[Vector[Int],L1]
-
-shapeless.Generic.Aux[Vector[Int],L1]
-1 times = 9ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[Vector[Int],Vector[Int]]->shapeless.Generic.Aux[Vector[Int],L1]
-
-
-
-
-
-Stream[Int] => Traversable[Int]
-
-Stream[Int] => Traversable[Int]
-17 times = 7ms
-
-
-
-(=> (Any, Any) => Nothing) => org.scalacheck.Prop
-
-(=> (Any, Any) => Nothing) => org.scalacheck.Prop
-1 times = 0ms
-
-
-
-monocle.function.Each[String :: shapeless.HNil,String]
-
-monocle.function.Each[String :: shapeless.HNil,String]
-1 times = 6ms
-
-
-
-monocle.function.Each[shapeless.HNil,String]
-
-monocle.function.Each[shapeless.HNil,String]
-1 times = 2ms
-
-
-
-monocle.function.Each[String :: shapeless.HNil,String]->monocle.function.Each[shapeless.HNil,String]
-
-
-
-
-
-shapeless.Generic.Aux[String :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[String :: shapeless.HNil,SGen]
-1 times = 2ms
-
-
-
-monocle.function.Each[String :: shapeless.HNil,String]->shapeless.Generic.Aux[String :: shapeless.HNil,SGen]
-
-
-
-
-
-org.scalactic.Equality[(Int, Stream[Int])]
-
-org.scalactic.Equality[(Int, Stream[Int])]
-1 times = 2ms
-
-
-
-scalaz.Equal[(Int, Stream[Int])]
-
-scalaz.Equal[(Int, Stream[Int])]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[(Int, Stream[Int])]->scalaz.Equal[(Int, Stream[Int])]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, scalaz.IList[Int])]
-
-org.scalacheck.Cogen[(Int, scalaz.IList[Int])]
-1 times = 4ms
-
-
-
-org.scalacheck.Cogen[(Int, scalaz.IList[Int])]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[scalaz.IList[Int]]
-
-org.scalacheck.Cogen[scalaz.IList[Int]]
-4 times = 6ms
-
-
-
-org.scalacheck.Cogen[(Int, scalaz.IList[Int])]->org.scalacheck.Cogen[scalaz.IList[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Float :: Long :: Double :: shapeless.HNil,Boolean :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Float :: Long :: Double :: shapeless.HNil,Boolean :: Int :: shapeless.HNil,Out]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Int :: shapeless.HNil,Out]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Float :: Long :: Double :: shapeless.HNil,Boolean :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-
-
-
-
-scalaz.Equal[scalaz.Maybe[Long]]
-
-scalaz.Equal[scalaz.Maybe[Long]]
-1 times = 2ms
-
-
-
-scalaz.Order[Long]
-
-scalaz.Order[Long]
-1 times = 0ms
-
-
-
-scalaz.Equal[scalaz.Maybe[Long]]->scalaz.Order[Long]
-
-
-
-
-
-scalaz.Equal[Long]
-
-scalaz.Equal[Long]
-25 times = 10ms
-
-
-
-scalaz.Equal[scalaz.Maybe[Long]]->scalaz.Equal[Long]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.ISet[Int]]
-
-org.scalacheck.Arbitrary[scalaz.ISet[Int]]
-2 times = 9ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.ISet[Int]]->scalaz.Order[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.ISet[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Char, scalaz.IList[Char])) => (Char, scalaz.IList[Char])]
-
-org.scalacheck.Arbitrary[((Char, scalaz.IList[Char])) => (Char, scalaz.IList[Char])]
-3 times = 80ms
-
-
-
-scala.reflect.ClassTag[((Char, scalaz.IList[Char])) => (Char, scalaz.IList[Char])]
-
-scala.reflect.ClassTag[((Char, scalaz.IList[Char])) => (Char, scalaz.IList[Char])]
-3 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[((Char, scalaz.IList[Char])) => (Char, scalaz.IList[Char])]->scala.reflect.ClassTag[((Char, scalaz.IList[Char])) => (Char, scalaz.IList[Char])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, scalaz.IList[Char])]
-
-org.scalacheck.Arbitrary[(Char, scalaz.IList[Char])]
-3 times = 43ms
-
-
-
-org.scalacheck.Arbitrary[((Char, scalaz.IList[Char])) => (Char, scalaz.IList[Char])]->org.scalacheck.Arbitrary[(Char, scalaz.IList[Char])]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, scalaz.IList[Char])]
-
-org.scalacheck.Cogen[(Char, scalaz.IList[Char])]
-3 times = 22ms
-
-
-
-org.scalacheck.Arbitrary[((Char, scalaz.IList[Char])) => (Char, scalaz.IList[Char])]->org.scalacheck.Cogen[(Char, scalaz.IList[Char])]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int \/ String]
-
-org.scalacheck.Arbitrary[Int / String]
-2 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[Int \/ String]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int \/ String]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(((Int, Char, Boolean, String, Long), Float)) => ((Int, Char, Boolean, String, Long), Float)]
-
-scala.reflect.ClassTag[(((Int, Char, Boolean, String, Long), Float)) => ((Int, Char, Boolean, String, Long), Float)]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scalaz.Tree[Int] => scalaz.Tree[Int]]
-
-scala.reflect.ClassTag[scalaz.Tree[Int] => scalaz.Tree[Int]]
-3 times = 2ms
-
-
-
-shapeless.ops.hlist.Tupler[Char :: Int :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Char :: Int :: shapeless.HNil]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[C]
-
-scala.reflect.ClassTag[C]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char] => scalaz.IList[Char]]
-
-org.scalacheck.Arbitrary[scalaz.IList[Char] => scalaz.IList[Char]]
-6 times = 72ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char] => scalaz.IList[Char]]->scala.reflect.ClassTag[scalaz.IList[Char] => scalaz.IList[Char]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char]]
-
-org.scalacheck.Arbitrary[scalaz.IList[Char]]
-18 times = 85ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char] => scalaz.IList[Char]]->org.scalacheck.Arbitrary[scalaz.IList[Char]]
-
-
-
-
-
-org.scalacheck.Cogen[scalaz.IList[Char]]
-
-org.scalacheck.Cogen[scalaz.IList[Char]]
-10 times = 25ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char] => scalaz.IList[Char]]->org.scalacheck.Cogen[scalaz.IList[Char]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Double :: shapeless.HNil,HListSpec.this.ReverseH]
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Double :: shapeless.HNil,HListSpec.this.ReverseH]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,shapeless.HNil,HListSpec.this.ReverseH]
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,shapeless.HNil,HListSpec.this.ReverseH]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Double :: shapeless.HNil,HListSpec.this.ReverseH]->shapeless.ops.hlist.Reverse.Reverse0[Double :: Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,shapeless.HNil,HListSpec.this.ReverseH]
-
-
-
-
-
-scalaz.Equal[Option[Int]]
-
-scalaz.Equal[Option[Int]]
-44 times = 92ms
-
-
-
-scalaz.Equal[Option[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Option[Int]]->scalaz.Order[Int]
-
-
-
-
-
-shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless._0]
-
-shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless._0]
-1 times = 1ms
-
-
-
-monocle.function.Snoc1[(Int, Char, Boolean, String, Long, Float),(Int, Char, Boolean, String, Long),Float]
-
-monocle.function.Snoc1[(Int, Char, Boolean, String, Long, Float),(Int, Char, Boolean, String, Long),Float]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Init.Aux[(Int, Char, Boolean, String, Long, Float),(Int, Char, Boolean, String, Long)]
-
-shapeless.ops.hlist.Init.Aux[(Int, Char, Boolean, String, Long, Float),(Int, Char, Boolean, String, Long)]
-1 times = 1ms
-
-
-
-monocle.function.Snoc1[(Int, Char, Boolean, String, Long, Float),(Int, Char, Boolean, String, Long),Float]->shapeless.ops.hlist.Init.Aux[(Int, Char, Boolean, String, Long, Float),(Int, Char, Boolean, String, Long)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, List[Int])) => (Int, List[Int])]
-
-org.scalacheck.Arbitrary[((Int, List[Int])) => (Int, List[Int])]
-2 times = 53ms
-
-
-
-scala.reflect.ClassTag[((Int, List[Int])) => (Int, List[Int])]
-
-scala.reflect.ClassTag[((Int, List[Int])) => (Int, List[Int])]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[((Int, List[Int])) => (Int, List[Int])]->scala.reflect.ClassTag[((Int, List[Int])) => (Int, List[Int])]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, List[Int])]
-
-org.scalacheck.Cogen[(Int, List[Int])]
-2 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[((Int, List[Int])) => (Int, List[Int])]->org.scalacheck.Cogen[(Int, List[Int])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, List[Int])]
-
-org.scalacheck.Arbitrary[(Int, List[Int])]
-2 times = 32ms
-
-
-
-org.scalacheck.Arbitrary[((Int, List[Int])) => (Int, List[Int])]->org.scalacheck.Arbitrary[(Int, List[Int])]
-
-
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Nullary,Unit]]
-
-org.scalactic.Equality[monocle.Iso[monocle.Nullary,Unit]]
-1 times = 18ms
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Nullary,Unit]]
-
-scalaz.Equal[monocle.Iso[monocle.Nullary,Unit]]
-1 times = 18ms
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Nullary,Unit]]->scalaz.Equal[monocle.Iso[monocle.Nullary,Unit]]
-
-
-
-
-
-String => Int
-
-String => Int
-17 times = 4ms
-
-
-
-scalaz.Equal[(Boolean, List[Int])]
-
-scalaz.Equal[(Boolean, List[Int])]
-1 times = 4ms
-
-
-
-scalaz.Equal[Boolean]
-
-scalaz.Equal[Boolean]
-99 times = 101ms
-
-
-
-scalaz.Equal[(Boolean, List[Int])]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[List[Int]]
-
-scalaz.Equal[List[Int]]
-42 times = 78ms
-
-
-
-scalaz.Equal[(Boolean, List[Int])]->scalaz.Equal[List[Int]]
-
-
-
-
-
-(=> monocle.Foo.type) => ?{def q_=: ?}
-
-(=> monocle.Foo.type) => ?{def q_=: ?}
-3 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Vector[Int])]
-
-org.scalacheck.Arbitrary[(Int, Vector[Int])]
-1 times = 11ms
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]]
-
-org.scalacheck.Arbitrary[Vector[Int]]
-17 times = 63ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Vector[Int])]->org.scalacheck.Arbitrary[Vector[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Vector[Int])]
-
-scala.reflect.ClassTag[(Int, Vector[Int])]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Vector[Int])]->scala.reflect.ClassTag[(Int, Vector[Int])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Vector[Int])]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalactic.Equality[Stream[Stream[Int]]]
-
-org.scalactic.Equality[Stream[Stream[Int]]]
-1 times = 2ms
-
-
-
-scalaz.Equal[Stream[Stream[Int]]]
-
-scalaz.Equal[Stream[Stream[Int]]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[Stream[Stream[Int]]]->scalaz.Equal[Stream[Stream[Int]]]
-
-
-
-
-
-scalaz.Choice[monocle.Fold]
-
-scalaz.Choice[monocle.Fold]
-2 times = 6ms
-
-
-
-scala.reflect.ClassTag[Double => Double]
-
-scala.reflect.ClassTag[Double => Double]
-2 times = 1ms
-
-
-
-scala.languageFeature.higherKinds
-
-scala.languageFeature.higherKinds
-23 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.ReverseH,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.ReverseH,Out0]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: shapeless.HNil,Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: shapeless.HNil,Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Out]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.ReverseH,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Double :: shapeless.HNil,Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-scalaz.Equal[monocle.refined.UpperCaseChar]
-
-scalaz.Equal[monocle.refined.UpperCaseChar]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[List[Char] => List[Char]]
-
-org.scalacheck.Arbitrary[List[Char] => List[Char]]
-1 times = 13ms
-
-
-
-scala.reflect.ClassTag[List[Char] => List[Char]]
-
-scala.reflect.ClassTag[List[Char] => List[Char]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[List[Char] => List[Char]]->scala.reflect.ClassTag[List[Char] => List[Char]]
-
-
-
-
-
-org.scalacheck.Cogen[List[Char]]
-
-org.scalacheck.Cogen[List[Char]]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[List[Char] => List[Char]]->org.scalacheck.Cogen[List[Char]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Char]]
-
-org.scalacheck.Arbitrary[List[Char]]
-4 times = 38ms
-
-
-
-org.scalacheck.Arbitrary[List[Char] => List[Char]]->org.scalacheck.Arbitrary[List[Char]]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, Vector[Int])) => (Int, Vector[Int])]
-
-org.scalacheck.Arbitrary[((Int, Vector[Int])) => (Int, Vector[Int])]
-1 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Vector[Int])) => (Int, Vector[Int])]->org.scalacheck.Arbitrary[(Int, Vector[Int])]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Vector[Int])]
-
-org.scalacheck.Cogen[(Int, Vector[Int])]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Vector[Int])) => (Int, Vector[Int])]->org.scalacheck.Cogen[(Int, Vector[Int])]
-
-
-
-
-
-scala.reflect.ClassTag[((Int, Vector[Int])) => (Int, Vector[Int])]
-
-scala.reflect.ClassTag[((Int, Vector[Int])) => (Int, Vector[Int])]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Vector[Int])) => (Int, Vector[Int])]->scala.reflect.ClassTag[((Int, Vector[Int])) => (Int, Vector[Int])]
-
-
-
-
-
-scalaz.Equal[monocle.Binary]
-
-scalaz.Equal[monocle.Binary]
-2 times = 2ms
-
-
-
-scalaz.Order[Boolean]
-
-scalaz.Order[Boolean]
-6 times = 3ms
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Binary,(String, Int)]]
-
-org.scalactic.Equality[monocle.Iso[monocle.Binary,(String, Int)]]
-1 times = 34ms
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Binary,(String, Int)]]
-
-scalaz.Equal[monocle.Iso[monocle.Binary,(String, Int)]]
-1 times = 33ms
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Binary,(String, Int)]]->scalaz.Equal[monocle.Iso[monocle.Binary,(String, Int)]]
-
-
-
-
-
-scalaz.Equal[A]
-
-scalaz.Equal[A]
-1 times = 92ms
-
-
-
-scalaz.Equal[S => Option[A]]
-
-scalaz.Equal[S => Option[A]]
-1 times = 2ms
-
-
-
-scalaz.Equal[A]->scalaz.Equal[S => Option[A]]
-
-
-
-
-
-scalaz.Equal[A1]
-
-scalaz.Equal[A1]
-1 times = 8ms
-
-
-
-scalaz.Equal[A]->scalaz.Equal[A1]
-
-
-
-
-
-scalaz.Equal[A2]
-
-scalaz.Equal[A2]
-1 times = 1ms
-
-
-
-scalaz.Equal[A]->scalaz.Equal[A2]
-
-
-
-
-
-scalaz.Equal[S => A]
-
-scalaz.Equal[S => A]
-1 times = 57ms
-
-
-
-scalaz.Equal[A]->scalaz.Equal[S => A]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, HListSpec.this.HTail)]
-
-org.scalacheck.Cogen[(Int, HListSpec.this.HTail)]
-1 times = 5ms
-
-
-
-org.scalacheck.Cogen[HListSpec.this.HTail]
-
-org.scalacheck.Cogen[HListSpec.this.HTail]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(Int, HListSpec.this.HTail)]->org.scalacheck.Cogen[HListSpec.this.HTail]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, HListSpec.this.HTail)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example]
-3 times = 14ms
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Example]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Example]
-3 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Example]
-
-
-
-
-
-org.scalacheck.Cogen[monocle.refined.UpperCaseChar]
-
-org.scalacheck.Cogen[monocle.refined.UpperCaseChar]
-1 times = 4ms
-
-
-
-org.scalacheck.Cogen[monocle.refined.UpperCaseChar]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[monocle.refined.UpperCaseChar]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,List[Int],List[Int]]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,List[Int],List[Int]]
-1 times = 0ms
-
-
-
-scalaz.Equal[(Int, Int, Int, Int)]
-
-scalaz.Equal[(Int, Int, Int, Int)]
-1 times = 2ms
-
-
-
-scalaz.Equal[(Int, Int, Int, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-shapeless.Generic.Aux[shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[shapeless.HNil,SGen]
-1 times = 1ms
-
-
-
-List[Int] \/ TraversalSpec.this.Location => ?{def shouldEqual: ?}
-
-List[Int] / TraversalSpec.this.Location => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-List[Int] \/ TraversalSpec.this.Location => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-List[Int] \/ TraversalSpec.this.Location => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-monocle.function.At[Map[K,V],K,Option[V]]
-
-monocle.function.At[Map[K,V],K,Option[V]]
-1 times = 9ms
-
-
-
-a2.type => ?{def ::: ?}
-
-a2.type => ?{def ::: ?}
-1 times = 0ms
-
-
-
-monocle.function.Cons[List[Int],Int]
-
-monocle.function.Cons[List[Int],Int]
-1 times = 0ms
-
-
-
-((Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-((Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0]
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Double]
-
-org.scalacheck.Arbitrary[Double]
-13 times = 57ms
-
-
-
-org.scalacheck.Arbitrary[Double]->scala.reflect.ClassTag[Double]
-
-
-
-
-
-a2.tail.type => ?{def :+: ?}
-
-a2.tail.type => ?{def :+: ?}
-1 times = 0ms
-
-
-
-HListSpec.this.Example => ?{def ===: ?}
-
-HListSpec.this.Example => ?{def ===: ?}
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.ExampleType[Int]]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.ExampleType[Int]]
-1 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.ExampleType[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.ExampleType[Int]]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.ExampleType[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.ExampleType[Int]]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.ExampleType[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[monocle.refined.EndsWithString[String('world')] => monocle.refined.EndsWithString[String('world')]]
-
-scala.reflect.ClassTag[monocle.refined.EndsWithString[String('world')] => monocle.refined.EndsWithString[String('world')]]
-1 times = 1ms
-
-
-
-shapeless.Generic.Aux[Stream[Int],L1]
-
-shapeless.Generic.Aux[Stream[Int],L1]
-1 times = 21ms
-
-
-
-monocle.function.Snoc[Vector[Int],Int]
-
-monocle.function.Snoc[Vector[Int],Int]
-1 times = 0ms
-
-
-
-scalaz.Category[monocle.Iso]
-
-scalaz.Category[monocle.Iso]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[monocle.refined.LowerCaseChar]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[monocle.refined.LowerCaseChar]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Stream[Int], Int)) => (Stream[Int], Int)]
-
-org.scalacheck.Arbitrary[((Stream[Int], Int)) => (Stream[Int], Int)]
-1 times = 22ms
-
-
-
-org.scalacheck.Cogen[(Stream[Int], Int)]
-
-org.scalacheck.Cogen[(Stream[Int], Int)]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[((Stream[Int], Int)) => (Stream[Int], Int)]->org.scalacheck.Cogen[(Stream[Int], Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Stream[Int], Int)]
-
-org.scalacheck.Arbitrary[(Stream[Int], Int)]
-1 times = 15ms
-
-
-
-org.scalacheck.Arbitrary[((Stream[Int], Int)) => (Stream[Int], Int)]->org.scalacheck.Arbitrary[(Stream[Int], Int)]
-
-
-
-
-
-scala.reflect.ClassTag[((Stream[Int], Int)) => (Stream[Int], Int)]
-
-scala.reflect.ClassTag[((Stream[Int], Int)) => (Stream[Int], Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Stream[Int], Int)) => (Stream[Int], Int)]->scala.reflect.ClassTag[((Stream[Int], Int)) => (Stream[Int], Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[A,B]]
-
-org.scalacheck.Arbitrary[Either[A,B]]
-1 times = 42ms
-
-
-
-org.scalacheck.Arbitrary[Either[A,B]]->org.scalacheck.Arbitrary[A]
-
-
-
-
-
-scala.reflect.ClassTag[Either[A,B]]
-
-scala.reflect.ClassTag[Either[A,B]]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Either[A,B]]->scala.reflect.ClassTag[Either[A,B]]
-
-
-
-
-
-org.scalacheck.Arbitrary[B]
-
-org.scalacheck.Arbitrary[B]
-2 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[Either[A,B]]->org.scalacheck.Arbitrary[B]
-
-
-
-
-
-org.scalacheck.util.Buildable[(A, B),Either[A,B]]
-
-org.scalacheck.util.Buildable[(A, B),Either[A,B]]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[Either[A,B]]->org.scalacheck.util.Buildable[(A, B),Either[A,B]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(A, B)]
-
-org.scalacheck.Arbitrary[(A, B)]
-1 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[Either[A,B]]->org.scalacheck.Arbitrary[(A, B)]
-
-
-
-
-
-shapeless.ops.hlist.Prepend[Boolean :: Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Prepend[Boolean :: Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]
-1 times = 20ms
-
-
-
-shapeless.ops.hlist.Prepend[Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Prepend[Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]
-3 times = 30ms
-
-
-
-shapeless.ops.hlist.Prepend[Boolean :: Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]->shapeless.ops.hlist.Prepend[Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, List[Int])]->org.scalacheck.Cogen[List[Int]]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, List[Int])]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-Option[Int] => ?{def shouldEqual: ?}
-
-Option[Int] => ?{def shouldEqual: ?}
-32 times = 92ms
-
-
-
-Option[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Cogen[Boolean \/ Int]
-
-org.scalacheck.Cogen[Boolean / Int]
-2 times = 10ms
-
-
-
-org.scalacheck.Cogen[Boolean \/ Int]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[Boolean]
-
-org.scalacheck.Cogen[Boolean]
-36 times = 72ms
-
-
-
-org.scalacheck.Cogen[Boolean \/ Int]->org.scalacheck.Cogen[Boolean]
-
-
-
-
-
-org.scalacheck.Cogen[Vector[Int]]
-
-org.scalacheck.Cogen[Vector[Int]]
-7 times = 23ms
-
-
-
-org.scalacheck.Cogen[Vector[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[HListSpec.this.H,Int,HListSpec.this.HTail]
-
-shapeless.ops.hlist.IsHCons.Aux[HListSpec.this.H,Int,HListSpec.this.HTail]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(Char, Int)]
-
-org.scalacheck.Arbitrary[(Char, Int)]
-2 times = 18ms
-
-
-
-scala.reflect.ClassTag[(Char, Int)]
-
-scala.reflect.ClassTag[(Char, Int)]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Char, Int)]->scala.reflect.ClassTag[(Char, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Int)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._0.N,Boolean]
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._0.N,Boolean]
-1 times = 3ms
-
-
-
-scala.reflect.ClassTag[K]
-
-scala.reflect.ClassTag[K]
-2 times = 4ms
-
-
-
-scalaz.Equal[ProductSpec.this.Person]
-
-scalaz.Equal[ProductSpec.this.Person]
-1 times = 0ms
-
-
-
-monocle.function.Reverse[scalaz.Tree[Int],scalaz.Tree[Int]]
-
-monocle.function.Reverse[scalaz.Tree[Int],scalaz.Tree[Int]]
-1 times = 9ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.Tree[Int],scalaz.Tree[Int]]
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.Tree[Int],scalaz.Tree[Int]]
-1 times = 5ms
-
-
-
-monocle.function.Reverse[scalaz.Tree[Int],scalaz.Tree[Int]]->shapeless.ops.tuple.Reverse.Aux[scalaz.Tree[Int],scalaz.Tree[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.Tree[Int],scalaz.Tree[Int]]
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.Tree[Int],scalaz.Tree[Int]]
-1 times = 2ms
-
-
-
-monocle.function.Reverse[scalaz.Tree[Int],scalaz.Tree[Int]]->shapeless.ops.hlist.Reverse.Aux[scalaz.Tree[Int],scalaz.Tree[Int]]
-
-
-
-
-
-monocle.function.Empty[scalaz.Maybe[Int]]
-
-monocle.function.Empty[scalaz.Maybe[Int]]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-((Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-
-((Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[scalaz.Cofree[Option,Int]]
-
-org.scalacheck.Cogen[scalaz.Cofree[Option,Int]]
-2 times = 5ms
-
-
-
-org.scalacheck.Cogen[scalaz.Cofree[Option,Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Foo]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Foo]
-1 times = 0ms
-
-
-
-monocle.function.Each[monocle.function.CList,Char]
-
-monocle.function.Each[monocle.function.CList,Char]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => String
-
-((Nothing, Nothing, Nothing, Nothing)) => String
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int] => scalaz.Tree[Int]]
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int] => scalaz.Tree[Int]]
-3 times = 27ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int] => scalaz.Tree[Int]]->scala.reflect.ClassTag[scalaz.Tree[Int] => scalaz.Tree[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int]]
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int]]
-15 times = 50ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int] => scalaz.Tree[Int]]->org.scalacheck.Arbitrary[scalaz.Tree[Int]]
-
-
-
-
-
-org.scalacheck.Cogen[scalaz.Tree[Int]]
-
-org.scalacheck.Cogen[scalaz.Tree[Int]]
-4 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int] => scalaz.Tree[Int]]->org.scalacheck.Cogen[scalaz.Tree[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Char]]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)] => ?{def shouldEqual: ?}
-
-monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.reflect.ClassTag[Vector[Int] => Vector[Int]]
-
-scala.reflect.ClassTag[Vector[Int] => Vector[Int]]
-5 times = 3ms
-
-
-
-org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)]
-
-org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)]
-2 times = 16ms
-
-
-
-org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[Long]
-
-org.scalacheck.Cogen[Long]
-18 times = 28ms
-
-
-
-org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)]->org.scalacheck.Cogen[Long]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)]->org.scalacheck.Cogen[Boolean]
-
-
-
-
-
-(=> (Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-(=> (Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Long,(Long, Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Long,(Long, Float :: Long :: Double :: shapeless.HNil)]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Long :: Double :: shapeless.HNil,shapeless._0,Long,(Long, Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Long :: Double :: shapeless.HNil,shapeless._0,Long,(Long, Long :: Double :: shapeless.HNil)]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Long,(Long, Float :: Long :: Double :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Long :: Double :: shapeless.HNil,shapeless._0,Long,(Long, Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-shapeless.Generic.Aux[scalaz.Validation[Unit,Int],SGen]
-
-shapeless.Generic.Aux[scalaz.Validation[Unit,Int],SGen]
-1 times = 12ms
-
-
-
-scalaz.Equal[(Int, IsoSpec.this.IntWrapper)]
-
-scalaz.Equal[(Int, IsoSpec.this.IntWrapper)]
-1 times = 3ms
-
-
-
-scalaz.Equal[(Int, IsoSpec.this.IntWrapper)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[IsoSpec.this.IntWrapper]
-
-scalaz.Equal[IsoSpec.this.IntWrapper]
-15 times = 25ms
-
-
-
-scalaz.Equal[(Int, IsoSpec.this.IntWrapper)]->scalaz.Equal[IsoSpec.this.IntWrapper]
-
-
-
-
-
-monocle.function.Possible[scalaz.Maybe[Int],Int]
-
-monocle.function.Possible[scalaz.Maybe[Int],Int]
-1 times = 0ms
-
-
-
-scalaz.Equal[monocle.function.CList]
-
-scalaz.Equal[monocle.function.CList]
-4 times = 2ms
-
-
-
-scala.reflect.ClassTag[(Int, scalaz.IList[Int])]
-
-scala.reflect.ClassTag[(Int, scalaz.IList[Int])]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Stream[Int]]
-
-scala.reflect.ClassTag[Stream[Int]]
-17 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String('world')] => monocle.refined.EndsWithString[String('world')]]
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String('world')] => monocle.refined.EndsWithString[String('world')]]
-1 times = 19ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String('world')] => monocle.refined.EndsWithString[String('world')]]->scala.reflect.ClassTag[monocle.refined.EndsWithString[String('world')] => monocle.refined.EndsWithString[String('world')]]
-
-
-
-
-
-org.scalacheck.Cogen[monocle.refined.EndsWithString[String('world')]]
-
-org.scalacheck.Cogen[monocle.refined.EndsWithString[String('world')]]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String('world')] => monocle.refined.EndsWithString[String('world')]]->org.scalacheck.Cogen[monocle.refined.EndsWithString[String('world')]]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String('world')]]
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String('world')]]
-2 times = 11ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String('world')] => monocle.refined.EndsWithString[String('world')]]->org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String('world')]]
-
-
-
-
-
-Option[String] => ?{def shouldEqual: ?}
-
-Option[String] => ?{def shouldEqual: ?}
-5 times = 10ms
-
-
-
-Option[String] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[String] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-monocle.function.Snoc1[monocle.function.CNel,scalaz.IList[Char],Char]
-
-monocle.function.Snoc1[monocle.function.CNel,scalaz.IList[Char],Char]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Int, (Char, Boolean, String, Long, Float))) => (Int, (Char, Boolean, String, Long, Float))]
-
-org.scalacheck.Arbitrary[((Int, (Char, Boolean, String, Long, Float))) => (Int, (Char, Boolean, String, Long, Float))]
-1 times = 48ms
-
-
-
-scala.reflect.ClassTag[((Int, (Char, Boolean, String, Long, Float))) => (Int, (Char, Boolean, String, Long, Float))]
-
-scala.reflect.ClassTag[((Int, (Char, Boolean, String, Long, Float))) => (Int, (Char, Boolean, String, Long, Float))]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Int, (Char, Boolean, String, Long, Float))) => (Int, (Char, Boolean, String, Long, Float))]->scala.reflect.ClassTag[((Int, (Char, Boolean, String, Long, Float))) => (Int, (Char, Boolean, String, Long, Float))]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, (Char, Boolean, String, Long, Float))]
-
-org.scalacheck.Cogen[(Int, (Char, Boolean, String, Long, Float))]
-1 times = 14ms
-
-
-
-org.scalacheck.Arbitrary[((Int, (Char, Boolean, String, Long, Float))) => (Int, (Char, Boolean, String, Long, Float))]->org.scalacheck.Cogen[(Int, (Char, Boolean, String, Long, Float))]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, (Char, Boolean, String, Long, Float))]
-
-org.scalacheck.Arbitrary[(Int, (Char, Boolean, String, Long, Float))]
-1 times = 29ms
-
-
-
-org.scalacheck.Arbitrary[((Int, (Char, Boolean, String, Long, Float))) => (Int, (Char, Boolean, String, Long, Float))]->org.scalacheck.Arbitrary[(Int, (Char, Boolean, String, Long, Float))]
-
-
-
-
-
-scalaz.Equal[(Int, GetterSpec.this.Bar)]
-
-scalaz.Equal[(Int, GetterSpec.this.Bar)]
-1 times = 19ms
-
-
-
-scalaz.Equal[(Int, GetterSpec.this.Bar)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[GetterSpec.this.Bar]
-
-scalaz.Equal[GetterSpec.this.Bar]
-1 times = 13ms
-
-
-
-scalaz.Equal[(Int, GetterSpec.this.Bar)]->scalaz.Equal[GetterSpec.this.Bar]
-
-
-
-
-
-org.scalacheck.Cogen[(Stream[Int], Int)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[Stream[Int]]
-
-org.scalacheck.Cogen[Stream[Int]]
-7 times = 11ms
-
-
-
-org.scalacheck.Cogen[(Stream[Int], Int)]->org.scalacheck.Cogen[Stream[Int]]
-
-
-
-
-
-monocle.function.At[Map[Int,String],Int,Option[String]]
-
-monocle.function.At[Map[Int,String],Int,Option[String]]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-org.scalactic.Equality[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-1 times = 1ms
-
-
-
-scalaz.Equal[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-scalaz.Equal[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]->scalaz.Equal[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-
-
-
-
-scalaz.Equal[(Char, Int)]
-
-scalaz.Equal[(Char, Int)]
-1 times = 1ms
-
-
-
-scalaz.Equal[(Char, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Char]
-
-scalaz.Equal[Char]
-60 times = 26ms
-
-
-
-scalaz.Equal[(Char, Int)]->scalaz.Equal[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int]]
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int]]
-9 times = 41ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalactic.Equality[Option[List[Unit]]]
-
-org.scalactic.Equality[Option[List[Unit]]]
-2 times = 14ms
-
-
-
-scalaz.Equal[Option[List[Unit]]]
-
-scalaz.Equal[Option[List[Unit]]]
-2 times = 12ms
-
-
-
-org.scalactic.Equality[Option[List[Unit]]]->scalaz.Equal[Option[List[Unit]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Foo]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Foo]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Foo]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Foo]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Map[Int,String]]
-
-org.scalacheck.Arbitrary[Map[Int,String]]
-5 times = 45ms
-
-
-
-org.scalacheck.Arbitrary[Map[Int,String]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[Int,String]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[BigDecimal]
-
-scala.reflect.ClassTag[BigDecimal]
-2 times = 1ms
-
-
-
-scalaz.Equal[Int ==>> Char]
-
-scalaz.Equal[Int ==>> Char]
-1 times = 3ms
-
-
-
-scalaz.Equal[Int ==>> Char]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Order[Char]
-
-scalaz.Order[Char]
-9 times = 1ms
-
-
-
-scalaz.Equal[Int ==>> Char]->scalaz.Order[Char]
-
-
-
-
-
-scalaz.Equal[Int ==>> Char]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Equal[Int ==>> Char]->scalaz.Order[Int]
-
-
-
-
-
-(=> monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]) => monocle.Iso[monocle.Quintary,_$1]
-
-(=> monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]) => monocle.Iso[monocle.Quintary,_$1]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper \/ Boolean]
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper / Boolean]
-1 times = 23ms
-
-
-
-scala.reflect.ClassTag[IsoSpec.this.IntWrapper \/ Boolean]
-
-scala.reflect.ClassTag[IsoSpec.this.IntWrapper / Boolean]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper \/ Boolean]->scala.reflect.ClassTag[IsoSpec.this.IntWrapper \/ Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper \/ Boolean]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper]
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper]
-11 times = 102ms
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper \/ Boolean]->org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper]
-
-
-
-
-
-org.scalatest.enablers.CheckerAsserting[org.scalatest.Assertion]
-
-org.scalatest.enablers.CheckerAsserting[org.scalatest.Assertion]
-3 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Int \&/ String]
-
-org.scalacheck.Arbitrary[Int &/ String]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[Int \&/ String]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int \&/ String]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Cogen[Stream[scalaz.Tree[Int]]]
-
-org.scalacheck.Cogen[Stream[scalaz.Tree[Int]]]
-1 times = 2ms
-
-
-
-org.scalacheck.Cogen[Stream[scalaz.Tree[Int]]]->org.scalacheck.Cogen[scalaz.Tree[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int]]
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int]]
-2 times = 30ms
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]]
-
-org.scalacheck.Arbitrary[Stream[Int]]
-17 times = 151ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int]]->org.scalacheck.Arbitrary[Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Compose[monocle.Traversal]
-
-scalaz.Compose[monocle.Traversal]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList => monocle.function.CList]
-
-org.scalacheck.Arbitrary[monocle.function.CList => monocle.function.CList]
-2 times = 23ms
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList => monocle.function.CList]->org.scalacheck.Arbitrary[monocle.function.CList]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList => monocle.function.CList]->org.scalacheck.Cogen[monocle.function.CList]
-
-
-
-
-
-scala.reflect.ClassTag[monocle.function.CList => monocle.function.CList]
-
-scala.reflect.ClassTag[monocle.function.CList => monocle.function.CList]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList => monocle.function.CList]->scala.reflect.ClassTag[monocle.function.CList => monocle.function.CList]
-
-
-
-
-
-scalaz.Equal[(Int, Stream[Int])]->scalaz.Equal[Stream[Int]]
-
-
-
-
-
-scalaz.Equal[(Int, Stream[Int])]->scalaz.Equal[Int]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),SGen]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),SGen]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.Prepend[Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Prepend[Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]
-3 times = 22ms
-
-
-
-shapeless.ops.hlist.Prepend[Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]->shapeless.ops.hlist.Prepend[Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]
-
-
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.EmptyCase]
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.EmptyCase]
-2 times = 1ms
-
-
-
-Option[Long] => ?{def shouldEqual: ?}
-
-Option[Long] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-Option[Long] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[Long] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(A, B),Either[A,B]]
-
-scala.collection.generic.CanBuildFrom[F,(A, B),Either[A,B]]
-1 times = 0ms
-
-
-
-scalaz.Equal[Option[(Char, Boolean, String, Int, Double)]]
-
-scalaz.Equal[Option[(Char, Boolean, String, Int, Double)]]
-1 times = 8ms
-
-
-
-scalaz.Equal[(Char, Boolean, String, Int, Double)]
-
-scalaz.Equal[(Char, Boolean, String, Int, Double)]
-2 times = 13ms
-
-
-
-scalaz.Equal[Option[(Char, Boolean, String, Int, Double)]]->scalaz.Equal[(Char, Boolean, String, Int, Double)]
-
-
-
-
-
-shapeless.Generic.Aux[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,SGen]
-1 times = 1ms
-
-
-
-scalaz.Equal[monocle.Arities => Option[Unit]]
-
-scalaz.Equal[monocle.Arities => Option[Unit]]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[monocle.Arities]
-
-org.scalacheck.Arbitrary[monocle.Arities]
-4 times = 2ms
-
-
-
-scalaz.Equal[monocle.Arities => Option[Unit]]->org.scalacheck.Arbitrary[monocle.Arities]
-
-
-
-
-
-scalaz.Equal[Option[Unit]]
-
-scalaz.Equal[Option[Unit]]
-2 times = 4ms
-
-
-
-scalaz.Equal[monocle.Arities => Option[Unit]]->scalaz.Equal[Option[Unit]]
-
-
-
-
-
-shapeless.Generic.Aux[Int :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[Int :: shapeless.HNil,SGen]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.IList[Char],scalaz.IList[Char]]
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.IList[Char],scalaz.IList[Char]]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.IList[Char],scalaz.IList[Char]]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.IList[Char],scalaz.IList[Char]]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.IList[Char],scalaz.IList[Char]]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.IList[Char],scalaz.IList[Char]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Stream[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Stream[Int]]
-1 times = 0ms
-
-
-
-scalaz.Order[Stream[Int]]
-
-scalaz.Order[Stream[Int]]
-1 times = 0ms
-
-
-
-scalaz.Equal[(Long, String)]
-
-scalaz.Equal[(Long, String)]
-1 times = 2ms
-
-
-
-scalaz.Equal[(Long, String)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Long, String)]->scalaz.Equal[Long]
-
-
-
-
-
-List[Char] => Traversable[Char]
-
-List[Char] => Traversable[Char]
-4 times = 1ms
-
-
-
-(K, V) <:< (T, U)
-
-(K, V) <:< (T, U)
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-scalaz.Id.Id[IsoSpec.this.IntWrapper] => ?{def shouldEqual: ?}
-
-scalaz.Id.Id[IsoSpec.this.IntWrapper] => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-scalaz.Id.Id[IsoSpec.this.IntWrapper] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Id.Id[IsoSpec.this.IntWrapper] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Arrow[monocle.Getter]
-
-scalaz.Arrow[monocle.Getter]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[IsoSpec.this.IntWrapper]
-
-org.scalactic.Equality[IsoSpec.this.IntWrapper]
-3 times = 5ms
-
-
-
-org.scalactic.Equality[IsoSpec.this.IntWrapper]->scalaz.Equal[IsoSpec.this.IntWrapper]
-
-
-
-
-
-(=> monocle.Iso[monocle.Binary,(String, Int)]) => monocle.Iso[monocle.Binary,_$1]
-
-(=> monocle.Iso[monocle.Binary,(String, Int)]) => monocle.Iso[monocle.Binary,_$1]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[monocle.function.Raw]
-
-org.scalacheck.Arbitrary[monocle.function.Raw]
-6 times = 29ms
-
-
-
-scala.reflect.ClassTag[monocle.function.Raw]
-
-scala.reflect.ClassTag[monocle.function.Raw]
-6 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[monocle.function.Raw]->scala.reflect.ClassTag[monocle.function.Raw]
-
-
-
-
-
-scalaz.Equal[(Int, String)]
-
-scalaz.Equal[(Int, String)]
-4 times = 10ms
-
-
-
-scalaz.Equal[(Int, String)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Int, String)]->scalaz.Equal[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(List[Int], Int)]
-
-org.scalacheck.Arbitrary[(List[Int], Int)]
-1 times = 15ms
-
-
-
-scala.reflect.ClassTag[(List[Int], Int)]
-
-scala.reflect.ClassTag[(List[Int], Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(List[Int], Int)]->scala.reflect.ClassTag[(List[Int], Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(List[Int], Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(List[Int], Int)]->org.scalacheck.Arbitrary[List[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Init[Long :: Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Init[Long :: Double :: shapeless.HNil]
-3 times = 11ms
-
-
-
-shapeless.ops.hlist.Init[Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Init[Double :: shapeless.HNil]
-3 times = 7ms
-
-
-
-shapeless.ops.hlist.Init[Long :: Double :: shapeless.HNil]->shapeless.ops.hlist.Init[Double :: shapeless.HNil]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(K, V),List[(K, V)]]
-
-scala.collection.generic.CanBuildFrom[F,(K, V),List[(K, V)]]
-1 times = 5ms
-
-
-
-shapeless.Witness.Aux[Int(63)]
-
-shapeless.Witness.Aux[Int(63)]
-1 times = 2ms
-
-
-
-monocle.function.FilterIndex[List[A],Int,A]
-
-monocle.function.FilterIndex[List[A],Int,A]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._4.N,Float]
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._4.N,Float]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]
-5 times = 54ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]->scala.collection.immutable.Stream[Int] => Traversable[Int]
-
-
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Stream[Int]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Stream[Int]]
-5 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]->scala.reflect.ClassTag[scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]]
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]]
-10 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]->org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.collection.immutable.Stream[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(K, V)]
-
-scala.reflect.ClassTag[(K, V)]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Double :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Double :: Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-(Char, Boolean, String, Int, Double) <~< (Char, Boolean, String, Int, Double)
-
-(Char, Boolean, String, Int, Double) <~< (Char, Boolean, String, Int, Double)
-2 times = 2ms
-
-
-
-scalaz.Equal[monocle.refined.StartsWithString[String('hello')]]
-
-scalaz.Equal[monocle.refined.StartsWithString[String('hello')]]
-1 times = 0ms
-
-
-
-((Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-((Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-monocle.function.Cons1[(Int, Char, Boolean, String, Long, Float),Int,(Char, Boolean, String, Long, Float)]
-
-monocle.function.Cons1[(Int, Char, Boolean, String, Long, Float),Int,(Char, Boolean, String, Long, Float)]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[(Int, Char, Boolean, String, Long, Float),Int,(Char, Boolean, String, Long, Float)]
-
-shapeless.ops.hlist.IsHCons.Aux[(Int, Char, Boolean, String, Long, Float),Int,(Char, Boolean, String, Long, Float)]
-1 times = 1ms
-
-
-
-monocle.function.Cons1[(Int, Char, Boolean, String, Long, Float),Int,(Char, Boolean, String, Long, Float)]->shapeless.ops.hlist.IsHCons.Aux[(Int, Char, Boolean, String, Long, Float),Int,(Char, Boolean, String, Long, Float)]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(31)]]
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(31)]]
-1 times = 18ms
-
-
-
-shapeless.Witness.Aux[Int(0)]
-
-shapeless.Witness.Aux[Int(0)]
-4 times = 11ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(31)]]->shapeless.Witness.Aux[Int(0)]
-
-
-
-
-
-org.scalacheck.Gen.Choose[Int]
-
-org.scalacheck.Gen.Choose[Int]
-4 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(31)]]->org.scalacheck.Gen.Choose[Int]
-
-
-
-
-
-Numeric[Int]
-
-Numeric[Int]
-4 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(31)]]->Numeric[Int]
-
-
-
-
-
-shapeless.Witness.Aux[Int(31)]
-
-shapeless.Witness.Aux[Int(31)]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(31)]]->shapeless.Witness.Aux[Int(31)]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(31)]]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-scalaz.Functor[F$macro$107]
-
-scalaz.Functor[F$macro$107]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Char,(Char, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Char,(Char, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Char,(Char, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0,Char,(Char, Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-Option[Nothing] => ?{def shouldEqual: ?}
-
-Option[Nothing] => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-Option[Nothing] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[Nothing] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Equal[List[TraversalSpec.this.Location]]
-
-scalaz.Equal[List[TraversalSpec.this.Location]]
-1 times = 4ms
-
-
-
-scalaz.Order[TraversalSpec.this.Location]
-
-scalaz.Order[TraversalSpec.this.Location]
-2 times = 0ms
-
-
-
-scalaz.Equal[List[TraversalSpec.this.Location]]->scalaz.Order[TraversalSpec.this.Location]
-
-
-
-
-
-scalaz.Equal[TraversalSpec.this.Location]
-
-scalaz.Equal[TraversalSpec.this.Location]
-5 times = 2ms
-
-
-
-scalaz.Equal[List[TraversalSpec.this.Location]]->scalaz.Equal[TraversalSpec.this.Location]
-
-
-
-
-
-((Nothing, Nothing, Nothing)) => String
-
-((Nothing, Nothing, Nothing)) => String
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.EmptyCase]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.EmptyCase]
-2 times = 8ms
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.EmptyCase]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.EmptyCase]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.EmptyCase]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.EmptyCase]
-
-
-
-
-
-shapeless.Generic.Aux[(Int,),L1]
-
-shapeless.Generic.Aux[(Int,),L1]
-1 times = 5ms
-
-
-
-monocle.function.Each[scalaz.Validation[Unit,Int],Int]
-
-monocle.function.Each[scalaz.Validation[Unit,Int],Int]
-1 times = 13ms
-
-
-
-monocle.function.Each[scalaz.Validation[Unit,Int],Int]->shapeless.Generic.Aux[scalaz.Validation[Unit,Int],SGen]
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]] => Option[scalaz.Cofree[Option,Int]]]
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]] => Option[scalaz.Cofree[Option,Int]]]
-1 times = 14ms
-
-
-
-scala.reflect.ClassTag[Option[scalaz.Cofree[Option,Int]] => Option[scalaz.Cofree[Option,Int]]]
-
-scala.reflect.ClassTag[Option[scalaz.Cofree[Option,Int]] => Option[scalaz.Cofree[Option,Int]]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]] => Option[scalaz.Cofree[Option,Int]]]->scala.reflect.ClassTag[Option[scalaz.Cofree[Option,Int]] => Option[scalaz.Cofree[Option,Int]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]]]
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]]]
-3 times = 14ms
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]] => Option[scalaz.Cofree[Option,Int]]]->org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]]]
-
-
-
-
-
-org.scalacheck.Cogen[Option[scalaz.Cofree[Option,Int]]]
-
-org.scalacheck.Cogen[Option[scalaz.Cofree[Option,Int]]]
-2 times = 9ms
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]] => Option[scalaz.Cofree[Option,Int]]]->org.scalacheck.Cogen[Option[scalaz.Cofree[Option,Int]]]
-
-
-
-
-
-List[Int] => ?{def shouldEqual: ?}
-
-List[Int] => ?{def shouldEqual: ?}
-12 times = 44ms
-
-
-
-List[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-List[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[((String, Int)) => (String, Int)]
-
-org.scalacheck.Arbitrary[((String, Int)) => (String, Int)]
-1 times = 18ms
-
-
-
-org.scalacheck.Arbitrary[((String, Int)) => (String, Int)]->org.scalacheck.Cogen[(String, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Int)]
-
-org.scalacheck.Arbitrary[(String, Int)]
-2 times = 17ms
-
-
-
-org.scalacheck.Arbitrary[((String, Int)) => (String, Int)]->org.scalacheck.Arbitrary[(String, Int)]
-
-
-
-
-
-scala.reflect.ClassTag[((String, Int)) => (String, Int)]
-
-scala.reflect.ClassTag[((String, Int)) => (String, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((String, Int)) => (String, Int)]->scala.reflect.ClassTag[((String, Int)) => (String, Int)]
-
-
-
-
-
-monocle.function.Empty[monocle.function.CList]
-
-monocle.function.Empty[monocle.function.CList]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.HNil,HListSpec.this.H]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.HNil,HListSpec.this.H]
-1 times = 0ms
-
-
-
-scalaz.Equal[scalaz.Validation[Unit,Int]]
-
-scalaz.Equal[scalaz.Validation[Unit,Int]]
-2 times = 5ms
-
-
-
-scalaz.Equal[scalaz.Validation[Unit,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Unit]
-
-scalaz.Equal[Unit]
-28 times = 24ms
-
-
-
-scalaz.Equal[scalaz.Validation[Unit,Int]]->scalaz.Equal[Unit]
-
-
-
-
-
-scalaz.Order[Unit]
-
-scalaz.Order[Unit]
-8 times = 1ms
-
-
-
-scalaz.Equal[scalaz.Validation[Unit,Int]]->scalaz.Order[Unit]
-
-
-
-
-
-scala.reflect.ClassTag[monocle.refined.StartsWithString[String('hello')] => monocle.refined.StartsWithString[String('hello')]]
-
-scala.reflect.ClassTag[monocle.refined.StartsWithString[String('hello')] => monocle.refined.StartsWithString[String('hello')]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Seq[?T]
-
-((Nothing, Nothing, Nothing)) => Seq[?T]
-1 times = 46ms
-
-
-
-scala.reflect.ClassTag[((monocle.function.CList, Char)) => (monocle.function.CList, Char)]
-
-scala.reflect.ClassTag[((monocle.function.CList, Char)) => (monocle.function.CList, Char)]
-1 times = 1ms
-
-
-
-((Any, Any, Any, Any) => Nothing) => ((?A1, ?A2) => ?P)
-
-((Any, Any, Any, Any) => Nothing) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-((Any, Any, Any, Any) => Nothing) => (?A1 => ?P)
-
-((Any, Any, Any, Any) => Nothing) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-Boolean => org.scalacheck.Prop
-
-Boolean => org.scalacheck.Prop
-7 times = 9ms
-
-
-
-scalaz.Category[monocle.Optional]
-
-scalaz.Category[monocle.Optional]
-2 times = 0ms
-
-
-
-org.scalacheck.Cogen[(scalaz.IList[Char], Char)]
-
-org.scalacheck.Cogen[(scalaz.IList[Char], Char)]
-1 times = 7ms
-
-
-
-org.scalacheck.Cogen[(scalaz.IList[Char], Char)]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[(scalaz.IList[Char], Char)]->org.scalacheck.Cogen[scalaz.IList[Char]]
-
-
-
-
-
-monocle.function.At[Int ==>> String,Int,Option[String]]
-
-monocle.function.At[Int ==>> String,Int,Option[String]]
-1 times = 0ms
-
-
-
-monocle.function.At[Int ==>> String,Int,Option[String]]->scalaz.Order[Int]
-
-
-
-
-
-monocle.function.Field5[(Int, Char, Boolean, String, Long, Float),Long]
-
-monocle.function.Field5[(Int, Char, Boolean, String, Long, Float),Long]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._4.N,Long]
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._4.N,Long]
-1 times = 0ms
-
-
-
-monocle.function.Field5[(Int, Char, Boolean, String, Long, Float),Long]->shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._4.N,Long]
-
-
-
-
-
-scala.reflect.ClassTag[IsoSpec.this.AnObject.type]
-
-scala.reflect.ClassTag[IsoSpec.this.AnObject.type]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[((Int, Char, Boolean, String, Long), Float)]
-
-scala.reflect.ClassTag[((Int, Char, Boolean, String, Long), Float)]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[scalaz.OneAnd[Stream,Int]]
-
-org.scalacheck.Cogen[scalaz.OneAnd[Stream,Int]]
-1 times = 5ms
-
-
-
-org.scalacheck.Cogen[scalaz.OneAnd[Stream,Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[scalaz.OneAnd[Stream,Int]]->org.scalacheck.Cogen[Stream[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Double :: shapeless.HNil,Float :: Char :: Boolean :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Double :: shapeless.HNil,Float :: Char :: Boolean :: Int :: shapeless.HNil,Out]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Long :: Double :: shapeless.HNil,Char :: Boolean :: Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Long :: Double :: shapeless.HNil,Char :: Boolean :: Int :: shapeless.HNil,Out]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Double :: shapeless.HNil,Float :: Char :: Boolean :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Float :: Long :: Double :: shapeless.HNil,Char :: Boolean :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(15)]]
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(15)]]
-1 times = 19ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(15)]]->shapeless.Witness.Aux[Int(0)]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(15)]]->org.scalacheck.Gen.Choose[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(15)]]->Numeric[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(15)]]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-shapeless.Witness.Aux[Int(15)]
-
-shapeless.Witness.Aux[Int(15)]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(15)]]->shapeless.Witness.Aux[Int(15)]
-
-
-
-
-
-org.scalactic.Equality[List[Int] \/ TraversalSpec.this.Location]
-
-org.scalactic.Equality[List[Int] / TraversalSpec.this.Location]
-1 times = 7ms
-
-
-
-scalaz.Equal[List[Int] \/ TraversalSpec.this.Location]
-
-scalaz.Equal[List[Int] / TraversalSpec.this.Location]
-1 times = 6ms
-
-
-
-org.scalactic.Equality[List[Int] \/ TraversalSpec.this.Location]->scalaz.Equal[List[Int] \/ TraversalSpec.this.Location]
-
-
-
-
-
-org.scalacheck.Cogen[(A, Option[scalaz.Cofree[Option,A]])]
-
-org.scalacheck.Cogen[(A, Option[scalaz.Cofree[Option,A]])]
-2 times = 17ms
-
-
-
-org.scalacheck.Cogen[(A, Option[scalaz.Cofree[Option,A]])]->org.scalacheck.Cogen[Option[scalaz.Cofree[Option,A]]]
-
-
-
-
-
-org.scalacheck.Cogen[A]
-
-org.scalacheck.Cogen[A]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(A, Option[scalaz.Cofree[Option,A]])]->org.scalacheck.Cogen[A]
-
-
-
-
-
-scala.reflect.ClassTag[((Char, monocle.function.CList)) => (Char, monocle.function.CList)]
-
-scala.reflect.ClassTag[((Char, monocle.function.CList)) => (Char, monocle.function.CList)]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[K]
-
-org.scalacheck.Arbitrary[K]
-1 times = 30ms
-
-
-
-org.scalacheck.Arbitrary[K]->scala.reflect.ClassTag[K]
-
-
-
-
-
-scalaz.Functor[F$macro$14]
-
-scalaz.Functor[F$macro$14]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(Int, Stream[Int])]
-
-org.scalacheck.Cogen[(Int, Stream[Int])]
-1 times = 4ms
-
-
-
-org.scalacheck.Cogen[(Int, Stream[Int])]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Stream[Int])]->org.scalacheck.Cogen[Stream[Int]]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._2.N,Int]
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._2.N,Int]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1 => MacroOutSideMonocleSpec.this.Bar1]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1 => MacroOutSideMonocleSpec.this.Bar1]
-1 times = 8ms
-
-
-
-org.scalacheck.Cogen[MacroOutSideMonocleSpec.this.Bar1]
-
-org.scalacheck.Cogen[MacroOutSideMonocleSpec.this.Bar1]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1 => MacroOutSideMonocleSpec.this.Bar1]->org.scalacheck.Cogen[MacroOutSideMonocleSpec.this.Bar1]
-
-
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Bar1 => MacroOutSideMonocleSpec.this.Bar1]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Bar1 => MacroOutSideMonocleSpec.this.Bar1]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1 => MacroOutSideMonocleSpec.this.Bar1]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Bar1 => MacroOutSideMonocleSpec.this.Bar1]
-
-
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1]
-3 times = 14ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1 => MacroOutSideMonocleSpec.this.Bar1]->org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1]
-
-
-
-
-
-org.scalacheck.Cogen[Byte]
-
-org.scalacheck.Cogen[Byte]
-4 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar2]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar2]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Bar2]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Bar2]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar2]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Bar2]
-
-
-
-
-
-org.scalactic.Equality[monocle.Arities]
-
-org.scalactic.Equality[monocle.Arities]
-4 times = 4ms
-
-
-
-org.scalactic.Equality[monocle.Arities]->scalaz.Equal[monocle.Arities]
-
-
-
-
-
-scala.reflect.ClassTag[String]
-
-scala.reflect.ClassTag[String]
-153 times = 138ms
-
-
-
-monocle.function.FilterIndex[Vector[Int],Int,Int]
-
-monocle.function.FilterIndex[Vector[Int],Int,Int]
-1 times = 0ms
-
-
-
-monocle.function.Cons1[HListSpec.this.H,Int,HListSpec.this.HTail]
-
-monocle.function.Cons1[HListSpec.this.H,Int,HListSpec.this.HTail]
-1 times = 14ms
-
-
-
-monocle.function.Cons1[HListSpec.this.H,Int,HListSpec.this.HTail]->shapeless.ops.hlist.Prepend.Aux[Int :: shapeless.HNil,HListSpec.this.HTail,HListSpec.this.H]
-
-
-
-
-
-monocle.function.Cons1[HListSpec.this.H,Int,HListSpec.this.HTail]->shapeless.ops.hlist.IsHCons.Aux[HListSpec.this.H,Int,HListSpec.this.HTail]
-
-
-
-
-
-scala.reflect.ClassTag[scalaz.Tree[A]]
-
-scala.reflect.ClassTag[scalaz.Tree[A]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[monocle.function.CNel]
-
-scala.reflect.ClassTag[monocle.function.CNel]
-2 times = 1ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Seq[?T]
-
-(=> (Nothing, Nothing, Nothing)) => Seq[?T]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,List[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,List[Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String('hello')] => monocle.refined.StartsWithString[String('hello')]]
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String('hello')] => monocle.refined.StartsWithString[String('hello')]]
-1 times = 17ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String('hello')] => monocle.refined.StartsWithString[String('hello')]]->scala.reflect.ClassTag[monocle.refined.StartsWithString[String('hello')] => monocle.refined.StartsWithString[String('hello')]]
-
-
-
-
-
-org.scalacheck.Cogen[monocle.refined.StartsWithString[String('hello')]]
-
-org.scalacheck.Cogen[monocle.refined.StartsWithString[String('hello')]]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String('hello')] => monocle.refined.StartsWithString[String('hello')]]->org.scalacheck.Cogen[monocle.refined.StartsWithString[String('hello')]]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String('hello')]]
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String('hello')]]
-2 times = 10ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String('hello')] => monocle.refined.StartsWithString[String('hello')]]->org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String('hello')]]
-
-
-
-
-
-monocle.function.Snoc[List[Int],Int]
-
-monocle.function.Snoc[List[Int],Int]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scalaz.OneAnd[List,A]]
-
-scala.reflect.ClassTag[scalaz.OneAnd[List,A]]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[(monocle.Example, Boolean)]
-
-scala.reflect.ClassTag[(monocle.Example, Boolean)]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[UnsafeSelectSpec.this.Person]
-
-org.scalacheck.Arbitrary[UnsafeSelectSpec.this.Person]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Char, String)]
-
-org.scalacheck.Arbitrary[(Char, String)]
-1 times = 7ms
-
-
-
-scala.reflect.ClassTag[(Char, String)]
-
-scala.reflect.ClassTag[(Char, String)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Char, String)]->scala.reflect.ClassTag[(Char, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, String)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, String)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-scalaz.Equal[monocle.Arities => Option[Int]]
-
-scalaz.Equal[monocle.Arities => Option[Int]]
-1 times = 3ms
-
-
-
-scalaz.Equal[monocle.Arities => Option[Int]]->scalaz.Equal[Option[Int]]
-
-
-
-
-
-scalaz.Equal[monocle.Arities => Option[Int]]->org.scalacheck.Arbitrary[monocle.Arities]
-
-
-
-
-
-shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]
-
-shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.At[Long :: Double :: shapeless.HNil,shapeless.nat._1]
-
-shapeless.ops.hlist.At[Long :: Double :: shapeless.HNil,shapeless.nat._1]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]->shapeless.ops.hlist.At[Long :: Double :: shapeless.HNil,shapeless.nat._1]
-
-
-
-
-
-Option[Unit] => ?{def shouldEqual: ?}
-
-Option[Unit] => ?{def shouldEqual: ?}
-1 times = 1ms
-
-
-
-Option[Unit] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[Unit] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-String => ?{def shouldEqual: ?}
-
-String => ?{def shouldEqual: ?}
-7 times = 40ms
-
-
-
-String => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-String => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example2]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example2]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Example2]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Example2]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example2]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Example2]
-
-
-
-
-
-scala.reflect.ClassTag[Unit]
-
-scala.reflect.ClassTag[Unit]
-32 times = 25ms
-
-
-
-(Any => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-(Any => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(Int, (Char, Boolean, String, Long, Float))]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)]
-
-org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)]
-2 times = 18ms
-
-
-
-org.scalacheck.Cogen[(Int, (Char, Boolean, String, Long, Float))]->org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)]
-
-
-
-
-
-scalaz.Split[monocle.Getter]
-
-scalaz.Split[monocle.Getter]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[Option[Int]]
-
-scala.reflect.ClassTag[Option[Int]]
-2 times = 1ms
-
-
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.Example,Int]) => monocle.Iso[MacroOutSideMonocleSpec.this.Example,_$1]
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.Example,Int]) => monocle.Iso[MacroOutSideMonocleSpec.this.Example,_$1]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[((Char, Int)) => (Char, Int)]
-
-scala.reflect.ClassTag[((Char, Int)) => (Char, Int)]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[String => String]
-
-scala.reflect.ClassTag[String => String]
-25 times = 27ms
-
-
-
-x$3.type => ?{def reverse: ?}
-
-x$3.type => ?{def reverse: ?}
-1 times = 0ms
-
-
-
-monocle.function.Plated[Stream[Int]]
-
-monocle.function.Plated[Stream[Int]]
-5 times = 2ms
-
-
-
-org.scalacheck.Cogen[Unit]
-
-org.scalacheck.Cogen[Unit]
-12 times = 27ms
-
-
-
-scalaz.Equal[(Boolean, String \/ Int)]
-
-scalaz.Equal[(Boolean, String / Int)]
-1 times = 5ms
-
-
-
-scalaz.Equal[(Boolean, String \/ Int)]->scalaz.Equal[String \/ Int]
-
-
-
-
-
-scalaz.Equal[(Boolean, String \/ Int)]->scalaz.Equal[Boolean]
-
-
-
-
-
-shapeless.ops.hlist.Init[HListSpec.this.H]
-
-shapeless.ops.hlist.Init[HListSpec.this.H]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.Init[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Init[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-3 times = 21ms
-
-
-
-shapeless.ops.hlist.Init[HListSpec.this.H]->shapeless.ops.hlist.Init[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-
-
-
-
-org.scalactic.Equality[String]
-
-org.scalactic.Equality[String]
-11 times = 27ms
-
-
-
-org.scalactic.Equality[String]->scalaz.Equal[String]
-
-
-
-
-
-monocle.function.Field2[HListSpec.this.H,Boolean]
-
-monocle.function.Field2[HListSpec.this.H,Boolean]
-1 times = 12ms
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._1.N,Boolean]
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._1.N,Boolean]
-1 times = 5ms
-
-
-
-monocle.function.Field2[HListSpec.this.H,Boolean]->shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._1.N,Boolean]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._1.N,Boolean,(Boolean, HListSpec.this.H)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._1.N,Boolean,(Boolean, HListSpec.this.H)]
-1 times = 6ms
-
-
-
-monocle.function.Field2[HListSpec.this.H,Boolean]->shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._1.N,Boolean,(Boolean, HListSpec.this.H)]
-
-
-
-
-
-scala.reflect.ClassTag[(Char, Boolean, String, Long, Float)]
-
-scala.reflect.ClassTag[(Char, Boolean, String, Long, Float)]
-3 times = 2ms
-
-
-
-scalaz.Functor[F$macro$6]
-
-scalaz.Functor[F$macro$6]
-1 times = 0ms
-
-
-
-((Any, Any, Any) => Nothing) => org.scalacheck.Prop
-
-((Any, Any, Any) => Nothing) => org.scalacheck.Prop
-2 times = 0ms
-
-
-
-org.scalacheck.Cogen[HListSpec.this.ReverseH]
-
-org.scalacheck.Cogen[HListSpec.this.ReverseH]
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$108]
-
-scalaz.Functor[F$macro$108]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Throwable => Throwable]
-
-org.scalacheck.Arbitrary[Throwable => Throwable]
-1 times = 10ms
-
-
-
-scala.reflect.ClassTag[Throwable => Throwable]
-
-scala.reflect.ClassTag[Throwable => Throwable]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Throwable => Throwable]->scala.reflect.ClassTag[Throwable => Throwable]
-
-
-
-
-
-org.scalacheck.Cogen[Throwable]
-
-org.scalacheck.Cogen[Throwable]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Throwable => Throwable]->org.scalacheck.Cogen[Throwable]
-
-
-
-
-
-org.scalacheck.Arbitrary[Throwable]
-
-org.scalacheck.Arbitrary[Throwable]
-2 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[Throwable => Throwable]->org.scalacheck.Arbitrary[Throwable]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: shapeless.HNil,Out]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Int :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Char,List[Char]]
-
-scala.collection.generic.CanBuildFrom[F,Char,List[Char]]
-1 times = 0ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.IList[Char],scalaz.IList[Char]]
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.IList[Char],scalaz.IList[Char]]
-1 times = 21ms
-
-
-
-shapeless.Generic.Aux[scalaz.IList[Char],L1]
-
-shapeless.Generic.Aux[scalaz.IList[Char],L1]
-1 times = 18ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.IList[Char],scalaz.IList[Char]]->shapeless.Generic.Aux[scalaz.IList[Char],L1]
-
-
-
-
-
-scalaz.Functor[List]
-
-scalaz.Functor[List]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Last[Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Last[Double :: shapeless.HNil]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Last[shapeless.HNil]
-
-shapeless.ops.hlist.Last[shapeless.HNil]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Last[Double :: shapeless.HNil]->shapeless.ops.hlist.Last[shapeless.HNil]
-
-
-
-
-
-org.scalactic.Equality[Option[Int]]
-
-org.scalactic.Equality[Option[Int]]
-32 times = 102ms
-
-
-
-org.scalactic.Equality[Option[Int]]->scalaz.Equal[Option[Int]]
-
-
-
-
-
-scalaz.Equal[Map[Int,Char]]
-
-scalaz.Equal[Map[Int,Char]]
-1 times = 1ms
-
-
-
-scalaz.Equal[Map[Int,Char]]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Equal[Map[Int,Char]]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Unary,Int]]
-
-scalaz.Equal[monocle.Iso[monocle.Unary,Int]]
-1 times = 20ms
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Unary,Int]]->scalaz.Equal[Int => monocle.Unary]
-
-
-
-
-
-scalaz.Equal[monocle.Unary => Int]
-
-scalaz.Equal[monocle.Unary => Int]
-1 times = 10ms
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Unary,Int]]->scalaz.Equal[monocle.Unary => Int]
-
-
-
-
-
-scala.reflect.ClassTag[(String, String)]
-
-scala.reflect.ClassTag[(String, String)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example2Type[Int]]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example2Type[Int]]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Example2Type[Int]]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Example2Type[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example2Type[Int]]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Example2Type[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Example2Type[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[Int => Boolean]
-
-scala.reflect.ClassTag[Int => Boolean]
-8 times = 7ms
-
-
-
-scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Quintary]
-
-scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Quintary]
-1 times = 39ms
-
-
-
-scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Quintary]->scalaz.Equal[monocle.Quintary]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)]
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)]
-3 times = 100ms
-
-
-
-scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Quintary]->org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)]
-
-
-
-
-
-scalaz.Equal[List[Char]]
-
-scalaz.Equal[List[Char]]
-1 times = 0ms
-
-
-
-scalaz.Equal[List[Char]]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Order[String \/ Int]
-
-scalaz.Order[String / Int]
-1 times = 1ms
-
-
-
-scalaz.Order[String \/ Int]->scalaz.Order[String]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int)]
-1 times = 0ms
-
-
-
-x$4.type => ?{def tupled: ?}
-
-x$4.type => ?{def tupled: ?}
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[HListSpec.this.H,L1]
-
-shapeless.Generic.Aux[HListSpec.this.H,L1]
-1 times = 2ms
-
-
-
-scalaz.Equal[(Boolean, monocle.Example)]
-
-scalaz.Equal[(Boolean, monocle.Example)]
-1 times = 3ms
-
-
-
-scalaz.Equal[(Boolean, monocle.Example)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[monocle.Example]
-
-scalaz.Equal[monocle.Example]
-10 times = 9ms
-
-
-
-scalaz.Equal[(Boolean, monocle.Example)]->scalaz.Equal[monocle.Example]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Char, Int),(Int, Char)]
-
-shapeless.ops.tuple.Reverse.Aux[(Char, Int),(Int, Char)]
-1 times = 13ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Char :: Int :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Char :: Int :: shapeless.HNil,L2]
-1 times = 4ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Char, Int),(Int, Char)]->shapeless.ops.hlist.Reverse.Aux[Char :: Int :: shapeless.HNil,L2]
-
-
-
-
-
-shapeless.Generic.Aux[(Char, Int),L1]
-
-shapeless.Generic.Aux[(Char, Int),L1]
-1 times = 5ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Char, Int),(Int, Char)]->shapeless.Generic.Aux[(Char, Int),L1]
-
-
-
-
-
-shapeless.ops.hlist.Tupler[Int :: Char :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Int :: Char :: shapeless.HNil]
-1 times = 1ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Char, Int),(Int, Char)]->shapeless.ops.hlist.Tupler[Int :: Char :: shapeless.HNil]
-
-
-
-
-
-org.scalacheck.Cogen[Stream[scalaz.Tree[A]]]
-
-org.scalacheck.Cogen[Stream[scalaz.Tree[A]]]
-2 times = 2ms
-
-
-
-org.scalacheck.Cogen[scalaz.Tree[A]]
-
-org.scalacheck.Cogen[scalaz.Tree[A]]
-2 times = 1ms
-
-
-
-org.scalacheck.Cogen[Stream[scalaz.Tree[A]]]->org.scalacheck.Cogen[scalaz.Tree[A]]
-
-
-
-
-
-scalaz.Equal[scalaz.Cofree[Option,A]]
-
-scalaz.Equal[scalaz.Cofree[Option,A]]
-2 times = 4ms
-
-
-
-scalaz.Equal[scalaz.Cofree[Option,A]]->scalaz.Equal[A]
-
-
-
-
-
-scalaz.Equal[Option[Nothing]]
-
-scalaz.Equal[Option[Nothing]]
-1 times = 110ms
-
-
-
-scalaz.Equal[Option[Nothing]]->scalaz.Equal[A]
-
-
-
-
-
-scala.reflect.ClassTag[Boolean]
-
-scala.reflect.ClassTag[Boolean]
-101 times = 76ms
-
-
-
-monocle.function.Each[(Int, Int, Int, Int),Int]
-
-monocle.function.Each[(Int, Int, Int, Int),Int]
-1 times = 12ms
-
-
-
-monocle.function.Each[(Int, Int, Int, Int),Int]->monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-shapeless.Generic.Aux[(Int, Int, Int, Int),SGen]
-
-shapeless.Generic.Aux[(Int, Int, Int, Int),SGen]
-1 times = 7ms
-
-
-
-monocle.function.Each[(Int, Int, Int, Int),Int]->shapeless.Generic.Aux[(Int, Int, Int, Int),SGen]
-
-
-
-
-
-scala.reflect.ClassTag[T[A]]
-
-scala.reflect.ClassTag[T[A]]
-2 times = 1ms
-
-
-
-scalaz.Equal[(String \/ Int, Boolean)]
-
-scalaz.Equal[(String / Int, Boolean)]
-1 times = 5ms
-
-
-
-scalaz.Equal[(String \/ Int, Boolean)]->scalaz.Equal[String \/ Int]
-
-
-
-
-
-scalaz.Equal[(String \/ Int, Boolean)]->scalaz.Equal[Boolean]
-
-
-
-
-
-monocle.function.At[Char,monocle.refined.ZeroTo[Int(15)],Boolean]
-
-monocle.function.At[Char,monocle.refined.ZeroTo[Int(15)],Boolean]
-1 times = 0ms
-
-
-
-None.type => org.scalacheck.Gen[Option[A]]
-
-None.type => org.scalacheck.Gen[Option[A]]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Char :: Int :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Char :: Int :: shapeless.HNil,Out0]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Char :: Int :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Char :: Int :: shapeless.HNil,Out0]
-
-
-
-
-
-List[scala.collection.immutable.Stream[Int]] => ?{def ===: ?}
-
-List[scala.collection.immutable.Stream[Int]] => ?{def ===: ?}
-1 times = 1ms
-
-
-
-(=> t.type) => ?{def #::: ?}
-
-(=> t.type) => ?{def #::: ?}
-1 times = 1ms
-
-
-
-scalaz.Equal[BigInt]
-
-scalaz.Equal[BigInt]
-5 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[Option[Int]]
-
-org.scalacheck.Arbitrary[Option[Int]]
-10 times = 42ms
-
-
-
-org.scalacheck.Arbitrary[Option[Int]]->scala.reflect.ClassTag[Option[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-java.util.UUID => org.scalacheck.Gen[java.util.UUID]
-
-java.util.UUID => org.scalacheck.Gen[java.util.UUID]
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$9]
-
-scalaz.Functor[F$macro$9]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(Int, String),monocle.function.MMap[Int,String]]
-
-org.scalacheck.util.Buildable[(Int, String),monocle.function.MMap[Int,String]]
-2 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Int, String),monocle.function.MMap[Int,String]]
-
-scala.collection.generic.CanBuildFrom[F,(Int, String),monocle.function.MMap[Int,String]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(Int, String),monocle.function.MMap[Int,String]]->scala.collection.generic.CanBuildFrom[F,(Int, String),monocle.function.MMap[Int,String]]
-
-
-
-
-
-List[(K, V)] => Traversable[(K, V)]
-
-List[(K, V)] => Traversable[(K, V)]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._3.N,String]
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._3.N,String]
-1 times = 1ms
-
-
-
-scalaz.Unzip[[β$1$]monocle.Getter[String,β$1$]]
-
-scalaz.Unzip[[β$1$]monocle.Getter[String,β$1$]]
-1 times = 1ms
-
-
-
-scalaz.Equal[List[Int] \/ List[Int]]
-
-scalaz.Equal[List[Int] / List[Int]]
-1 times = 7ms
-
-
-
-scalaz.Order[List[Int]]
-
-scalaz.Order[List[Int]]
-10 times = 16ms
-
-
-
-scalaz.Equal[List[Int] \/ List[Int]]->scalaz.Order[List[Int]]
-
-
-
-
-
-scalaz.Equal[List[Int] \/ List[Int]]->scalaz.Equal[List[Int]]
-
-
-
-
-
-org.scalacheck.Cogen[(A, Stream[scalaz.Cofree[Stream,A]])]
-
-org.scalacheck.Cogen[(A, Stream[scalaz.Cofree[Stream,A]])]
-2 times = 12ms
-
-
-
-org.scalacheck.Cogen[(A, Stream[scalaz.Cofree[Stream,A]])]->org.scalacheck.Cogen[A]
-
-
-
-
-
-org.scalacheck.Cogen[Stream[scalaz.Cofree[Stream,A]]]
-
-org.scalacheck.Cogen[Stream[scalaz.Cofree[Stream,A]]]
-2 times = 3ms
-
-
-
-org.scalacheck.Cogen[(A, Stream[scalaz.Cofree[Stream,A]])]->org.scalacheck.Cogen[Stream[scalaz.Cofree[Stream,A]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Boolean, Int)) => (Boolean, Int)]
-
-org.scalacheck.Arbitrary[((Boolean, Int)) => (Boolean, Int)]
-3 times = 101ms
-
-
-
-org.scalacheck.Cogen[(Boolean, Int)]
-
-org.scalacheck.Cogen[(Boolean, Int)]
-3 times = 27ms
-
-
-
-org.scalacheck.Arbitrary[((Boolean, Int)) => (Boolean, Int)]->org.scalacheck.Cogen[(Boolean, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, Int)]
-
-org.scalacheck.Arbitrary[(Boolean, Int)]
-6 times = 119ms
-
-
-
-org.scalacheck.Arbitrary[((Boolean, Int)) => (Boolean, Int)]->org.scalacheck.Arbitrary[(Boolean, Int)]
-
-
-
-
-
-scala.reflect.ClassTag[((Boolean, Int)) => (Boolean, Int)]
-
-scala.reflect.ClassTag[((Boolean, Int)) => (Boolean, Int)]
-3 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[((Boolean, Int)) => (Boolean, Int)]->scala.reflect.ClassTag[((Boolean, Int)) => (Boolean, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.ExampleObject.type]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.ExampleObject.type]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.ExampleObject.type]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.ExampleObject.type]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.ExampleObject.type]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.ExampleObject.type]
-
-
-
-
-
-monocle.function.Snoc[Stream[Int],Int]
-
-monocle.function.Snoc[Stream[Int],Int]
-3 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[List[Int],List[Int]]
-
-shapeless.ops.hlist.Reverse.Aux[List[Int],List[Int]]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[List[Int],List[Int]]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,List[Int],List[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[(Stream[Int], Int)]
-
-scala.reflect.ClassTag[(Stream[Int], Int)]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Int :: shapeless.HNil,Char :: Float :: Long :: Double :: shapeless.HNil,Out]
-
-
-
-
-
-org.scalacheck.Cogen[monocle.refined.EndsWithString[String('world')]]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalacheck.Cogen[monocle.refined.EndsWithString[String('world')]]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-scala.reflect.ClassTag[(Unit, Int)]
-
-scala.reflect.ClassTag[(Unit, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(String, Char)]
-
-org.scalacheck.Arbitrary[(String, Char)]
-1 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[(String, Char)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Char)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-scala.reflect.ClassTag[(String, Char)]
-
-scala.reflect.ClassTag[(String, Char)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(String, Char)]->scala.reflect.ClassTag[(String, Char)]
-
-
-
-
-
-shapeless.Generic.Aux[Int ==>> String,SGen]
-
-shapeless.Generic.Aux[Int ==>> String,SGen]
-1 times = 4ms
-
-
-
-monocle.Quintary => ?{def shouldEqual: ?}
-
-monocle.Quintary => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-monocle.Quintary => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.Quintary => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[HListSpec.this.H,HListSpec.this.ReverseH]
-
-shapeless.ops.hlist.Reverse.Aux[HListSpec.this.H,HListSpec.this.ReverseH]
-1 times = 9ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.H,HListSpec.this.ReverseH]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.H,HListSpec.this.ReverseH]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[HListSpec.this.H,HListSpec.this.ReverseH]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.H,HListSpec.this.ReverseH]
-
-
-
-
-
-scala.reflect.ClassTag[List[(K, V)]]
-
-scala.reflect.ClassTag[List[(K, V)]]
-1 times = 3ms
-
-
-
-scala.reflect.ClassTag[(scalaz.IList[Char], Char)]
-
-scala.reflect.ClassTag[(scalaz.IList[Char], Char)]
-1 times = 0ms
-
-
-
-scalaz.Equal[(String, String)]
-
-scalaz.Equal[(String, String)]
-1 times = 1ms
-
-
-
-scalaz.Equal[(String, String)]->scalaz.Equal[String]
-
-
-
-
-
-org.scalacheck.Cogen[((Int, Char, Boolean, String, Long), Float)]
-
-org.scalacheck.Cogen[((Int, Char, Boolean, String, Long), Float)]
-1 times = 12ms
-
-
-
-org.scalacheck.Cogen[((Int, Char, Boolean, String, Long), Float)]->org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)]
-
-
-
-
-
-org.scalacheck.Cogen[Float]
-
-org.scalacheck.Cogen[Float]
-11 times = 18ms
-
-
-
-org.scalacheck.Cogen[((Int, Char, Boolean, String, Long), Float)]->org.scalacheck.Cogen[Float]
-
-
-
-
-
-scala.reflect.ClassTag[monocle.Binary]
-
-scala.reflect.ClassTag[monocle.Binary]
-1 times = 1ms
-
-
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCase,Unit]) => monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCase,_$1]
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCase,Unit]) => monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCase,_$1]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(Vector[Int], Int)]
-
-org.scalacheck.Cogen[(Vector[Int], Int)]
-1 times = 7ms
-
-
-
-org.scalacheck.Cogen[(Vector[Int], Int)]->org.scalacheck.Cogen[Vector[Int]]
-
-
-
-
-
-org.scalacheck.Cogen[(Vector[Int], Int)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Unary,Int]]
-
-org.scalactic.Equality[monocle.Iso[monocle.Unary,Int]]
-1 times = 21ms
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Unary,Int]]->scalaz.Equal[monocle.Iso[monocle.Unary,Int]]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-((Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((monocle.function.CList, Char)) => (monocle.function.CList, Char)]
-
-org.scalacheck.Arbitrary[((monocle.function.CList, Char)) => (monocle.function.CList, Char)]
-1 times = 25ms
-
-
-
-org.scalacheck.Arbitrary[((monocle.function.CList, Char)) => (monocle.function.CList, Char)]->org.scalacheck.Arbitrary[(monocle.function.CList, Char)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((monocle.function.CList, Char)) => (monocle.function.CList, Char)]->scala.reflect.ClassTag[((monocle.function.CList, Char)) => (monocle.function.CList, Char)]
-
-
-
-
-
-org.scalacheck.Cogen[(monocle.function.CList, Char)]
-
-org.scalacheck.Cogen[(monocle.function.CList, Char)]
-1 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[((monocle.function.CList, Char)) => (monocle.function.CList, Char)]->org.scalacheck.Cogen[(monocle.function.CList, Char)]
-
-
-
-
-
-shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]
-
-shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.At[Long :: Double :: shapeless.HNil,shapeless._0]
-
-shapeless.ops.hlist.At[Long :: Double :: shapeless.HNil,shapeless._0]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]->shapeless.ops.hlist.At[Long :: Double :: shapeless.HNil,shapeless._0]
-
-
-
-
-
-scalaz.Functor[F$macro$19]
-
-scalaz.Functor[F$macro$19]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit]]
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit]]
-1 times = 14ms
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit]]
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit]]
-1 times = 13ms
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit]]->scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit]]
-
-
-
-
-
-monocle.Point => ?{def shouldEqual: ?}
-
-monocle.Point => ?{def shouldEqual: ?}
-2 times = 4ms
-
-
-
-monocle.Point => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.Point => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Equal[Double]
-
-scalaz.Equal[Double]
-7 times = 4ms
-
-
-
-scala.reflect.ClassTag[monocle.function.CList]
-
-scala.reflect.ClassTag[monocle.function.CList]
-8 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CList]->scala.reflect.ClassTag[monocle.function.CList]
-
-
-
-
-
-shapeless.ops.hlist.Init[Char :: Float :: Long :: Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Init[Char :: Float :: Long :: Double :: shapeless.HNil]
-3 times = 18ms
-
-
-
-shapeless.ops.hlist.Init[Float :: Long :: Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Init[Float :: Long :: Double :: shapeless.HNil]
-3 times = 14ms
-
-
-
-shapeless.ops.hlist.Init[Char :: Float :: Long :: Double :: shapeless.HNil]->shapeless.ops.hlist.Init[Float :: Long :: Double :: shapeless.HNil]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-shapeless.Generic.Aux[Int :: Int :: Int :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[Int :: Int :: Int :: shapeless.HNil,SGen]
-1 times = 1ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int]->shapeless.Generic.Aux[Int :: Int :: Int :: shapeless.HNil,SGen]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int]
-3 times = 24ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: shapeless.HNil,Int]->monocle.function.Each[Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Set[Int]]
-
-org.scalacheck.Arbitrary[Set[Int]]
-2 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[Set[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,A]]
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,A]]
-1 times = 26ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,A]]->org.scalacheck.Arbitrary[A]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,A]]->scala.reflect.ClassTag[scalaz.OneAnd[List,A]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[A]]
-
-org.scalacheck.Arbitrary[List[A]]
-1 times = 14ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,A]]->org.scalacheck.Arbitrary[List[A]]
-
-
-
-
-
-scalaz.Equal[IsoSpec.this.EmptyCaseType[Int]]
-
-scalaz.Equal[IsoSpec.this.EmptyCaseType[Int]]
-1 times = 2ms
-
-
-
-shapeless.ops.coproduct.Selector[CoproductSpec.this.IB,Boolean]
-
-shapeless.ops.coproduct.Selector[CoproductSpec.this.IB,Boolean]
-1 times = 2ms
-
-
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Boolean]
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Boolean]
-1 times = 1ms
-
-
-
-shapeless.ops.coproduct.Selector[CoproductSpec.this.IB,Boolean]->shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Boolean]
-
-
-
-
-
-Float => Int
-
-Float => Int
-19 times = 3ms
-
-
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]->shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless._0]
-
-
-
-
-
-scala.reflect.ClassTag[IsoSpec.this.EmptyCaseType[Int]]
-
-scala.reflect.ClassTag[IsoSpec.this.EmptyCaseType[Int]]
-1 times = 1ms
-
-
-
-monocle.function.Snoc1[scalaz.NonEmptyList[Char],scalaz.IList[Char],Char]
-
-monocle.function.Snoc1[scalaz.NonEmptyList[Char],scalaz.IList[Char],Char]
-1 times = 4ms
-
-
-
-monocle.function.Snoc1[scalaz.NonEmptyList[Char],scalaz.IList[Char],Char]->shapeless.ops.hlist.Init.Aux[scalaz.NonEmptyList[Char],scalaz.IList[Char]]
-
-
-
-
-
-monocle.function.Each[Stream[Int],Int]
-
-monocle.function.Each[Stream[Int],Int]
-1 times = 21ms
-
-
-
-shapeless.Generic.Aux[Stream[Int],SGen]
-
-shapeless.Generic.Aux[Stream[Int],SGen]
-1 times = 19ms
-
-
-
-monocle.function.Each[Stream[Int],Int]->shapeless.Generic.Aux[Stream[Int],SGen]
-
-
-
-
-
-scalaz.Equal[S]
-
-scalaz.Equal[S]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[scalaz.Cofree[Option,Int],SGen]
-
-shapeless.Generic.Aux[scalaz.Cofree[Option,Int],SGen]
-1 times = 18ms
-
-
-
-monocle.function.Each[Boolean :: Boolean :: Boolean :: shapeless.HNil,Boolean]
-
-monocle.function.Each[Boolean :: Boolean :: Boolean :: shapeless.HNil,Boolean]
-1 times = 6ms
-
-
-
-monocle.function.Each[Boolean :: Boolean :: shapeless.HNil,Boolean]
-
-monocle.function.Each[Boolean :: Boolean :: shapeless.HNil,Boolean]
-1 times = 5ms
-
-
-
-monocle.function.Each[Boolean :: Boolean :: Boolean :: shapeless.HNil,Boolean]->monocle.function.Each[Boolean :: Boolean :: shapeless.HNil,Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(scalaz.IList[Int], Int)]
-
-org.scalacheck.Arbitrary[(scalaz.IList[Int], Int)]
-1 times = 9ms
-
-
-
-scala.reflect.ClassTag[(scalaz.IList[Int], Int)]
-
-scala.reflect.ClassTag[(scalaz.IList[Int], Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(scalaz.IList[Int], Int)]->scala.reflect.ClassTag[(scalaz.IList[Int], Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(scalaz.IList[Int], Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int]]
-
-org.scalacheck.Arbitrary[scalaz.IList[Int]]
-6 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[(scalaz.IList[Int], Int)]->org.scalacheck.Arbitrary[scalaz.IList[Int]]
-
-
-
-
-
-monocle.function.Plated[scalaz.Tree[Int]]
-
-monocle.function.Plated[scalaz.Tree[Int]]
-1 times = 0ms
-
-
-
-List[A] => Traversable[A]
-
-List[A] => Traversable[A]
-1 times = 0ms
-
-
-
-eu.timepit.refined.api.Validate[String,eu.timepit.refined.string.EndsWith[String('world')]]
-
-eu.timepit.refined.api.Validate[String,eu.timepit.refined.string.EndsWith[String('world')]]
-1 times = 4ms
-
-
-
-shapeless.Witness.Aux[String('world')]
-
-shapeless.Witness.Aux[String('world')]
-3 times = 9ms
-
-
-
-eu.timepit.refined.api.Validate[String,eu.timepit.refined.string.EndsWith[String('world')]]->shapeless.Witness.Aux[String('world')]
-
-
-
-
-
-monocle.function.Field3[HListSpec.this.H,Char]
-
-monocle.function.Field3[HListSpec.this.H,Char]
-1 times = 15ms
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._2.N,Char]
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._2.N,Char]
-1 times = 5ms
-
-
-
-monocle.function.Field3[HListSpec.this.H,Char]->shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._2.N,Char]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._2.N,Char,(Char, HListSpec.this.H)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._2.N,Char,(Char, HListSpec.this.H)]
-1 times = 9ms
-
-
-
-monocle.function.Field3[HListSpec.this.H,Char]->shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._2.N,Char,(Char, HListSpec.this.H)]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Unit, Int),Either[Unit,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(Unit, Int),Either[Unit,Int]]
-1 times = 0ms
-
-
-
-monocle.function.Each[scalaz.Maybe[Int],Int]
-
-monocle.function.Each[scalaz.Maybe[Int],Int]
-1 times = 12ms
-
-
-
-shapeless.Generic.Aux[scalaz.Maybe[Int],SGen]
-
-shapeless.Generic.Aux[scalaz.Maybe[Int],SGen]
-1 times = 10ms
-
-
-
-monocle.function.Each[scalaz.Maybe[Int],Int]->shapeless.Generic.Aux[scalaz.Maybe[Int],SGen]
-
-
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]]]
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]]]
-2 times = 15ms
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]]]->org.scalacheck.util.Buildable[scalaz.Tree[Int],Stream[scalaz.Tree[Int]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]]]->org.scalacheck.Arbitrary[scalaz.Tree[Int]]
-
-
-
-
-
-Stream[scalaz.Tree[Int]] => Traversable[scalaz.Tree[Int]]
-
-Stream[scalaz.Tree[Int]] => Traversable[scalaz.Tree[Int]]
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]]]->Stream[scalaz.Tree[Int]] => Traversable[scalaz.Tree[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[Stream[scalaz.Tree[Int]]]
-
-scala.reflect.ClassTag[Stream[scalaz.Tree[Int]]]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]]]->scala.reflect.ClassTag[Stream[scalaz.Tree[Int]]]
-
-
-
-
-
-scalaz.Equal[Int ==>> String]
-
-scalaz.Equal[Int ==>> String]
-4 times = 14ms
-
-
-
-scalaz.Equal[Int ==>> String]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[Int ==>> String]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[Int ==>> String]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Int ==>> String]->scalaz.Order[Int]
-
-
-
-
-
-shapeless.Generic.Aux[Unit \/ Int,SGen]
-
-shapeless.Generic.Aux[Unit / Int,SGen]
-1 times = 13ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[HListSpec.this.ReverseH,HListSpec.this.H]
-
-shapeless.ops.hlist.Reverse.Aux[HListSpec.this.ReverseH,HListSpec.this.H]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.ReverseH,HListSpec.this.H]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.ReverseH,HListSpec.this.H]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[HListSpec.this.ReverseH,HListSpec.this.H]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.ReverseH,HListSpec.this.H]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._4.N,Long,(Long, HListSpec.this.H)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._4.N,Long,(Long, HListSpec.this.H)]
-1 times = 15ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3,Long,(Long, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3,Long,(Long, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-1 times = 12ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._4.N,Long,(Long, HListSpec.this.H)]->shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3,Long,(Long, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-(Long, String) =:= (Long, String)
-
-(Long, String) =:= (Long, String)
-1 times = 0ms
-
-
-
-monocle.function.Each[scalaz.Cofree[Option,Int],Int]
-
-monocle.function.Each[scalaz.Cofree[Option,Int],Int]
-1 times = 21ms
-
-
-
-monocle.function.Each[scalaz.Cofree[Option,Int],Int]->shapeless.Generic.Aux[scalaz.Cofree[Option,Int],SGen]
-
-
-
-
-
-scalaz.Traverse[Option]
-
-scalaz.Traverse[Option]
-1 times = 0ms
-
-
-
-monocle.function.Each[scalaz.Cofree[Option,Int],Int]->scalaz.Traverse[Option]
-
-
-
-
-
-scala.reflect.ClassTag[(Vector[Int], Int)]
-
-scala.reflect.ClassTag[(Vector[Int], Int)]
-1 times = 0ms
-
-
-
-monocle.function.Snoc1[HListSpec.this.H,HListSpec.this.HInit,Double]
-
-monocle.function.Snoc1[HListSpec.this.H,HListSpec.this.HInit,Double]
-1 times = 47ms
-
-
-
-shapeless.ops.hlist.Last.Aux[HListSpec.this.H,Double]
-
-shapeless.ops.hlist.Last.Aux[HListSpec.this.H,Double]
-1 times = 9ms
-
-
-
-monocle.function.Snoc1[HListSpec.this.H,HListSpec.this.HInit,Double]->shapeless.ops.hlist.Last.Aux[HListSpec.this.H,Double]
-
-
-
-
-
-shapeless.ops.hlist.Prepend.Aux[HListSpec.this.HInit,Double :: shapeless.HNil,HListSpec.this.H]
-
-shapeless.ops.hlist.Prepend.Aux[HListSpec.this.HInit,Double :: shapeless.HNil,HListSpec.this.H]
-1 times = 27ms
-
-
-
-monocle.function.Snoc1[HListSpec.this.H,HListSpec.this.HInit,Double]->shapeless.ops.hlist.Prepend.Aux[HListSpec.this.HInit,Double :: shapeless.HNil,HListSpec.this.H]
-
-
-
-
-
-shapeless.ops.hlist.Init.Aux[HListSpec.this.H,HListSpec.this.HInit]
-
-shapeless.ops.hlist.Init.Aux[HListSpec.this.H,HListSpec.this.HInit]
-1 times = 9ms
-
-
-
-monocle.function.Snoc1[HListSpec.this.H,HListSpec.this.HInit,Double]->shapeless.ops.hlist.Init.Aux[HListSpec.this.H,HListSpec.this.HInit]
-
-
-
-
-
-monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)] => monocle.Iso[monocle.Quintary,_$1]
-
-monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)] => monocle.Iso[monocle.Quintary,_$1]
-1 times = 0ms
-
-
-
-List[Int] \/ List[Int] => ?{def shouldEqual: ?}
-
-List[Int] / List[Int] => ?{def shouldEqual: ?}
-1 times = 1ms
-
-
-
-List[Int] \/ List[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-List[Int] \/ List[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.Generic.Aux[Int :: Int :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[Int :: Int :: shapeless.HNil,SGen]
-1 times = 2ms
-
-
-
-monocle.function.Empty[Int ==>> String]
-
-monocle.function.Empty[Int ==>> String]
-1 times = 0ms
-
-
-
-scalaz.Equal[Option[Long]]
-
-scalaz.Equal[Option[Long]]
-2 times = 2ms
-
-
-
-scalaz.Equal[Option[Long]]->scalaz.Equal[Long]
-
-
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Example2Type[Int]]
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Example2Type[Int]]
-1 times = 1ms
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Example2Type[Int]]->scalaz.Equal[Option[Int]]
-
-
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Example2Type[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.function.At[Byte,monocle.refined.ZeroTo[Int(7)],Boolean]
-
-monocle.function.At[Byte,monocle.refined.ZeroTo[Int(7)],Boolean]
-1 times = 0ms
-
-
-
-scalaz.Id.Id[Int] => ?{def shouldEqual: ?}
-
-scalaz.Id.Id[Int] => ?{def shouldEqual: ?}
-1 times = 4ms
-
-
-
-scalaz.Id.Id[Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scalaz.Id.Id[Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Cogen[scalaz.NonEmptyList[Int]]
-
-org.scalacheck.Cogen[scalaz.NonEmptyList[Int]]
-1 times = 2ms
-
-
-
-org.scalacheck.Cogen[scalaz.NonEmptyList[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, List[Int])]
-
-scala.reflect.ClassTag[(Int, List[Int])]
-2 times = 1ms
-
-
-
-monocle.function.Possible[Option[A],A]
-
-monocle.function.Possible[Option[A],A]
-1 times = 1ms
-
-
-
-monocle.function.Field1[(Int,),Int]
-
-monocle.function.Field1[(Int,),Int]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Int,),shapeless.nat._0.N,Int]
-
-shapeless.ops.hlist.At.Aux[(Int,),shapeless.nat._0.N,Int]
-1 times = 1ms
-
-
-
-monocle.function.Field1[(Int,),Int]->shapeless.ops.hlist.At.Aux[(Int,),shapeless.nat._0.N,Int]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-(=> (Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[List[Int],L1]
-
-shapeless.Generic.Aux[List[Int],L1]
-1 times = 63ms
-
-
-
-scalaz.Equal[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-scalaz.Equal[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-1 times = 0ms
-
-
-
-monocle.function.Each[List[Int],Int]
-
-monocle.function.Each[List[Int],Int]
-2 times = 126ms
-
-
-
-shapeless.Generic.Aux[List[Int],SGen]
-
-shapeless.Generic.Aux[List[Int],SGen]
-1 times = 70ms
-
-
-
-monocle.function.Each[List[Int],Int]->shapeless.Generic.Aux[List[Int],SGen]
-
-
-
-
-
-(=> Any => Nothing) => org.scalacheck.Prop
-
-(=> Any => Nothing) => org.scalacheck.Prop
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[scalaz.OneAnd[Stream,Int] => scalaz.OneAnd[Stream,Int]]
-
-scala.reflect.ClassTag[scalaz.OneAnd[Stream,Int] => scalaz.OneAnd[Stream,Int]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[IsoSpec.this.IntWrapper]
-
-scala.reflect.ClassTag[IsoSpec.this.IntWrapper]
-11 times = 22ms
-
-
-
-monocle.function.FilterIndex[List[Int],Int,Int]
-
-monocle.function.FilterIndex[List[Int],Int,Int]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Char, Int)) => (Char, Int)]
-
-org.scalacheck.Arbitrary[((Char, Int)) => (Char, Int)]
-1 times = 18ms
-
-
-
-org.scalacheck.Arbitrary[((Char, Int)) => (Char, Int)]->org.scalacheck.Arbitrary[(Char, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Char, Int)) => (Char, Int)]->scala.reflect.ClassTag[((Char, Int)) => (Char, Int)]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, Int)]
-
-org.scalacheck.Cogen[(Char, Int)]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[((Char, Int)) => (Char, Int)]->org.scalacheck.Cogen[(Char, Int)]
-
-
-
-
-
-monocle.function.Possible[Either[Unit,Int],Int]
-
-monocle.function.Possible[Either[Unit,Int],Int]
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Boolean, IsoSpec.this.IntWrapper)]
-
-scala.reflect.ClassTag[(Boolean, IsoSpec.this.IntWrapper)]
-1 times = 1ms
-
-
-
-monocle.function.Field6[(Int, Char, Boolean, String, Long, Float),Float]
-
-monocle.function.Field6[(Int, Char, Boolean, String, Long, Float),Float]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._5.N,Float]
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._5.N,Float]
-1 times = 0ms
-
-
-
-monocle.function.Field6[(Int, Char, Boolean, String, Long, Float),Float]->shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._5.N,Float]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Int, String),scala.collection.immutable.Map[Int,String]]
-
-org.scalacheck.util.Buildable[(Int, String),scala.collection.immutable.Map[Int,String]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(Int, String),scala.collection.immutable.Map[Int,String]]
-
-scala.collection.generic.CanBuildFrom[F,(Int, String),scala.collection.immutable.Map[Int,String]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(Int, String),scala.collection.immutable.Map[Int,String]]->scala.collection.generic.CanBuildFrom[F,(Int, String),scala.collection.immutable.Map[Int,String]]
-
-
-
-
-
-monocle.function.Each[Int :: List[Int] :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: List[Int] :: shapeless.HNil,Int]
-1 times = 11ms
-
-
-
-shapeless.Generic.Aux[Int :: List[Int] :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[Int :: List[Int] :: shapeless.HNil,SGen]
-1 times = 1ms
-
-
-
-monocle.function.Each[Int :: List[Int] :: shapeless.HNil,Int]->shapeless.Generic.Aux[Int :: List[Int] :: shapeless.HNil,SGen]
-
-
-
-
-
-monocle.function.Each[List[Int] :: shapeless.HNil,Int]
-
-monocle.function.Each[List[Int] :: shapeless.HNil,Int]
-1 times = 7ms
-
-
-
-monocle.function.Each[Int :: List[Int] :: shapeless.HNil,Int]->monocle.function.Each[List[Int] :: shapeless.HNil,Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Char, String)) => (Char, String)]
-
-org.scalacheck.Arbitrary[((Char, String)) => (Char, String)]
-1 times = 16ms
-
-
-
-org.scalacheck.Arbitrary[((Char, String)) => (Char, String)]->scala.reflect.ClassTag[((Char, String)) => (Char, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Char, String)) => (Char, String)]->org.scalacheck.Arbitrary[(Char, String)]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, String)]
-
-org.scalacheck.Cogen[(Char, String)]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[((Char, String)) => (Char, String)]->org.scalacheck.Cogen[(Char, String)]
-
-
-
-
-
-scalaz.Equal[BigDecimal]
-
-scalaz.Equal[BigDecimal]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int] => scalaz.Validation[String,Int]]
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int] => scalaz.Validation[String,Int]]
-1 times = 19ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int] => scalaz.Validation[String,Int]]->scala.reflect.ClassTag[scalaz.Validation[String,Int] => scalaz.Validation[String,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int] => scalaz.Validation[String,Int]]->org.scalacheck.Cogen[scalaz.Validation[String,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int]]
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int]]
-5 times = 47ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int] => scalaz.Validation[String,Int]]->org.scalacheck.Arbitrary[scalaz.Validation[String,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[String] => Option[String]]
-
-org.scalacheck.Arbitrary[Option[String] => Option[String]]
-3 times = 41ms
-
-
-
-org.scalacheck.Arbitrary[Option[String] => Option[String]]->org.scalacheck.Arbitrary[Option[String]]
-
-
-
-
-
-org.scalacheck.Cogen[Option[String]]
-
-org.scalacheck.Cogen[Option[String]]
-3 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[Option[String] => Option[String]]->org.scalacheck.Cogen[Option[String]]
-
-
-
-
-
-scala.reflect.ClassTag[Option[String] => Option[String]]
-
-scala.reflect.ClassTag[Option[String] => Option[String]]
-3 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[Option[String] => Option[String]]->scala.reflect.ClassTag[Option[String] => Option[String]]
-
-
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.EmptyCaseType[Int]]
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.EmptyCaseType[Int]]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[String => String]
-
-org.scalacheck.Arbitrary[String => String]
-25 times = 299ms
-
-
-
-org.scalacheck.Arbitrary[String => String]->scala.reflect.ClassTag[String => String]
-
-
-
-
-
-org.scalacheck.Arbitrary[String => String]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[String => String]->org.scalacheck.Cogen[String]
-
-
-
-
-
-shapeless.ops.coproduct.Selector[shapeless.CNil,Boolean]
-
-shapeless.ops.coproduct.Selector[shapeless.CNil,Boolean]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(Int, Char)]
-
-org.scalacheck.Cogen[(Int, Char)]
-2 times = 7ms
-
-
-
-org.scalacheck.Cogen[(Int, Char)]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Char)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalactic.Equality[PrismSpec.this.IntOrString]
-
-org.scalactic.Equality[PrismSpec.this.IntOrString]
-6 times = 13ms
-
-
-
-scalaz.Equal[PrismSpec.this.IntOrString]
-
-scalaz.Equal[PrismSpec.this.IntOrString]
-10 times = 8ms
-
-
-
-org.scalactic.Equality[PrismSpec.this.IntOrString]->scalaz.Equal[PrismSpec.this.IntOrString]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean]->scala.reflect.ClassTag[Boolean]
-
-
-
-
-
-scalaz.Show[A]
-
-scalaz.Show[A]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-org.scalactic.Equality[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]->scalaz.Equal[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-
-
-
-
-Int :: HListSpec.this.HTail => ?{def ===: ?}
-
-Int :: HListSpec.this.HTail => ?{def ===: ?}
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]]->Stream[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]]->scala.reflect.ClassTag[Stream[Int]]
-
-
-
-
-
-org.scalacheck.util.Buildable[Int,Stream[Int]]
-
-org.scalacheck.util.Buildable[Int,Stream[Int]]
-17 times = 19ms
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]]->org.scalacheck.util.Buildable[Int,Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Stream[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Equal[Set[Int]]
-
-scalaz.Equal[Set[Int]]
-2 times = 2ms
-
-
-
-scalaz.Equal[Set[Int]]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[Option[String]]
-
-scalaz.Equal[Option[String]]
-8 times = 13ms
-
-
-
-scalaz.Equal[Option[String]]->scalaz.Equal[String]
-
-
-
-
-
-org.scalacheck.Shrink[Int]
-
-org.scalacheck.Shrink[Int]
-22 times = 95ms
-
-
-
-Integral[Int]
-
-Integral[Int]
-22 times = 14ms
-
-
-
-org.scalacheck.Shrink[Int]->Integral[Int]
-
-
-
-
-
-Fractional[Int]
-
-Fractional[Int]
-22 times = 14ms
-
-
-
-org.scalacheck.Shrink[Int]->Fractional[Int]
-
-
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.NonEmptyList[Int],Int,scalaz.IList[Int]]
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.NonEmptyList[Int],Int,scalaz.IList[Int]]
-1 times = 1ms
-
-
-
-monocle.function.Field6[HListSpec.this.H,Double]
-
-monocle.function.Field6[HListSpec.this.H,Double]
-1 times = 29ms
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._5.N,Double]
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._5.N,Double]
-1 times = 9ms
-
-
-
-monocle.function.Field6[HListSpec.this.H,Double]->shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._5.N,Double]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._5.N,Double,(Double, HListSpec.this.H)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._5.N,Double,(Double, HListSpec.this.H)]
-1 times = 18ms
-
-
-
-monocle.function.Field6[HListSpec.this.H,Double]->shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._5.N,Double,(Double, HListSpec.this.H)]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._1.N,Boolean]->shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0]
-
-
-
-
-
-scala.reflect.ClassTag[String \/ Int => String \/ Int]
-
-scala.reflect.ClassTag[String / Int => String / Int]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._4.N,Long]
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._4.N,Long]
-1 times = 7ms
-
-
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3]
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._4.N,Long]->shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3]
-
-
-
-
-
-monocle.function.FilterIndex[Int ==>> Char,Int,Char]
-
-monocle.function.FilterIndex[Int ==>> Char,Int,Char]
-1 times = 0ms
-
-
-
-monocle.function.FilterIndex[Int ==>> Char,Int,Char]->scalaz.Order[Int]
-
-
-
-
-
-(=> scala.collection.immutable.Stream[Int]) => ?{def #:::: ?}
-
-(=> scala.collection.immutable.Stream[Int]) => ?{def #:::: ?}
-2 times = 1ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int,),(Int,)]
-
-shapeless.ops.tuple.Reverse.Aux[(Int,),(Int,)]
-2 times = 23ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int,),(Int,)]->shapeless.Generic.Aux[(Int,),L1]
-
-
-
-
-
-shapeless.ops.hlist.Tupler[Int :: shapeless.HNil]
-
-shapeless.ops.hlist.Tupler[Int :: shapeless.HNil]
-2 times = 1ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int,),(Int,)]->shapeless.ops.hlist.Tupler[Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Int :: shapeless.HNil,L2]
-1 times = 2ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int,),(Int,)]->shapeless.ops.hlist.Reverse.Aux[Int :: shapeless.HNil,L2]
-
-
-
-
-
-scala.reflect.ClassTag[(IsoSpec.this.IntWrapper, Boolean)]
-
-scala.reflect.ClassTag[(IsoSpec.this.IntWrapper, Boolean)]
-1 times = 1ms
-
-
-
-Unit === Unit
-
-Unit === Unit
-2 times = 3ms
-
-
-
-scalaz.Equal[Vector[Int]]
-
-scalaz.Equal[Vector[Int]]
-10 times = 11ms
-
-
-
-scalaz.Equal[Vector[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(A, B)]
-
-scala.reflect.ClassTag[(A, B)]
-1 times = 0ms
-
-
-
-List[Int] => Traversable[Int]
-
-List[Int] => Traversable[Int]
-32 times = 17ms
-
-
-
-org.scalactic.Equality[List[TraversalSpec.this.Location]]
-
-org.scalactic.Equality[List[TraversalSpec.this.Location]]
-1 times = 6ms
-
-
-
-org.scalactic.Equality[List[TraversalSpec.this.Location]]->scalaz.Equal[List[TraversalSpec.this.Location]]
-
-
-
-
-
-scalaz.Equal[A1]->scalaz.Equal[A]
-
-
-
-
-
-org.scalacheck.Cogen[List[A]]
-
-org.scalacheck.Cogen[List[A]]
-2 times = 6ms
-
-
-
-org.scalacheck.Cogen[List[A]]->org.scalacheck.Cogen[A]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Double :: shapeless.HNil,shapeless._0,Double,(Double, Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Double :: shapeless.HNil,shapeless._0,Double,(Double, Double :: shapeless.HNil)]
-1 times = 2ms
-
-
-
-Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil => ?{def ===: ?}
-
-Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil => ?{def ===: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Int, Boolean)]
-
-scala.reflect.ClassTag[(Int, Boolean)]
-6 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int] => Either[String,Int]]
-
-org.scalacheck.Arbitrary[Either[String,Int] => Either[String,Int]]
-1 times = 24ms
-
-
-
-scala.reflect.ClassTag[Either[String,Int] => Either[String,Int]]
-
-scala.reflect.ClassTag[Either[String,Int] => Either[String,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int] => Either[String,Int]]->scala.reflect.ClassTag[Either[String,Int] => Either[String,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int]]
-
-org.scalacheck.Arbitrary[Either[String,Int]]
-3 times = 56ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int] => Either[String,Int]]->org.scalacheck.Arbitrary[Either[String,Int]]
-
-
-
-
-
-org.scalacheck.Cogen[Either[String,Int]]
-
-org.scalacheck.Cogen[Either[String,Int]]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int] => Either[String,Int]]->org.scalacheck.Cogen[Either[String,Int]]
-
-
-
-
-
-scala.reflect.ClassTag[monocle.Example]
-
-scala.reflect.ClassTag[monocle.Example]
-10 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Char)]
-
-org.scalacheck.Arbitrary[(Int, Char)]
-7 times = 64ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Char)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Char)]
-
-scala.reflect.ClassTag[(Int, Char)]
-7 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Char)]->scala.reflect.ClassTag[(Int, Char)]
-
-
-
-
-
-org.scalactic.Equality[List[Int] \/ List[Int]]
-
-org.scalactic.Equality[List[Int] / List[Int]]
-1 times = 7ms
-
-
-
-org.scalactic.Equality[List[Int] \/ List[Int]]->scalaz.Equal[List[Int] \/ List[Int]]
-
-
-
-
-
-scalaz.Equal[monocle.Arities => Option[(Char, Boolean, String, Int, Double)]]
-
-scalaz.Equal[monocle.Arities => Option[(Char, Boolean, String, Int, Double)]]
-1 times = 10ms
-
-
-
-scalaz.Equal[monocle.Arities => Option[(Char, Boolean, String, Int, Double)]]->scalaz.Equal[Option[(Char, Boolean, String, Int, Double)]]
-
-
-
-
-
-scalaz.Equal[monocle.Arities => Option[(Char, Boolean, String, Int, Double)]]->org.scalacheck.Arbitrary[monocle.Arities]
-
-
-
-
-
-scala.reflect.ClassTag[Boolean => Boolean]
-
-scala.reflect.ClassTag[Boolean => Boolean]
-17 times = 15ms
-
-
-
-monocle.function.Empty[Option[Int]]
-
-monocle.function.Empty[Option[Int]]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Long :: Double :: shapeless.HNil,Char :: Boolean :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Float :: Long :: Double :: shapeless.HNil,Boolean :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-shapeless.Generic.Aux[ProductSpec.this.Person,L]
-
-shapeless.Generic.Aux[ProductSpec.this.Person,L]
-1 times = 9ms
-
-
-
-org.scalacheck.Cogen[scalaz.IList[Char]]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.H => HListSpec.this.H]
-
-org.scalacheck.Arbitrary[HListSpec.this.H => HListSpec.this.H]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.H => HListSpec.this.H]->org.scalacheck.Arbitrary[HListSpec.this.H]
-
-
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.H => HListSpec.this.H]->scala.reflect.ClassTag[HListSpec.this.H => HListSpec.this.H]
-
-
-
-
-
-org.scalacheck.Cogen[HListSpec.this.H]
-
-org.scalacheck.Cogen[HListSpec.this.H]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.H => HListSpec.this.H]->org.scalacheck.Cogen[HListSpec.this.H]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Option[Int])]
-
-org.scalacheck.Cogen[(Int, Option[Int])]
-1 times = 6ms
-
-
-
-org.scalacheck.Cogen[(Int, Option[Int])]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[Option[Int]]
-
-org.scalacheck.Cogen[Option[Int]]
-3 times = 9ms
-
-
-
-org.scalacheck.Cogen[(Int, Option[Int])]->org.scalacheck.Cogen[Option[Int]]
-
-
-
-
-
-monocle.function.Each[(Int, Int, Int, Int, Int, Int),Int]
-
-monocle.function.Each[(Int, Int, Int, Int, Int, Int),Int]
-1 times = 32ms
-
-
-
-monocle.function.Each[(Int, Int, Int, Int, Int, Int),Int]->shapeless.Generic.Aux[(Int, Int, Int, Int, Int, Int),SGen]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-1 times = 23ms
-
-
-
-monocle.function.Each[(Int, Int, Int, Int, Int, Int),Int]->monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-scalaz.Equal[A2]->scalaz.Equal[A]
-
-
-
-
-
-scalaz.Equal[A2]->scalaz.Equal[A1]
-
-
-
-
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._4]
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._4]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._5.N,Double]->shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._4]
-
-
-
-
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0]
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]->shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, String)]
-
-scala.reflect.ClassTag[(Int, String)]
-2 times = 2ms
-
-
-
-monocle.function.Plated[scalaz.IList[Char]]
-
-monocle.function.Plated[scalaz.IList[Char]]
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any, Any) => Nothing) => ((?A1, ?A2) => ?P)
-
-(=> (Any, Any, Any, Any) => Nothing) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-monocle.function.Reverse[(Int,),(Int,)]
-
-monocle.function.Reverse[(Int,),(Int,)]
-1 times = 27ms
-
-
-
-monocle.function.Reverse[(Int,),(Int,)]->shapeless.ops.tuple.Reverse.Aux[(Int,),(Int,)]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int,),(Int,)]
-
-shapeless.ops.hlist.Reverse.Aux[(Int,),(Int,)]
-1 times = 2ms
-
-
-
-monocle.function.Reverse[(Int,),(Int,)]->shapeless.ops.hlist.Reverse.Aux[(Int,),(Int,)]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]
-4 times = 15ms
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]->scalaz.Order[List[Int]]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[List,Int]]->scalaz.Equal[List[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Int :: shapeless.HNil,HListSpec.this.H]->shapeless.ops.hlist.Reverse.Reverse0[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.HNil,HListSpec.this.H]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,String,String]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,String,String]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.AnObject.type]
-
-org.scalacheck.Arbitrary[IsoSpec.this.AnObject.type]
-1 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.AnObject.type]->scala.reflect.ClassTag[IsoSpec.this.AnObject.type]
-
-
-
-
-
-monocle.function.At[Set[Int],Int,Boolean]
-
-monocle.function.At[Set[Int],Int,Boolean]
-1 times = 7ms
-
-
-
-scala.reflect.ClassTag[Boolean \/ Int => Boolean \/ Int]
-
-scala.reflect.ClassTag[Boolean / Int => Boolean / Int]
-2 times = 1ms
-
-
-
-shapeless.Generic.Aux[HListSpec.this.Example,HListSpec.this.H]
-
-shapeless.Generic.Aux[HListSpec.this.Example,HListSpec.this.H]
-5 times = 72ms
-
-
-
-org.scalacheck.Cogen[scalaz.OneAnd[List,Int]]
-
-org.scalacheck.Cogen[scalaz.OneAnd[List,Int]]
-1 times = 6ms
-
-
-
-org.scalacheck.Cogen[scalaz.OneAnd[List,Int]]->org.scalacheck.Cogen[List[Int]]
-
-
-
-
-
-org.scalacheck.Cogen[scalaz.OneAnd[List,Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-scalaz.Compose[monocle.Lens]
-
-scalaz.Compose[monocle.Lens]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Int, Char),shapeless.nat._0.N,Int]
-
-shapeless.ops.hlist.At.Aux[(Int, Char),shapeless.nat._0.N,Int]
-1 times = 0ms
-
-
-
-scalaz.Split[monocle.Iso]
-
-scalaz.Split[monocle.Iso]
-1 times = 0ms
-
-
-
-monocle.function.Reverse[scalaz.IList[Char],scalaz.IList[Char]]
-
-monocle.function.Reverse[scalaz.IList[Char],scalaz.IList[Char]]
-1 times = 27ms
-
-
-
-monocle.function.Reverse[scalaz.IList[Char],scalaz.IList[Char]]->shapeless.ops.hlist.Reverse.Aux[scalaz.IList[Char],scalaz.IList[Char]]
-
-
-
-
-
-monocle.function.Reverse[scalaz.IList[Char],scalaz.IList[Char]]->shapeless.ops.tuple.Reverse.Aux[scalaz.IList[Char],scalaz.IList[Char]]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,A,List[A]]
-
-scala.collection.generic.CanBuildFrom[F,A,List[A]]
-1 times = 0ms
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: shapeless.HNil,Int]
-3 times = 17ms
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int]->shapeless.Generic.Aux[Int :: shapeless.HNil,SGen]
-
-
-
-
-
-monocle.function.Each[shapeless.HNil,Int]
-
-monocle.function.Each[shapeless.HNil,Int]
-3 times = 8ms
-
-
-
-monocle.function.Each[Int :: shapeless.HNil,Int]->monocle.function.Each[shapeless.HNil,Int]
-
-
-
-
-
-(Any => Nothing) => org.scalacheck.Prop
-
-(Any => Nothing) => org.scalacheck.Prop
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Int, (Char, Boolean, String, Long, Float))]
-
-scala.reflect.ClassTag[(Int, (Char, Boolean, String, Long, Float))]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int] => scalaz.OneAnd[List,Int]]
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int] => scalaz.OneAnd[List,Int]]
-1 times = 27ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int] => scalaz.OneAnd[List,Int]]->org.scalacheck.Cogen[scalaz.OneAnd[List,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int]]
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int]]
-5 times = 67ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int] => scalaz.OneAnd[List,Int]]->org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int]]
-
-
-
-
-
-scala.reflect.ClassTag[scalaz.OneAnd[List,Int] => scalaz.OneAnd[List,Int]]
-
-scala.reflect.ClassTag[scalaz.OneAnd[List,Int] => scalaz.OneAnd[List,Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int] => scalaz.OneAnd[List,Int]]->scala.reflect.ClassTag[scalaz.OneAnd[List,Int] => scalaz.OneAnd[List,Int]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse[HListSpec.this.H]
-
-shapeless.ops.hlist.Reverse[HListSpec.this.H]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.Reverse[HListSpec.this.H]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.H,Out0]
-
-
-
-
-
-scalaz.Equal[monocle.Quintary => (Char, Boolean, String, Int, Double)]
-
-scalaz.Equal[monocle.Quintary => (Char, Boolean, String, Int, Double)]
-1 times = 13ms
-
-
-
-scalaz.Equal[monocle.Quintary => (Char, Boolean, String, Int, Double)]->org.scalacheck.Arbitrary[monocle.Quintary]
-
-
-
-
-
-scalaz.Equal[monocle.Quintary => (Char, Boolean, String, Int, Double)]->scalaz.Equal[(Char, Boolean, String, Int, Double)]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[Unit,Int]]
-
-org.scalacheck.Arbitrary[scalaz.Validation[Unit,Int]]
-2 times = 15ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[Unit,Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Unit]
-
-org.scalacheck.Arbitrary[Unit]
-32 times = 158ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[Unit,Int]]->org.scalacheck.Arbitrary[Unit]
-
-
-
-
-
-scalaz.Equal[Boolean \/ (String \/ Int)]
-
-scalaz.Equal[Boolean / (String / Int)]
-1 times = 6ms
-
-
-
-scalaz.Equal[Boolean \/ (String \/ Int)]->scalaz.Equal[String \/ Int]
-
-
-
-
-
-scalaz.Equal[Boolean \/ (String \/ Int)]->scalaz.Order[Boolean]
-
-
-
-
-
-scalaz.Equal[Boolean \/ (String \/ Int)]->scalaz.Equal[Boolean]
-
-
-
-
-
-org.scalacheck.Cogen[HListSpec.this.HInit]
-
-org.scalacheck.Cogen[HListSpec.this.HInit]
-1 times = 0ms
-
-
-
-scalaz.Order[K]
-
-scalaz.Order[K]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0,Boolean,(Boolean, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0,Boolean,(Boolean, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-1 times = 3ms
-
-
-
-monocle.function.Empty[Set[Int]]
-
-monocle.function.Empty[Set[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[scalaz.Cofree[Option,A]]->org.scalacheck.Cogen[A]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Long, String)]
-
-org.scalacheck.Arbitrary[(Long, String)]
-1 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[(Long, String)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Long, String)]->org.scalacheck.Arbitrary[Long]
-
-
-
-
-
-scala.reflect.ClassTag[(Long, String)]
-
-scala.reflect.ClassTag[(Long, String)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Long, String)]->scala.reflect.ClassTag[(Long, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int ==>> Char]
-
-org.scalacheck.Arbitrary[Int ==>> Char]
-1 times = 9ms
-
-
-
-org.scalacheck.Arbitrary[Int ==>> Char]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int ==>> Char]->scalaz.Order[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int ==>> Char]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Equal[Option[List[Int]]]
-
-scalaz.Equal[Option[List[Int]]]
-4 times = 9ms
-
-
-
-scalaz.Equal[Option[List[Int]]]->scalaz.Equal[List[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(((Int, Char, Boolean, String, Long), Float)) => ((Int, Char, Boolean, String, Long), Float)]
-
-org.scalacheck.Arbitrary[(((Int, Char, Boolean, String, Long), Float)) => ((Int, Char, Boolean, String, Long), Float)]
-1 times = 39ms
-
-
-
-org.scalacheck.Arbitrary[(((Int, Char, Boolean, String, Long), Float)) => ((Int, Char, Boolean, String, Long), Float)]->scala.reflect.ClassTag[(((Int, Char, Boolean, String, Long), Float)) => ((Int, Char, Boolean, String, Long), Float)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(((Int, Char, Boolean, String, Long), Float)) => ((Int, Char, Boolean, String, Long), Float)]->org.scalacheck.Cogen[((Int, Char, Boolean, String, Long), Float)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long), Float)]
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long), Float)]
-1 times = 23ms
-
-
-
-org.scalacheck.Arbitrary[(((Int, Char, Boolean, String, Long), Float)) => ((Int, Char, Boolean, String, Long), Float)]->org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long), Float)]
-
-
-
-
-
-monocle.function.Field2[(Int, Char, Boolean, String, Long, Float),Char]
-
-monocle.function.Field2[(Int, Char, Boolean, String, Long, Float),Char]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._1.N,Char]
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._1.N,Char]
-1 times = 0ms
-
-
-
-monocle.function.Field2[(Int, Char, Boolean, String, Long, Float),Char]->shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._1.N,Char]
-
-
-
-
-
-org.scalacheck.util.Buildable[(Unit, Int),Either[Unit,Int]]
-
-org.scalacheck.util.Buildable[(Unit, Int),Either[Unit,Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.util.Buildable[(Unit, Int),Either[Unit,Int]]->scala.collection.generic.CanBuildFrom[F,(Unit, Int),Either[Unit,Int]]
-
-
-
-
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.Example2Type[Int],(Int, Option[Int])]) => monocle.Iso[MacroOutSideMonocleSpec.this.Example2Type[Int],_$1]
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.Example2Type[Int],(Int, Option[Int])]) => monocle.Iso[MacroOutSideMonocleSpec.this.Example2Type[Int],_$1]
-1 times = 0ms
-
-
-
-((Int, Int)) => ?{def shouldEqual: ?}
-
-((Int, Int)) => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-((Int, Int)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-((Int, Int)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Cogen[(monocle.function.CList, Char)]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[(monocle.function.CList, Char)]->org.scalacheck.Cogen[monocle.function.CList]
-
-
-
-
-
-PlatedSpec.this.PropertyCheckConfigurable
-
-PlatedSpec.this.PropertyCheckConfigurable
-7 times = 2ms
-
-
-
-scalaz.Equal[(Boolean, IsoSpec.this.IntWrapper)]
-
-scalaz.Equal[(Boolean, IsoSpec.this.IntWrapper)]
-1 times = 4ms
-
-
-
-scalaz.Equal[(Boolean, IsoSpec.this.IntWrapper)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(Boolean, IsoSpec.this.IntWrapper)]->scalaz.Equal[IsoSpec.this.IntWrapper]
-
-
-
-
-
-monocle.function.Each[ProductSpec.this.Permissions,Boolean]
-
-monocle.function.Each[ProductSpec.this.Permissions,Boolean]
-1 times = 15ms
-
-
-
-monocle.function.Each[ProductSpec.this.Permissions,Boolean]->monocle.function.Each[Boolean :: Boolean :: Boolean :: shapeless.HNil,Boolean]
-
-
-
-
-
-shapeless.Generic.Aux[ProductSpec.this.Permissions,SGen]
-
-shapeless.Generic.Aux[ProductSpec.this.Permissions,SGen]
-1 times = 8ms
-
-
-
-monocle.function.Each[ProductSpec.this.Permissions,Boolean]->shapeless.Generic.Aux[ProductSpec.this.Permissions,SGen]
-
-
-
-
-
-monocle.function.Cons[Stream[Int],Int]
-
-monocle.function.Cons[Stream[Int],Int]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(HListSpec.this.HInit, Double)]
-
-org.scalacheck.Arbitrary[(HListSpec.this.HInit, Double)]
-2 times = 18ms
-
-
-
-org.scalacheck.Arbitrary[(HListSpec.this.HInit, Double)]->scala.reflect.ClassTag[(HListSpec.this.HInit, Double)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(HListSpec.this.HInit, Double)]->org.scalacheck.Arbitrary[Double]
-
-
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.HInit]
-
-org.scalacheck.Arbitrary[HListSpec.this.HInit]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(HListSpec.this.HInit, Double)]->org.scalacheck.Arbitrary[HListSpec.this.HInit]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._3.N,Float]
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._3.N,Float]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._3.N,Float]->shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._5.N,Double]
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._5.N,Double]
-1 times = 1ms
-
-
-
-org.scalacheck.Cogen[Option[String]]->org.scalacheck.Cogen[String]
-
-
-
-
-
-(=> (Nothing, Nothing)) => Seq[?T]
-
-(=> (Nothing, Nothing)) => Seq[?T]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Double => Double]
-
-org.scalacheck.Arbitrary[Double => Double]
-2 times = 22ms
-
-
-
-org.scalacheck.Arbitrary[Double => Double]->scala.reflect.ClassTag[Double => Double]
-
-
-
-
-
-org.scalacheck.Arbitrary[Double => Double]->org.scalacheck.Arbitrary[Double]
-
-
-
-
-
-org.scalacheck.Cogen[Double]
-
-org.scalacheck.Cogen[Double]
-5 times = 9ms
-
-
-
-org.scalacheck.Arbitrary[Double => Double]->org.scalacheck.Cogen[Double]
-
-
-
-
-
-scala.reflect.ClassTag[Char]
-
-scala.reflect.ClassTag[Char]
-116 times = 67ms
-
-
-
-monocle.function.Empty[Map[Int,String]]
-
-monocle.function.Empty[Map[Int,String]]
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[scalaz.OneAnd[List,Int],SGen]
-
-shapeless.Generic.Aux[scalaz.OneAnd[List,Int],SGen]
-1 times = 10ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char),(Char, Int)]
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char),(Char, Int)]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int, Char),(Char, Int)]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int, Char),(Char, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Stream,Int]]
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Stream,Int]]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Stream,Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Equal[A3]
-
-scalaz.Equal[A3]
-1 times = 2ms
-
-
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),(Char, Int)]
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),(Char, Int)]
-1 times = 13ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),(Char, Int)]->shapeless.Generic.Aux[(Int, Char),L1]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),(Char, Int)]->shapeless.ops.hlist.Tupler[Char :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: shapeless.HNil,L2]
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: shapeless.HNil,L2]
-1 times = 4ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[(Int, Char),(Char, Int)]->shapeless.ops.hlist.Reverse.Aux[Int :: Char :: shapeless.HNil,L2]
-
-
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.ExampleType[Int]]
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.ExampleType[Int]]
-1 times = 2ms
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.ExampleType[Int]]->scalaz.Equal[Option[Int]]
-
-
-
-
-
-org.scalacheck.Cogen[monocle.refined.StartsWithString[String('hello')]]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalacheck.Cogen[monocle.refined.StartsWithString[String('hello')]]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-scalaz.Equal[scalaz.Cofree[Stream,A]]
-
-scalaz.Equal[scalaz.Cofree[Stream,A]]
-2 times = 2ms
-
-
-
-scalaz.Equal[scalaz.Cofree[Stream,A]]->scalaz.Equal[A]
-
-
-
-
-
-scala.reflect.ClassTag[((Int, Char)) => (Int, Char)]
-
-scala.reflect.ClassTag[((Int, Char)) => (Int, Char)]
-2 times = 1ms
-
-
-
-monocle.function.FilterIndex[String,Int,Char]
-
-monocle.function.FilterIndex[String,Int,Char]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[java.util.UUID => java.util.UUID]
-
-scala.reflect.ClassTag[java.util.UUID => java.util.UUID]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[A,scalaz.Tree[A]]
-
-org.scalacheck.util.Buildable[A,scalaz.Tree[A]]
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,A,scalaz.Tree[A]]
-
-scala.collection.generic.CanBuildFrom[F,A,scalaz.Tree[A]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[A,scalaz.Tree[A]]->scala.collection.generic.CanBuildFrom[F,A,scalaz.Tree[A]]
-
-
-
-
-
-scala.reflect.ClassTag[Stream[Int] => Stream[Int]]
-
-scala.reflect.ClassTag[Stream[Int] => Stream[Int]]
-4 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[CoproductSpec.this.IB]
-
-org.scalacheck.Arbitrary[CoproductSpec.this.IB]
-1 times = 3ms
-
-
-
-scala.reflect.ClassTag[CoproductSpec.this.IB]
-
-scala.reflect.ClassTag[CoproductSpec.this.IB]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[CoproductSpec.this.IB]->scala.reflect.ClassTag[CoproductSpec.this.IB]
-
-
-
-
-
-org.scalacheck.Arbitrary[Long => Long]
-
-org.scalacheck.Arbitrary[Long => Long]
-6 times = 57ms
-
-
-
-org.scalacheck.Arbitrary[Long => Long]->org.scalacheck.Arbitrary[Long]
-
-
-
-
-
-org.scalacheck.Arbitrary[Long => Long]->org.scalacheck.Cogen[Long]
-
-
-
-
-
-scala.reflect.ClassTag[Long => Long]
-
-scala.reflect.ClassTag[Long => Long]
-6 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[Long => Long]->scala.reflect.ClassTag[Long => Long]
-
-
-
-
-
-(=> Any => Nothing) => ((?A1, ?A2) => ?P)
-
-(=> Any => Nothing) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[ProductSpec.this.Permissions]
-
-org.scalacheck.Arbitrary[ProductSpec.this.Permissions]
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$15]
-
-scalaz.Functor[F$macro$15]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(Boolean, Int)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[(Boolean, Int)]->org.scalacheck.Cogen[Boolean]
-
-
-
-
-
-scalaz.Equal[Option[scalaz.Cofree[Option,Int]]]
-
-scalaz.Equal[Option[scalaz.Cofree[Option,Int]]]
-1 times = 2ms
-
-
-
-scalaz.Equal[Option[scalaz.Cofree[Option,Int]]]->scalaz.Equal[scalaz.Cofree[Option,Int]]
-
-
-
-
-
-monocle.function.Field4[(Boolean, Char, Int, Long, Float, Double),Long]
-
-monocle.function.Field4[(Boolean, Char, Int, Long, Float, Double),Long]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._3.N,Long]
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._3.N,Long]
-1 times = 1ms
-
-
-
-monocle.function.Field4[(Boolean, Char, Int, Long, Float, Double),Long]->shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._3.N,Long]
-
-
-
-
-
-scalaz.Equal[IsoSpec.this.IntWrapper \/ Boolean]
-
-scalaz.Equal[IsoSpec.this.IntWrapper / Boolean]
-1 times = 12ms
-
-
-
-scalaz.Equal[IsoSpec.this.IntWrapper \/ Boolean]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[IsoSpec.this.IntWrapper \/ Boolean]->scalaz.Equal[IsoSpec.this.IntWrapper]
-
-
-
-
-
-scalaz.Order[IsoSpec.this.IntWrapper]
-
-scalaz.Order[IsoSpec.this.IntWrapper]
-2 times = 1ms
-
-
-
-scalaz.Equal[IsoSpec.this.IntWrapper \/ Boolean]->scalaz.Order[IsoSpec.this.IntWrapper]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Stream[Int])]
-
-org.scalacheck.Arbitrary[(Int, Stream[Int])]
-1 times = 11ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Stream[Int])]->org.scalacheck.Arbitrary[Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Stream[Int])]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Stream[Int])]
-
-scala.reflect.ClassTag[(Int, Stream[Int])]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Stream[Int])]->scala.reflect.ClassTag[(Int, Stream[Int])]
-
-
-
-
-
-monocle.function.Each[scalaz.NonEmptyList[Int],Int]
-
-monocle.function.Each[scalaz.NonEmptyList[Int],Int]
-1 times = 9ms
-
-
-
-shapeless.Generic.Aux[scalaz.NonEmptyList[Int],SGen]
-
-shapeless.Generic.Aux[scalaz.NonEmptyList[Int],SGen]
-1 times = 7ms
-
-
-
-monocle.function.Each[scalaz.NonEmptyList[Int],Int]->shapeless.Generic.Aux[scalaz.NonEmptyList[Int],SGen]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ IsoSpec.this.IntWrapper]
-
-org.scalacheck.Arbitrary[Boolean / IsoSpec.this.IntWrapper]
-1 times = 24ms
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ IsoSpec.this.IntWrapper]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ IsoSpec.this.IntWrapper]->org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper]
-
-
-
-
-
-scala.reflect.ClassTag[Boolean \/ IsoSpec.this.IntWrapper]
-
-scala.reflect.ClassTag[Boolean / IsoSpec.this.IntWrapper]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ IsoSpec.this.IntWrapper]->scala.reflect.ClassTag[Boolean \/ IsoSpec.this.IntWrapper]
-
-
-
-
-
-scala.collection.immutable.Stream[Int] => ?{def #::: ?}
-
-scala.collection.immutable.Stream[Int] => ?{def #::: ?}
-2 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int,),(Int,)]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int,),(Int,)]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[(Int,),(Int,)]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,(Int,),(Int,)]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => ((?A1, ?A2) => ?P)
-
-((Any, Any, Any) => Nothing) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[monocle.function.MMap[Int,String]]
-
-scala.reflect.ClassTag[monocle.function.MMap[Int,String]]
-3 times = 2ms
-
-
-
-scala.reflect.ClassTag[((Int, Char, Boolean, String, Long)) => (Int, Char, Boolean, String, Long)]
-
-scala.reflect.ClassTag[((Int, Char, Boolean, String, Long)) => (Int, Char, Boolean, String, Long)]
-1 times = 0ms
-
-
-
-scalaz.Monoid[M]
-
-scalaz.Monoid[M]
-2 times = 5ms
-
-
-
-org.scalacheck.Cogen[(Long, String)]
-
-org.scalacheck.Cogen[(Long, String)]
-1 times = 5ms
-
-
-
-org.scalacheck.Cogen[(Long, String)]->org.scalacheck.Cogen[Long]
-
-
-
-
-
-org.scalacheck.Cogen[(Long, String)]->org.scalacheck.Cogen[String]
-
-
-
-
-
-shapeless.ops.hlist.Prepend[Long :: shapeless.HNil,Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Prepend[Long :: shapeless.HNil,Double :: shapeless.HNil]
-3 times = 13ms
-
-
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Prepend[shapeless.HNil,Double :: shapeless.HNil]
-3 times = 3ms
-
-
-
-shapeless.ops.hlist.Prepend[Long :: shapeless.HNil,Double :: shapeless.HNil]->shapeless.ops.hlist.Prepend[shapeless.HNil,Double :: shapeless.HNil]
-
-
-
-
-
-scalaz.Equal[A4]
-
-scalaz.Equal[A4]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[((String, Char)) => (String, Char)]
-
-org.scalacheck.Arbitrary[((String, Char)) => (String, Char)]
-1 times = 15ms
-
-
-
-org.scalacheck.Arbitrary[((String, Char)) => (String, Char)]->org.scalacheck.Arbitrary[(String, Char)]
-
-
-
-
-
-scala.reflect.ClassTag[((String, Char)) => (String, Char)]
-
-scala.reflect.ClassTag[((String, Char)) => (String, Char)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((String, Char)) => (String, Char)]->scala.reflect.ClassTag[((String, Char)) => (String, Char)]
-
-
-
-
-
-org.scalacheck.Cogen[(String, Char)]
-
-org.scalacheck.Cogen[(String, Char)]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[((String, Char)) => (String, Char)]->org.scalacheck.Cogen[(String, Char)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[Int,Char]]
-
-org.scalacheck.Arbitrary[Map[Int,Char]]
-1 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[Map[Int,Char]]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[Int,Char]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Split[monocle.Lens]
-
-scalaz.Split[monocle.Lens]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(String, Int)]
-
-scala.reflect.ClassTag[(String, Int)]
-4 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[((Boolean, String)) => (Boolean, String)]
-
-org.scalacheck.Arbitrary[((Boolean, String)) => (Boolean, String)]
-1 times = 35ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String)]
-
-org.scalacheck.Arbitrary[(Boolean, String)]
-2 times = 38ms
-
-
-
-org.scalacheck.Arbitrary[((Boolean, String)) => (Boolean, String)]->org.scalacheck.Arbitrary[(Boolean, String)]
-
-
-
-
-
-org.scalacheck.Cogen[(Boolean, String)]
-
-org.scalacheck.Cogen[(Boolean, String)]
-1 times = 9ms
-
-
-
-org.scalacheck.Arbitrary[((Boolean, String)) => (Boolean, String)]->org.scalacheck.Cogen[(Boolean, String)]
-
-
-
-
-
-scala.reflect.ClassTag[((Boolean, String)) => (Boolean, String)]
-
-scala.reflect.ClassTag[((Boolean, String)) => (Boolean, String)]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[((Boolean, String)) => (Boolean, String)]->scala.reflect.ClassTag[((Boolean, String)) => (Boolean, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int => Boolean]
-
-org.scalacheck.Arbitrary[Int => Boolean]
-8 times = 79ms
-
-
-
-org.scalacheck.Arbitrary[Int => Boolean]->scala.reflect.ClassTag[Int => Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int => Boolean]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int => Boolean]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.Binary]
-
-org.scalacheck.Arbitrary[monocle.Binary]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[monocle.Binary]->scala.reflect.ClassTag[monocle.Binary]
-
-
-
-
-
-org.scalacheck.Arbitrary[Stream[Int] => Stream[Int]]
-
-org.scalacheck.Arbitrary[Stream[Int] => Stream[Int]]
-4 times = 50ms
-
-
-
-org.scalacheck.Arbitrary[Stream[Int] => Stream[Int]]->org.scalacheck.Arbitrary[Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Stream[Int] => Stream[Int]]->scala.reflect.ClassTag[Stream[Int] => Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Stream[Int] => Stream[Int]]->org.scalacheck.Cogen[Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(monocle.Example, Boolean)]
-
-org.scalacheck.Arbitrary[(monocle.Example, Boolean)]
-1 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[(monocle.Example, Boolean)]->scala.reflect.ClassTag[(monocle.Example, Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(monocle.Example, Boolean)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.Example]
-
-org.scalacheck.Arbitrary[monocle.Example]
-10 times = 68ms
-
-
-
-org.scalacheck.Arbitrary[(monocle.Example, Boolean)]->org.scalacheck.Arbitrary[monocle.Example]
-
-
-
-
-
-(=> (Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-(=> (Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((scalaz.IList[Int], Int)) => (scalaz.IList[Int], Int)]
-
-org.scalacheck.Arbitrary[((scalaz.IList[Int], Int)) => (scalaz.IList[Int], Int)]
-1 times = 17ms
-
-
-
-org.scalacheck.Arbitrary[((scalaz.IList[Int], Int)) => (scalaz.IList[Int], Int)]->org.scalacheck.Arbitrary[(scalaz.IList[Int], Int)]
-
-
-
-
-
-org.scalacheck.Cogen[(scalaz.IList[Int], Int)]
-
-org.scalacheck.Cogen[(scalaz.IList[Int], Int)]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[((scalaz.IList[Int], Int)) => (scalaz.IList[Int], Int)]->org.scalacheck.Cogen[(scalaz.IList[Int], Int)]
-
-
-
-
-
-scala.reflect.ClassTag[((scalaz.IList[Int], Int)) => (scalaz.IList[Int], Int)]
-
-scala.reflect.ClassTag[((scalaz.IList[Int], Int)) => (scalaz.IList[Int], Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((scalaz.IList[Int], Int)) => (scalaz.IList[Int], Int)]->scala.reflect.ClassTag[((scalaz.IList[Int], Int)) => (scalaz.IList[Int], Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Int)]->scala.reflect.ClassTag[(String, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Int)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Equal[scalaz.Cofree[Stream,Int]]
-
-scalaz.Equal[scalaz.Cofree[Stream,Int]]
-1 times = 1ms
-
-
-
-scalaz.Equal[scalaz.Cofree[Stream,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.function.Field1[(Int, Char, Boolean, String, Long, Float),Int]
-
-monocle.function.Field1[(Int, Char, Boolean, String, Long, Float),Int]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._0.N,Int]
-
-shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._0.N,Int]
-1 times = 1ms
-
-
-
-monocle.function.Field1[(Int, Char, Boolean, String, Long, Float),Int]->shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._0.N,Int]
-
-
-
-
-
-monocle.function.Each[Boolean :: shapeless.HNil,Boolean]
-
-monocle.function.Each[Boolean :: shapeless.HNil,Boolean]
-1 times = 5ms
-
-
-
-monocle.function.Each[shapeless.HNil,Boolean]
-
-monocle.function.Each[shapeless.HNil,Boolean]
-1 times = 4ms
-
-
-
-monocle.function.Each[Boolean :: shapeless.HNil,Boolean]->monocle.function.Each[shapeless.HNil,Boolean]
-
-
-
-
-
-org.scalacheck.Cogen[(A, Stream[scalaz.Tree[A]])]
-
-org.scalacheck.Cogen[(A, Stream[scalaz.Tree[A]])]
-2 times = 13ms
-
-
-
-org.scalacheck.Cogen[(A, Stream[scalaz.Tree[A]])]->org.scalacheck.Cogen[A]
-
-
-
-
-
-org.scalacheck.Cogen[(A, Stream[scalaz.Tree[A]])]->org.scalacheck.Cogen[Stream[scalaz.Tree[A]]]
-
-
-
-
-
-scala.reflect.ClassTag[Byte]
-
-scala.reflect.ClassTag[Byte]
-10 times = 5ms
-
-
-
-scalaz.Unzip[[β$2$]monocle.Getter[String,β$2$]]
-
-scalaz.Unzip[[β$2$]monocle.Getter[String,β$2$]]
-1 times = 1ms
-
-
-
-Int(1) => ?{def ->: ?}
-
-Int(1) => ?{def ->: ?}
-2 times = 1ms
-
-
-
-Integral[scala.collection.immutable.Stream[Int]]
-
-Integral[scala.collection.immutable.Stream[Int]]
-5 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[((Vector[Int], Int)) => (Vector[Int], Int)]
-
-org.scalacheck.Arbitrary[((Vector[Int], Int)) => (Vector[Int], Int)]
-1 times = 17ms
-
-
-
-org.scalacheck.Arbitrary[((Vector[Int], Int)) => (Vector[Int], Int)]->org.scalacheck.Cogen[(Vector[Int], Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Vector[Int], Int)]
-
-org.scalacheck.Arbitrary[(Vector[Int], Int)]
-1 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[((Vector[Int], Int)) => (Vector[Int], Int)]->org.scalacheck.Arbitrary[(Vector[Int], Int)]
-
-
-
-
-
-scala.reflect.ClassTag[((Vector[Int], Int)) => (Vector[Int], Int)]
-
-scala.reflect.ClassTag[((Vector[Int], Int)) => (Vector[Int], Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Vector[Int], Int)) => (Vector[Int], Int)]->scala.reflect.ClassTag[((Vector[Int], Int)) => (Vector[Int], Int)]
-
-
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)] => ?{def shouldEqual: ?}
-
-monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Option[scalaz.Cofree[Option,Int]])]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Option[scalaz.Cofree[Option,Int]])]->org.scalacheck.Cogen[Option[scalaz.Cofree[Option,Int]]]
-
-
-
-
-
-scalaz.Equal[((String, Int)) => monocle.Binary]
-
-scalaz.Equal[((String, Int)) => monocle.Binary]
-1 times = 20ms
-
-
-
-scalaz.Equal[((String, Int)) => monocle.Binary]->scalaz.Equal[monocle.Binary]
-
-
-
-
-
-scalaz.Equal[((String, Int)) => monocle.Binary]->org.scalacheck.Arbitrary[(String, Int)]
-
-
-
-
-
-scalaz.Equal[Map[Int,String]]
-
-scalaz.Equal[Map[Int,String]]
-4 times = 6ms
-
-
-
-scalaz.Equal[Map[Int,String]]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[Map[Int,String]]->scalaz.Order[Int]
-
-
-
-
-
-monocle.function.Each[shapeless.HNil,String]->shapeless.Generic.Aux[shapeless.HNil,SGen]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[java.util.UUID]
-
-org.scalacheck.Arbitrary[java.util.UUID]
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[List[A]]->org.scalacheck.Arbitrary[A]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[A]]->List[A] => Traversable[A]
-
-
-
-
-
-org.scalacheck.util.Buildable[A,List[A]]
-
-org.scalacheck.util.Buildable[A,List[A]]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[List[A]]->org.scalacheck.util.Buildable[A,List[A]]
-
-
-
-
-
-scala.reflect.ClassTag[List[A]]
-
-scala.reflect.ClassTag[List[A]]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[List[A]]->scala.reflect.ClassTag[List[A]]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.function.MMap[Int,String]]
-
-org.scalacheck.Arbitrary[monocle.function.MMap[Int,String]]
-3 times = 76ms
-
-
-
-org.scalacheck.Arbitrary[monocle.function.MMap[Int,String]]->org.scalacheck.util.Buildable[(Int, String),monocle.function.MMap[Int,String]]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.function.MMap[Int,String]]->scala.reflect.ClassTag[monocle.function.MMap[Int,String]]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.function.MMap[Int,String]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, String)]
-
-org.scalacheck.Arbitrary[(Int, String)]
-2 times = 28ms
-
-
-
-org.scalacheck.Arbitrary[monocle.function.MMap[Int,String]]->org.scalacheck.Arbitrary[(Int, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.function.MMap[Int,String]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Equal[(Int, Char)]
-
-scalaz.Equal[(Int, Char)]
-5 times = 5ms
-
-
-
-scalaz.Equal[(Int, Char)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[(Int, Char)]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Int, Double)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Int, Double)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Int, Double)]->scalaz.Equal[Double]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Int, Double)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Int, Double)]->scalaz.Equal[Char]
-
-
-
-
-
-org.scalactic.Equality[Boolean]
-
-org.scalactic.Equality[Boolean]
-46 times = 108ms
-
-
-
-org.scalactic.Equality[Boolean]->scalaz.Equal[Boolean]
-
-
-
-
-
-monocle.function.Reverse[HListSpec.this.H,HListSpec.this.ReverseH]
-
-monocle.function.Reverse[HListSpec.this.H,HListSpec.this.ReverseH]
-1 times = 26ms
-
-
-
-monocle.function.Reverse[HListSpec.this.H,HListSpec.this.ReverseH]->shapeless.ops.hlist.Reverse.Aux[HListSpec.this.H,HListSpec.this.ReverseH]
-
-
-
-
-
-monocle.function.Reverse[HListSpec.this.H,HListSpec.this.ReverseH]->shapeless.ops.hlist.Reverse.Aux[HListSpec.this.ReverseH,HListSpec.this.H]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[HListSpec.this.H,HListSpec.this.ReverseH]
-
-shapeless.ops.tuple.Reverse.Aux[HListSpec.this.H,HListSpec.this.ReverseH]
-1 times = 6ms
-
-
-
-monocle.function.Reverse[HListSpec.this.H,HListSpec.this.ReverseH]->shapeless.ops.tuple.Reverse.Aux[HListSpec.this.H,HListSpec.this.ReverseH]
-
-
-
-
-
-org.scalactic.Equality[monocle.Quintary]
-
-org.scalactic.Equality[monocle.Quintary]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[monocle.Quintary]->scalaz.Equal[monocle.Quintary]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,(String, Int),Either[String,Int]]
-
-scala.collection.generic.CanBuildFrom[F,(String, Int),Either[String,Int]]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-(=> Any => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-org.scalactic.Equality[monocle.Unary]
-
-org.scalactic.Equality[monocle.Unary]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[monocle.Unary]->scalaz.Equal[monocle.Unary]
-
-
-
-
-
-IsoSpec.this.IntWrapper => ?{def shouldEqual: ?}
-
-IsoSpec.this.IntWrapper => ?{def shouldEqual: ?}
-3 times = 9ms
-
-
-
-IsoSpec.this.IntWrapper => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-IsoSpec.this.IntWrapper => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Equal[IsoSpec.this.EmptyCase]
-
-scalaz.Equal[IsoSpec.this.EmptyCase]
-1 times = 2ms
-
-
-
-org.scalacheck.Cogen[scalaz.Tree[A]]->org.scalacheck.Cogen[A]
-
-
-
-
-
-Null <:< String
-
-Null <:< String
-1 times = 0ms
-
-
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.Example2,(Long, String)]) => monocle.Iso[MacroOutSideMonocleSpec.this.Example2,_$1]
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.Example2,(Long, String)]) => monocle.Iso[MacroOutSideMonocleSpec.this.Example2,_$1]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[monocle.Unary]
-
-scala.reflect.ClassTag[monocle.Unary]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scala.util.Try[Int]]
-
-org.scalacheck.Arbitrary[scala.util.Try[Int]]
-4 times = 51ms
-
-
-
-org.scalacheck.util.Buildable[Int,scala.util.Try[Int]]
-
-org.scalacheck.util.Buildable[Int,scala.util.Try[Int]]
-4 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[scala.util.Try[Int]]->org.scalacheck.util.Buildable[Int,scala.util.Try[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scala.util.Try[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[scala.util.Try[Int]]
-
-scala.reflect.ClassTag[scala.util.Try[Int]]
-4 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[scala.util.Try[Int]]->scala.reflect.ClassTag[scala.util.Try[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(K, V)]
-
-org.scalacheck.Arbitrary[(K, V)]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[(K, V)]->org.scalacheck.Arbitrary[V]
-
-
-
-
-
-org.scalacheck.Arbitrary[(K, V)]->scala.reflect.ClassTag[(K, V)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(K, V)]->org.scalacheck.Arbitrary[K]
-
-
-
-
-
-monocle.function.Snoc1[(Int, Char),Int,Char]
-
-monocle.function.Snoc1[(Int, Char),Int,Char]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Init.Aux[(Int, Char),Int]
-
-shapeless.ops.hlist.Init.Aux[(Int, Char),Int]
-1 times = 0ms
-
-
-
-monocle.function.Snoc1[(Int, Char),Int,Char]->shapeless.ops.hlist.Init.Aux[(Int, Char),Int]
-
-
-
-
-
-monocle.function.Each[Vector[Int],Int]
-
-monocle.function.Each[Vector[Int],Int]
-1 times = 12ms
-
-
-
-shapeless.Generic.Aux[Vector[Int],SGen]
-
-shapeless.Generic.Aux[Vector[Int],SGen]
-1 times = 10ms
-
-
-
-monocle.function.Each[Vector[Int],Int]->shapeless.Generic.Aux[Vector[Int],SGen]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[List[Int],List[Int]]
-
-shapeless.ops.tuple.Reverse.Aux[List[Int],List[Int]]
-1 times = 66ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[List[Int],List[Int]]->shapeless.Generic.Aux[List[Int],L1]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, scalaz.IList[Int])) => (Int, scalaz.IList[Int])]
-
-org.scalacheck.Arbitrary[((Int, scalaz.IList[Int])) => (Int, scalaz.IList[Int])]
-1 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[((Int, scalaz.IList[Int])) => (Int, scalaz.IList[Int])]->scala.reflect.ClassTag[((Int, scalaz.IList[Int])) => (Int, scalaz.IList[Int])]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, scalaz.IList[Int])) => (Int, scalaz.IList[Int])]->org.scalacheck.Cogen[(Int, scalaz.IList[Int])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, scalaz.IList[Int])]
-
-org.scalacheck.Arbitrary[(Int, scalaz.IList[Int])]
-1 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[((Int, scalaz.IList[Int])) => (Int, scalaz.IList[Int])]->org.scalacheck.Arbitrary[(Int, scalaz.IList[Int])]
-
-
-
-
-
-shapeless.ops.hlist.Last[Float :: Long :: Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Last[Float :: Long :: Double :: shapeless.HNil]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Last[Long :: Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Last[Long :: Double :: shapeless.HNil]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Last[Float :: Long :: Double :: shapeless.HNil]->shapeless.ops.hlist.Last[Long :: Double :: shapeless.HNil]
-
-
-
-
-
-scalaz.Equal[(Int, Int, Int, Int, Int, Int)]
-
-scalaz.Equal[(Int, Int, Int, Int, Int, Int)]
-1 times = 4ms
-
-
-
-scalaz.Equal[(Int, Int, Int, Int, Int, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.generic.internal.TupleGeneric[ProductSpec.this.Person]
-
-monocle.generic.internal.TupleGeneric[ProductSpec.this.Person]
-1 times = 19ms
-
-
-
-monocle.generic.internal.TupleGeneric[ProductSpec.this.Person]->shapeless.Generic.Aux[ProductSpec.this.Person,L]
-
-
-
-
-
-shapeless.Generic.Aux[(String, Int),String :: Int :: shapeless.HNil]
-
-shapeless.Generic.Aux[(String, Int),String :: Int :: shapeless.HNil]
-1 times = 6ms
-
-
-
-monocle.generic.internal.TupleGeneric[ProductSpec.this.Person]->shapeless.Generic.Aux[(String, Int),String :: Int :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.Tupler.Aux[String :: Int :: shapeless.HNil,R]
-
-shapeless.ops.hlist.Tupler.Aux[String :: Int :: shapeless.HNil,R]
-1 times = 1ms
-
-
-
-monocle.generic.internal.TupleGeneric[ProductSpec.this.Person]->shapeless.ops.hlist.Tupler.Aux[String :: Int :: shapeless.HNil,R]
-
-
-
-
-
-org.scalacheck.Arbitrary[String]->scala.reflect.ClassTag[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]] => Stream[scalaz.Tree[Int]]]
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]] => Stream[scalaz.Tree[Int]]]
-1 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]] => Stream[scalaz.Tree[Int]]]->org.scalacheck.Cogen[Stream[scalaz.Tree[Int]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]] => Stream[scalaz.Tree[Int]]]->org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]]]
-
-
-
-
-
-scala.reflect.ClassTag[Stream[scalaz.Tree[Int]] => Stream[scalaz.Tree[Int]]]
-
-scala.reflect.ClassTag[Stream[scalaz.Tree[Int]] => Stream[scalaz.Tree[Int]]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Stream[scalaz.Tree[Int]] => Stream[scalaz.Tree[Int]]]->scala.reflect.ClassTag[Stream[scalaz.Tree[Int]] => Stream[scalaz.Tree[Int]]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: shapeless.HNil,Out0]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: Char :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: shapeless.HNil,Out0]
-
-
-
-
-
-scalaz.Equal[scalaz.Maybe[Int]]
-
-scalaz.Equal[scalaz.Maybe[Int]]
-5 times = 6ms
-
-
-
-scalaz.Equal[scalaz.Maybe[Int]]->scalaz.Order[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int => Boolean \/ Int]
-
-org.scalacheck.Arbitrary[Boolean / Int => Boolean / Int]
-2 times = 46ms
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int => Boolean \/ Int]->org.scalacheck.Cogen[Boolean \/ Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int => Boolean \/ Int]->scala.reflect.ClassTag[Boolean \/ Int => Boolean \/ Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int]
-
-org.scalacheck.Arbitrary[Boolean / Int]
-4 times = 57ms
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int => Boolean \/ Int]->org.scalacheck.Arbitrary[Boolean \/ Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, IsoSpec.this.IntWrapper)]
-
-org.scalacheck.Arbitrary[(Boolean, IsoSpec.this.IntWrapper)]
-1 times = 21ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, IsoSpec.this.IntWrapper)]->scala.reflect.ClassTag[(Boolean, IsoSpec.this.IntWrapper)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, IsoSpec.this.IntWrapper)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, IsoSpec.this.IntWrapper)]->org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper]
-
-
-
-
-
-scala.reflect.ClassTag[scalaz.NonEmptyList[Int] => scalaz.NonEmptyList[Int]]
-
-scala.reflect.ClassTag[scalaz.NonEmptyList[Int] => scalaz.NonEmptyList[Int]]
-1 times = 0ms
-
-
-
-monocle.function.FilterIndex[scalaz.NonEmptyList[Int],Int,Int]
-
-monocle.function.FilterIndex[scalaz.NonEmptyList[Int],Int,Int]
-1 times = 0ms
-
-
-
-monocle.function.Reverse[List[Int],List[Int]]
-
-monocle.function.Reverse[List[Int],List[Int]]
-1 times = 75ms
-
-
-
-monocle.function.Reverse[List[Int],List[Int]]->shapeless.ops.hlist.Reverse.Aux[List[Int],List[Int]]
-
-
-
-
-
-monocle.function.Reverse[List[Int],List[Int]]->shapeless.ops.tuple.Reverse.Aux[List[Int],List[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Option[Int])]
-
-scala.reflect.ClassTag[(Int, Option[Int])]
-1 times = 1ms
-
-
-
-monocle.function.Possible[scalaz.Validation[Unit,Int],Int]
-
-monocle.function.Possible[scalaz.Validation[Unit,Int],Int]
-1 times = 0ms
-
-
-
-scalaz.Applicative[org.scalacheck.Gen]
-
-scalaz.Applicative[org.scalacheck.Gen]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-
-(=> Any => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Unit => Unit]
-
-org.scalacheck.Arbitrary[Unit => Unit]
-8 times = 116ms
-
-
-
-org.scalacheck.Arbitrary[Unit => Unit]->org.scalacheck.Cogen[Unit]
-
-
-
-
-
-scala.reflect.ClassTag[Unit => Unit]
-
-scala.reflect.ClassTag[Unit => Unit]
-8 times = 10ms
-
-
-
-org.scalacheck.Arbitrary[Unit => Unit]->scala.reflect.ClassTag[Unit => Unit]
-
-
-
-
-
-org.scalacheck.Arbitrary[Unit => Unit]->org.scalacheck.Arbitrary[Unit]
-
-
-
-
-
-shapeless.Generic.Aux[scala.util.Try[Int],SGen]
-
-shapeless.Generic.Aux[scala.util.Try[Int],SGen]
-1 times = 8ms
-
-
-
-monocle.function.At[monocle.function.MMap[Int,String],Int,Option[String]]
-
-monocle.function.At[monocle.function.MMap[Int,String],Int,Option[String]]
-1 times = 0ms
-
-
-
-monocle.function.Plated[List[Int]]
-
-monocle.function.Plated[List[Int]]
-1 times = 0ms
-
-
-
-scalaz.Equal[monocle.refined.EndsWithString[String('world')]]
-
-scalaz.Equal[monocle.refined.EndsWithString[String('world')]]
-1 times = 0ms
-
-
-
-scalaz.Choice[monocle.Lens]
-
-scalaz.Choice[monocle.Lens]
-1 times = 0ms
-
-
-
-scalaz.Equal[Option[scalaz.Cofree[Option,A]]]
-
-scalaz.Equal[Option[scalaz.Cofree[Option,A]]]
-2 times = 6ms
-
-
-
-scalaz.Equal[Option[scalaz.Cofree[Option,A]]]->scalaz.Equal[scalaz.Cofree[Option,A]]
-
-
-
-
-
-scalaz.Equal[(Int, Option[Int])]
-
-scalaz.Equal[(Int, Option[Int])]
-1 times = 2ms
-
-
-
-scalaz.Equal[(Int, Option[Int])]->scalaz.Equal[Option[Int]]
-
-
-
-
-
-scalaz.Equal[(Int, Option[Int])]->scalaz.Equal[Int]
-
-
-
-
-
-(=> (Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-
-(=> (Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper]->scala.reflect.ClassTag[IsoSpec.this.IntWrapper]
-
-
-
-
-
-scalaz.Equal[monocle.Unary => Int]->scalaz.Equal[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.Unary]
-
-org.scalacheck.Arbitrary[monocle.Unary]
-1 times = 7ms
-
-
-
-scalaz.Equal[monocle.Unary => Int]->org.scalacheck.Arbitrary[monocle.Unary]
-
-
-
-
-
-org.scalacheck.Arbitrary[Byte]
-
-org.scalacheck.Arbitrary[Byte]
-10 times = 48ms
-
-
-
-org.scalacheck.Arbitrary[Byte]->scala.reflect.ClassTag[Byte]
-
-
-
-
-
-scala.collection.immutable.Map[Int,String] => ?{def should: ?}
-
-scala.collection.immutable.Map[Int,String] => ?{def should: ?}
-1 times = 1ms
-
-
-
-scala.collection.immutable.Map[Int,String] => ?{def should: ?}->org.scalactic.Prettifier
-
-
-
-
-
-scala.collection.immutable.Map[Int,String] => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-Fractional[scala.collection.immutable.Map[Int,String]]
-
-Fractional[scala.collection.immutable.Map[Int,String]]
-1 times = 0ms
-
-
-
-scalaz.Equal[HListSpec.this.HInit]
-
-scalaz.Equal[HListSpec.this.HInit]
-1 times = 0ms
-
-
-
-scalaz.Equal[IsoSpec.this.IdWrapper[Int]]
-
-scalaz.Equal[IsoSpec.this.IdWrapper[Int]]
-1 times = 4ms
-
-
-
-scalaz.Equal[IsoSpec.this.IdWrapper[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-shapeless.ops.hlist.Last[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Last[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-1 times = 6ms
-
-
-
-shapeless.ops.hlist.Last[Char :: Float :: Long :: Double :: shapeless.HNil]
-
-shapeless.ops.hlist.Last[Char :: Float :: Long :: Double :: shapeless.HNil]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Last[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]->shapeless.ops.hlist.Last[Char :: Float :: Long :: Double :: shapeless.HNil]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._4,Double,(Double, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._4,Double,(Double, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-1 times = 15ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._5.N,Double,(Double, HListSpec.this.H)]->shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._4,Double,(Double, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean => Int \/ Boolean]
-
-org.scalacheck.Arbitrary[Int / Boolean => Int / Boolean]
-2 times = 57ms
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean => Int \/ Boolean]->org.scalacheck.Arbitrary[Int \/ Boolean]
-
-
-
-
-
-scala.reflect.ClassTag[Int \/ Boolean => Int \/ Boolean]
-
-scala.reflect.ClassTag[Int / Boolean => Int / Boolean]
-2 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean => Int \/ Boolean]->scala.reflect.ClassTag[Int \/ Boolean => Int \/ Boolean]
-
-
-
-
-
-org.scalacheck.Cogen[Int \/ Boolean]
-
-org.scalacheck.Cogen[Int / Boolean]
-2 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[Int \/ Boolean => Int \/ Boolean]->org.scalacheck.Cogen[Int \/ Boolean]
-
-
-
-
-
-((Int, IsoSpec.this.IntWrapper)) => ?{def shouldEqual: ?}
-
-((Int, IsoSpec.this.IntWrapper)) => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-((Int, IsoSpec.this.IntWrapper)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-((Int, IsoSpec.this.IntWrapper)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Stream[Int],Stream[Int]]
-
-shapeless.ops.hlist.Reverse.Aux[Stream[Int],Stream[Int]]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Stream[Int],Stream[Int]]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Stream[Int],Stream[Int]]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Stream[Int],Stream[Int]]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Stream[Int],Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Option,Int]]
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Option,Int]]
-6 times = 27ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Cofree[Option,Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Int ==>> String]
-
-org.scalacheck.Arbitrary[Int ==>> String]
-4 times = 38ms
-
-
-
-org.scalacheck.Arbitrary[Int ==>> String]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int ==>> String]->scalaz.Order[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int ==>> String]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Shrink[String]
-
-org.scalacheck.Shrink[String]
-1 times = 3ms
-
-
-
-org.scalacheck.Shrink[String]->Integral[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, scalaz.IList[Char])]->org.scalacheck.Arbitrary[scalaz.IList[Char]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, scalaz.IList[Char])]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-scala.reflect.ClassTag[(Char, scalaz.IList[Char])]
-
-scala.reflect.ClassTag[(Char, scalaz.IList[Char])]
-3 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(Char, scalaz.IList[Char])]->scala.reflect.ClassTag[(Char, scalaz.IList[Char])]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3,Double,(Double, Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3,Double,(Double, Char :: Float :: Long :: Double :: shapeless.HNil)]
-1 times = 12ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._4,Double,(Double, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3,Double,(Double, Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-scalaz.Equal[scalaz.IList[Char]]
-
-scalaz.Equal[scalaz.IList[Char]]
-8 times = 19ms
-
-
-
-scalaz.Equal[scalaz.IList[Char]]->scalaz.Order[Char]
-
-
-
-
-
-scalaz.Equal[scalaz.IList[Char]]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Compose[monocle.Fold]
-
-scalaz.Compose[monocle.Fold]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, Int)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(Boolean, Int)]
-
-scala.reflect.ClassTag[(Boolean, Int)]
-6 times = 11ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, Int)]->scala.reflect.ClassTag[(Boolean, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[List,Int]]->org.scalacheck.Arbitrary[List[Int]]
-
-
-
-
-
-scalaz.Equal[Stream[Stream[Int]]]->scalaz.Equal[Stream[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Init[shapeless.HNil]
-
-shapeless.ops.hlist.Init[shapeless.HNil]
-3 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Long]->scala.reflect.ClassTag[Long]
-
-
-
-
-
-scalaz.Order[A]
-
-scalaz.Order[A]
-1 times = 0ms
-
-
-
-monocle.function.Each[Map[Int,String],String]
-
-monocle.function.Each[Map[Int,String],String]
-1 times = 10ms
-
-
-
-shapeless.Generic.Aux[Map[Int,String],SGen]
-
-shapeless.Generic.Aux[Map[Int,String],SGen]
-1 times = 9ms
-
-
-
-monocle.function.Each[Map[Int,String],String]->shapeless.Generic.Aux[Map[Int,String],SGen]
-
-
-
-
-
-scalaz.Functor[F$macro$16]
-
-scalaz.Functor[F$macro$16]
-1 times = 0ms
-
-
-
-scalaz.Equal[(Int, Boolean)]
-
-scalaz.Equal[(Int, Boolean)]
-3 times = 12ms
-
-
-
-scalaz.Equal[(Int, Boolean)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[(Int, Boolean)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scala.collection.immutable.Stream[Int] => ?{def #:::: ?}
-
-scala.collection.immutable.Stream[Int] => ?{def #:::: ?}
-2 times = 0ms
-
-
-
-(=> Double) => Int
-
-(=> Double) => Int
-19 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.EmptyCaseType[Int]]
-
-org.scalacheck.Arbitrary[IsoSpec.this.EmptyCaseType[Int]]
-1 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.EmptyCaseType[Int]]->scala.reflect.ClassTag[IsoSpec.this.EmptyCaseType[Int]]
-
-
-
-
-
-scalaz.Equal[Either[Unit,Int]]
-
-scalaz.Equal[Either[Unit,Int]]
-3 times = 5ms
-
-
-
-scalaz.Equal[Either[Unit,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Either[Unit,Int]]->scalaz.Equal[Unit]
-
-
-
-
-
-scala.reflect.ClassTag[monocle.refined.UpperCaseChar => monocle.refined.UpperCaseChar]
-
-scala.reflect.ClassTag[monocle.refined.UpperCaseChar => monocle.refined.UpperCaseChar]
-1 times = 0ms
-
-
-
-scalaz.Equal[monocle.function.CNel]
-
-scalaz.Equal[monocle.function.CNel]
-2 times = 2ms
-
-
-
-shapeless.ops.coproduct.Inject[CoproductSpec.this.IB,Int]
-
-shapeless.ops.coproduct.Inject[CoproductSpec.this.IB,Int]
-1 times = 1ms
-
-
-
-org.scalacheck.util.Buildable[A,List[A]]->scala.collection.generic.CanBuildFrom[F,A,List[A]]
-
-
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)] => ?{def shouldEqual: ?}
-
-monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-Boolean => ?{def shouldEqual: ?}
-
-Boolean => ?{def shouldEqual: ?}
-46 times = 149ms
-
-
-
-Boolean => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Boolean => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,scala.util.Try[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,scala.util.Try[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Int,scala.util.Try[Int]]->scala.collection.generic.CanBuildFrom[F,Int,scala.util.Try[Int]]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Double,(Double, Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Double,(Double, Float :: Long :: Double :: shapeless.HNil)]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3,Double,(Double, Char :: Float :: Long :: Double :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Double,(Double, Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-scalaz.Functor[F$macro$5]
-
-scalaz.Functor[F$macro$5]
-1 times = 0ms
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Example]
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Example]
-3 times = 2ms
-
-
-
-scala.reflect.ClassTag[((List[Int], Int)) => (List[Int], Int)]
-
-scala.reflect.ClassTag[((List[Int], Int)) => (List[Int], Int)]
-1 times = 0ms
-
-
-
-Unit =:= Unit
-
-Unit =:= Unit
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Maybe[Int]]
-
-org.scalacheck.Arbitrary[scalaz.Maybe[Int]]
-5 times = 23ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Maybe[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Cogen[java.util.UUID]
-
-org.scalacheck.Cogen[java.util.UUID]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Double :: shapeless.HNil,Float :: Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Double :: shapeless.HNil,Float :: Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Long :: Double :: shapeless.HNil,Float :: Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]->shapeless.ops.hlist.Reverse.Reverse0[Float :: Long :: Double :: shapeless.HNil,Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(63)]]
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(63)]]
-1 times = 14ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(63)]]->shapeless.Witness.Aux[Int(63)]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(63)]]->shapeless.Witness.Aux[Int(0)]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(63)]]->org.scalacheck.Gen.Choose[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(63)]]->Numeric[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(63)]]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-shapeless.Generic.Aux[scalaz.Tree[Int],L1]
-
-shapeless.Generic.Aux[scalaz.Tree[Int],L1]
-1 times = 3ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.Tree[Int],scalaz.Tree[Int]]->shapeless.Generic.Aux[scalaz.Tree[Int],L1]
-
-
-
-
-
-monocle.function.Each[String :: String :: shapeless.HNil,String]->monocle.function.Each[String :: shapeless.HNil,String]
-
-
-
-
-
-shapeless.Generic.Aux[String :: String :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[String :: String :: shapeless.HNil,SGen]
-1 times = 1ms
-
-
-
-monocle.function.Each[String :: String :: shapeless.HNil,String]->shapeless.Generic.Aux[String :: String :: shapeless.HNil,SGen]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-(=> (Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-List[TraversalSpec.this.Location] => ?{def shouldEqual: ?}
-
-List[TraversalSpec.this.Location] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-List[TraversalSpec.this.Location] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-List[TraversalSpec.this.Location] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[(Int, Char),shapeless.nat._1.N,Char]
-
-shapeless.ops.hlist.At.Aux[(Int, Char),shapeless.nat._1.N,Char]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[B]->scala.reflect.ClassTag[B]
-
-
-
-
-
-monocle.function.Each[List[Char],Char]
-
-monocle.function.Each[List[Char],Char]
-1 times = 189ms
-
-
-
-shapeless.Generic.Aux[List[Char],SGen]
-
-shapeless.Generic.Aux[List[Char],SGen]
-1 times = 184ms
-
-
-
-monocle.function.Each[List[Char],Char]->shapeless.Generic.Aux[List[Char],SGen]
-
-
-
-
-
-org.scalacheck.Arbitrary[A \/ B]
-
-org.scalacheck.Arbitrary[A / B]
-1 times = 18ms
-
-
-
-org.scalacheck.Arbitrary[A \/ B]->org.scalacheck.Arbitrary[A]
-
-
-
-
-
-org.scalacheck.Arbitrary[A \/ B]->org.scalacheck.Arbitrary[B]
-
-
-
-
-
-scala.reflect.ClassTag[A \/ B]
-
-scala.reflect.ClassTag[A / B]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[A \/ B]->scala.reflect.ClassTag[A \/ B]
-
-
-
-
-
-scalaz.Equal[Int \/ String]
-
-scalaz.Equal[Int / String]
-1 times = 2ms
-
-
-
-scalaz.Equal[Int \/ String]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[Int \/ String]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[Int \/ String]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Int \/ String]->scalaz.Order[Int]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: shapeless.HNil,Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Long :: Double :: shapeless.HNil,Float :: Char :: Boolean :: Int :: shapeless.HNil,Out]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Vector[Int])]->org.scalacheck.Cogen[Vector[Int]]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Vector[Int])]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCaseType[Int],Unit] => monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCaseType[Int],_$1]
-
-monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCaseType[Int],Unit] => monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCaseType[Int],_$1]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.At[Double :: shapeless.HNil,shapeless._0]
-
-shapeless.ops.hlist.At[Double :: shapeless.HNil,shapeless._0]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[T[A]]
-
-org.scalacheck.Cogen[T[A]]
-2 times = 0ms
-
-
-
-scalaz.Equal[scalaz.Either3[String,Int,Char]]
-
-scalaz.Equal[scalaz.Either3[String,Int,Char]]
-3 times = 7ms
-
-
-
-scalaz.Equal[scalaz.Either3[String,Int,Char]]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[scalaz.Either3[String,Int,Char]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[scalaz.Either3[String,Int,Char]]->scalaz.Equal[Char]
-
-
-
-
-
-monocle.function.Index[String,Int,Char]
-
-monocle.function.Index[String,Int,Char]
-1 times = 0ms
-
-
-
-(Any => Nothing) => ((?A1, ?A2) => ?P)
-
-(Any => Nothing) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Vector[Int], Int)]->scala.reflect.ClassTag[(Vector[Int], Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Vector[Int], Int)]->org.scalacheck.Arbitrary[Vector[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Vector[Int], Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Equal[A5]
-
-scalaz.Equal[A5]
-1 times = 2ms
-
-
-
-scalaz.Equal[scala.util.Try[Int]]
-
-scalaz.Equal[scala.util.Try[Int]]
-4 times = 1ms
-
-
-
-scala.reflect.ClassTag[S]
-
-scala.reflect.ClassTag[S]
-2 times = 1ms
-
-
-
-monocle.function.Index[scalaz.OneAnd[List,Int],Int,Int]
-
-monocle.function.Index[scalaz.OneAnd[List,Int],Int,Int]
-1 times = 0ms
-
-
-
-monocle.function.Index[List[Int],Int,Int]
-
-monocle.function.Index[List[Int],Int,Int]
-2 times = 0ms
-
-
-
-monocle.function.Index[scalaz.OneAnd[List,Int],Int,Int]->monocle.function.Index[List[Int],Int,Int]
-
-
-
-
-
-monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCase,Unit] => monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCase,_$1]
-
-monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCase,Unit] => monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCase,_$1]
-1 times = 0ms
-
-
-
-scalaz.Functor[scalaz.Id.Id]
-
-scalaz.Functor[scalaz.Id.Id]
-2 times = 1ms
-
-
-
-monocle.function.Field5[HListSpec.this.H,Long]
-
-monocle.function.Field5[HListSpec.this.H,Long]
-1 times = 24ms
-
-
-
-monocle.function.Field5[HListSpec.this.H,Long]->shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._4.N,Long,(Long, HListSpec.this.H)]
-
-
-
-
-
-monocle.function.Field5[HListSpec.this.H,Long]->shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._4.N,Long]
-
-
-
-
-
-org.scalactic.Equality[Option[PrismSpec.this.IntOrString]]
-
-org.scalactic.Equality[Option[PrismSpec.this.IntOrString]]
-4 times = 15ms
-
-
-
-scalaz.Equal[Option[PrismSpec.this.IntOrString]]
-
-scalaz.Equal[Option[PrismSpec.this.IntOrString]]
-4 times = 10ms
-
-
-
-org.scalactic.Equality[Option[PrismSpec.this.IntOrString]]->scalaz.Equal[Option[PrismSpec.this.IntOrString]]
-
-
-
-
-
-scalaz.Equal[List[scala.collection.immutable.Stream[Int]]]
-
-scalaz.Equal[List[scala.collection.immutable.Stream[Int]]]
-1 times = 2ms
-
-
-
-scalaz.Equal[scala.collection.immutable.Stream[Int]]
-
-scalaz.Equal[scala.collection.immutable.Stream[Int]]
-1 times = 1ms
-
-
-
-scalaz.Equal[List[scala.collection.immutable.Stream[Int]]]->scalaz.Equal[scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-scalaz.Unzip[[β$0$]monocle.PLens[monocle.Point,monocle.Point,β$0$,β$0$]]
-
-scalaz.Unzip[[β$0$]monocle.PLens[monocle.Point,monocle.Point,β$0$,β$0$]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(7)]]
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(7)]]
-1 times = 25ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(7)]]->shapeless.Witness.Aux[Int(0)]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(7)]]->org.scalacheck.Gen.Choose[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(7)]]->Numeric[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(7)]]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-shapeless.Witness.Aux[Int(7)]
-
-shapeless.Witness.Aux[Int(7)]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.ZeroTo[Int(7)]]->shapeless.Witness.Aux[Int(7)]
-
-
-
-
-
-shapeless.ops.hlist.Prepend[Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]->shapeless.ops.hlist.Prepend[Long :: shapeless.HNil,Double :: shapeless.HNil]
-
-
-
-
-
-scalaz.Equal[(String, Int)]
-
-scalaz.Equal[(String, Int)]
-2 times = 6ms
-
-
-
-scalaz.Equal[(String, Int)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(String, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Boolean)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Boolean)]->scala.reflect.ClassTag[(Int, Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Boolean)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalactic.Equality[(Int, IsoSpec.this.IntWrapper)]
-
-org.scalactic.Equality[(Int, IsoSpec.this.IntWrapper)]
-1 times = 3ms
-
-
-
-org.scalactic.Equality[(Int, IsoSpec.this.IntWrapper)]->scalaz.Equal[(Int, IsoSpec.this.IntWrapper)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, monocle.Example)]
-
-org.scalacheck.Arbitrary[(Boolean, monocle.Example)]
-1 times = 18ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, monocle.Example)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, monocle.Example)]->org.scalacheck.Arbitrary[monocle.Example]
-
-
-
-
-
-scala.reflect.ClassTag[(Boolean, monocle.Example)]
-
-scala.reflect.ClassTag[(Boolean, monocle.Example)]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, monocle.Example)]->scala.reflect.ClassTag[(Boolean, monocle.Example)]
-
-
-
-
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCaseType[Int],Unit]) => monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCaseType[Int],_$1]
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCaseType[Int],Unit]) => monocle.Iso[MacroOutSideMonocleSpec.this.EmptyCaseType[Int],_$1]
-1 times = 0ms
-
-
-
-(=> (Any, Any) => Nothing) => (?A1 => ?P)
-
-(=> (Any, Any) => Nothing) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-shapeless.Generic.Aux[String,SGen]
-
-shapeless.Generic.Aux[String,SGen]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(String, String)]
-
-org.scalacheck.Arbitrary[(String, String)]
-1 times = 8ms
-
-
-
-org.scalacheck.Arbitrary[(String, String)]->scala.reflect.ClassTag[(String, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(String, String)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-monocle.Iso[MacroOutSideMonocleSpec.this.Example2Type[Int],(Int, Option[Int])] => monocle.Iso[MacroOutSideMonocleSpec.this.Example2Type[Int],_$1]
-
-monocle.Iso[MacroOutSideMonocleSpec.this.Example2Type[Int],(Int, Option[Int])] => monocle.Iso[MacroOutSideMonocleSpec.this.Example2Type[Int],_$1]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => org.scalacheck.Prop
-
-((Any, Any) => Nothing) => org.scalacheck.Prop
-1 times = 1ms
-
-
-
-monocle.function.Cons[String,Char]
-
-monocle.function.Cons[String,Char]
-1 times = 0ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-1 times = 10ms
-
-
-
-shapeless.Generic.Aux[scalaz.NonEmptyList[Int],L1]
-
-shapeless.Generic.Aux[scalaz.NonEmptyList[Int],L1]
-1 times = 6ms
-
-
-
-shapeless.ops.tuple.Reverse.Aux[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]->shapeless.Generic.Aux[scalaz.NonEmptyList[Int],L1]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Boolean)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[(Int, Boolean)]->org.scalacheck.Cogen[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[String \/ Int]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[String \/ Int]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)]]
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)]]
-1 times = 28ms
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)]]
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)]]
-1 times = 27ms
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)]]->scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Char]->scala.reflect.ClassTag[Char]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._1.N,Boolean,(Boolean, HListSpec.this.H)]->shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless._0,Boolean,(Boolean, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-org.scalacheck.Cogen[(String, Boolean)]
-
-org.scalacheck.Cogen[(String, Boolean)]
-1 times = 9ms
-
-
-
-org.scalacheck.Cogen[(String, Boolean)]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalacheck.Cogen[(String, Boolean)]->org.scalacheck.Cogen[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, HListSpec.this.HTail)) => (Int, HListSpec.this.HTail)]
-
-org.scalacheck.Arbitrary[((Int, HListSpec.this.HTail)) => (Int, HListSpec.this.HTail)]
-1 times = 19ms
-
-
-
-org.scalacheck.Arbitrary[((Int, HListSpec.this.HTail)) => (Int, HListSpec.this.HTail)]->org.scalacheck.Cogen[(Int, HListSpec.this.HTail)]
-
-
-
-
-
-scala.reflect.ClassTag[((Int, HListSpec.this.HTail)) => (Int, HListSpec.this.HTail)]
-
-scala.reflect.ClassTag[((Int, HListSpec.this.HTail)) => (Int, HListSpec.this.HTail)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Int, HListSpec.this.HTail)) => (Int, HListSpec.this.HTail)]->scala.reflect.ClassTag[((Int, HListSpec.this.HTail)) => (Int, HListSpec.this.HTail)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, HListSpec.this.HTail)]
-
-org.scalacheck.Arbitrary[(Int, HListSpec.this.HTail)]
-2 times = 18ms
-
-
-
-org.scalacheck.Arbitrary[((Int, HListSpec.this.HTail)) => (Int, HListSpec.this.HTail)]->org.scalacheck.Arbitrary[(Int, HListSpec.this.HTail)]
-
-
-
-
-
-xs.type => ?{def #::: ?}
-
-xs.type => ?{def #::: ?}
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Vector[Int] => Vector[Int]]
-
-org.scalacheck.Arbitrary[Vector[Int] => Vector[Int]]
-5 times = 58ms
-
-
-
-org.scalacheck.Arbitrary[Vector[Int] => Vector[Int]]->org.scalacheck.Cogen[Vector[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Vector[Int] => Vector[Int]]->scala.reflect.ClassTag[Vector[Int] => Vector[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Vector[Int] => Vector[Int]]->org.scalacheck.Arbitrary[Vector[Int]]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Long :: Double :: shapeless.HNil,shapeless.nat._1,Double,(Double, Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Long :: Double :: shapeless.HNil,shapeless.nat._1,Double,(Double, Long :: Double :: shapeless.HNil)]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Long :: Double :: shapeless.HNil,shapeless.nat._1,Double,(Double, Long :: Double :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Double :: shapeless.HNil,shapeless._0,Double,(Double, Double :: shapeless.HNil)]
-
-
-
-
-
-shapeless.ops.coproduct.Inject[CoproductSpec.this.IB,Boolean]
-
-shapeless.ops.coproduct.Inject[CoproductSpec.this.IB,Boolean]
-1 times = 2ms
-
-
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Boolean]
-
-shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Boolean]
-2 times = 0ms
-
-
-
-shapeless.ops.coproduct.Inject[CoproductSpec.this.IB,Boolean]->shapeless.ops.coproduct.Inject[Boolean :+: shapeless.CNil,Boolean]
-
-
-
-
-
-scalaz.Functor[F$macro$18]
-
-scalaz.Functor[F$macro$18]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Option[Nothing]]
-
-org.scalactic.Equality[Option[Nothing]]
-1 times = 112ms
-
-
-
-org.scalactic.Equality[Option[Nothing]]->scalaz.Equal[Option[Nothing]]
-
-
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IdWrapper[Int]]
-
-org.scalacheck.Arbitrary[IsoSpec.this.IdWrapper[Int]]
-1 times = 19ms
-
-
-
-scala.reflect.ClassTag[IsoSpec.this.IdWrapper[Int]]
-
-scala.reflect.ClassTag[IsoSpec.this.IdWrapper[Int]]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IdWrapper[Int]]->scala.reflect.ClassTag[IsoSpec.this.IdWrapper[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.IdWrapper[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[ProductSpec.this.Person]
-
-org.scalacheck.Arbitrary[ProductSpec.this.Person]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[((scalaz.IList[Char], Char)) => (scalaz.IList[Char], Char)]
-
-scala.reflect.ClassTag[((scalaz.IList[Char], Char)) => (scalaz.IList[Char], Char)]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(List[Int], Int)]
-
-org.scalacheck.Cogen[(List[Int], Int)]
-1 times = 6ms
-
-
-
-org.scalacheck.Cogen[(List[Int], Int)]->org.scalacheck.Cogen[List[Int]]
-
-
-
-
-
-org.scalacheck.Cogen[(List[Int], Int)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-scalaz.Equal[monocle.Nullary]
-
-scalaz.Equal[monocle.Nullary]
-2 times = 1ms
-
-
-
-monocle.Unary => ?{def shouldEqual: ?}
-
-monocle.Unary => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-monocle.Unary => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.Unary => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]]]->org.scalacheck.Arbitrary[scalaz.Cofree[Option,Int]]
-
-
-
-
-
-scala.reflect.ClassTag[Int \/ String => Int \/ String]
-
-scala.reflect.ClassTag[Int / String => Int / String]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Byte => Byte]
-
-org.scalacheck.Arbitrary[Byte => Byte]
-4 times = 37ms
-
-
-
-org.scalacheck.Arbitrary[Byte => Byte]->org.scalacheck.Cogen[Byte]
-
-
-
-
-
-org.scalacheck.Arbitrary[Byte => Byte]->org.scalacheck.Arbitrary[Byte]
-
-
-
-
-
-scala.reflect.ClassTag[Byte => Byte]
-
-scala.reflect.ClassTag[Byte => Byte]
-4 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[Byte => Byte]->scala.reflect.ClassTag[Byte => Byte]
-
-
-
-
-
-scalaz.Equal[List[List[Int]]]->scalaz.Order[List[Int]]
-
-
-
-
-
-scalaz.Equal[List[List[Int]]]->scalaz.Equal[List[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[Unit,Int]]
-
-org.scalacheck.Arbitrary[Either[Unit,Int]]
-3 times = 53ms
-
-
-
-org.scalacheck.Arbitrary[Either[Unit,Int]]->org.scalacheck.util.Buildable[(Unit, Int),Either[Unit,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Unit, Int)]
-
-org.scalacheck.Arbitrary[(Unit, Int)]
-1 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[Either[Unit,Int]]->org.scalacheck.Arbitrary[(Unit, Int)]
-
-
-
-
-
-scala.reflect.ClassTag[Either[Unit,Int]]
-
-scala.reflect.ClassTag[Either[Unit,Int]]
-3 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[Either[Unit,Int]]->scala.reflect.ClassTag[Either[Unit,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[Unit,Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[Unit,Int]]->org.scalacheck.Arbitrary[Unit]
-
-
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.EmptyCaseType[Int]]
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.EmptyCaseType[Int]]
-2 times = 7ms
-
-
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.EmptyCaseType[Int]]
-
-scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.EmptyCaseType[Int]]
-2 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.EmptyCaseType[Int]]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.EmptyCaseType[Int]]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-1 times = 18ms
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]->monocle.function.Each[Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]->shapeless.Generic.Aux[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,SGen]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._2.N,Char]->shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]
-
-
-
-
-
-scalaz.Foldable[List]
-
-scalaz.Foldable[List]
-2 times = 9ms
-
-
-
-monocle.function.Each[scalaz.Tree[Int],Int]
-
-monocle.function.Each[scalaz.Tree[Int],Int]
-1 times = 5ms
-
-
-
-monocle.function.Each[scalaz.Tree[Int],Int]->shapeless.Generic.Aux[scalaz.Tree[Int],SGen]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.Example]->scala.reflect.ClassTag[monocle.Example]
-
-
-
-
-
-scalaz.Unzip[[β$0$]monocle.PTraversal[List[(Int, String)],List[(Int, String)],β$0$,β$0$]]
-
-scalaz.Unzip[[β$0$]monocle.PTraversal[List[(Int, String)],List[(Int, String)],β$0$,β$0$]]
-1 times = 0ms
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit]]->scalaz.Equal[monocle.Arities => Option[Unit]]
-
-
-
-
-
-scalaz.Equal[Unit => monocle.Arities]
-
-scalaz.Equal[Unit => monocle.Arities]
-1 times = 8ms
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Unit,Unit]]->scalaz.Equal[Unit => monocle.Arities]
-
-
-
-
-
-monocle.function.Field3[(Int, Char, Boolean, String, Long, Float),Boolean]
-
-monocle.function.Field3[(Int, Char, Boolean, String, Long, Float),Boolean]
-1 times = 2ms
-
-
-
-monocle.function.Field3[(Int, Char, Boolean, String, Long, Float),Boolean]->shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._2.N,Boolean]
-
-
-
-
-
-scalaz.Equal[HListSpec.this.Example]
-
-scalaz.Equal[HListSpec.this.Example]
-2 times = 0ms
-
-
-
-scalaz.Equal[HListSpec.this.HTail]
-
-scalaz.Equal[HListSpec.this.HTail]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[((Int,)) => (Int,)]
-
-scala.reflect.ClassTag[((Int,)) => (Int,)]
-1 times = 0ms
-
-
-
-scalaz.Equal[scalaz.Tree[Int]]
-
-scalaz.Equal[scalaz.Tree[Int]]
-11 times = 9ms
-
-
-
-scalaz.Equal[scalaz.Tree[Int]]->scalaz.Order[Int]
-
-
-
-
-
-(Any => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-
-(Any => Nothing) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(String, Int),Either[String,Int]]
-
-org.scalacheck.util.Buildable[(String, Int),Either[String,Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.util.Buildable[(String, Int),Either[String,Int]]->scala.collection.generic.CanBuildFrom[F,(String, Int),Either[String,Int]]
-
-
-
-
-
-List[(Int, String)] => ?{def shouldEqual: ?}
-
-List[(Int, String)] => ?{def shouldEqual: ?}
-2 times = 3ms
-
-
-
-List[(Int, String)] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-List[(Int, String)] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.Tree[Int],scalaz.Tree[Int]]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.Tree[Int],scalaz.Tree[Int]]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.HNil,Out]
-1 times = 0ms
-
-
-
-Map[K,V] => Traversable[(K, V)]
-
-Map[K,V] => Traversable[(K, V)]
-1 times = 1ms
-
-
-
-scalaz.Equal[Throwable]
-
-scalaz.Equal[Throwable]
-1 times = 0ms
-
-
-
-monocle.function.Each[String,Char]
-
-monocle.function.Each[String,Char]
-1 times = 3ms
-
-
-
-monocle.function.Each[String,Char]->shapeless.Generic.Aux[String,SGen]
-
-
-
-
-
-monocle.function.Index[Map[K,V],K,V]
-
-monocle.function.Index[Map[K,V],K,V]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int] => scalaz.IList[Int]]
-
-org.scalacheck.Arbitrary[scalaz.IList[Int] => scalaz.IList[Int]]
-2 times = 17ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int] => scalaz.IList[Int]]->scala.reflect.ClassTag[scalaz.IList[Int] => scalaz.IList[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int] => scalaz.IList[Int]]->org.scalacheck.Cogen[scalaz.IList[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int] => scalaz.IList[Int]]->org.scalacheck.Arbitrary[scalaz.IList[Int]]
-
-
-
-
-
-monocle.function.Each[Unit \/ Int,Int]
-
-monocle.function.Each[Unit / Int,Int]
-1 times = 14ms
-
-
-
-monocle.function.Each[Unit \/ Int,Int]->shapeless.Generic.Aux[Unit \/ Int,SGen]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]->shapeless.Generic.Aux[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,SGen]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]->monocle.function.Each[Int :: Int :: Int :: Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-scalaz.Equal[Boolean \/ IsoSpec.this.IntWrapper]
-
-scalaz.Equal[Boolean / IsoSpec.this.IntWrapper]
-1 times = 8ms
-
-
-
-scalaz.Equal[Boolean \/ IsoSpec.this.IntWrapper]->scalaz.Order[Boolean]
-
-
-
-
-
-scalaz.Equal[Boolean \/ IsoSpec.this.IntWrapper]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[Boolean \/ IsoSpec.this.IntWrapper]->scalaz.Equal[IsoSpec.this.IntWrapper]
-
-
-
-
-
-scalaz.Equal[Boolean \/ IsoSpec.this.IntWrapper]->scalaz.Order[IsoSpec.this.IntWrapper]
-
-
-
-
-
-scalaz.Compose[monocle.Iso]
-
-scalaz.Compose[monocle.Iso]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.ReverseH => HListSpec.this.ReverseH]
-
-org.scalacheck.Arbitrary[HListSpec.this.ReverseH => HListSpec.this.ReverseH]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.ReverseH => HListSpec.this.ReverseH]->org.scalacheck.Cogen[HListSpec.this.ReverseH]
-
-
-
-
-
-scala.reflect.ClassTag[HListSpec.this.ReverseH => HListSpec.this.ReverseH]
-
-scala.reflect.ClassTag[HListSpec.this.ReverseH => HListSpec.this.ReverseH]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.ReverseH => HListSpec.this.ReverseH]->scala.reflect.ClassTag[HListSpec.this.ReverseH => HListSpec.this.ReverseH]
-
-
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.ReverseH]
-
-org.scalacheck.Arbitrary[HListSpec.this.ReverseH]
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.ReverseH => HListSpec.this.ReverseH]->org.scalacheck.Arbitrary[HListSpec.this.ReverseH]
-
-
-
-
-
-org.scalacheck.Cogen[Option[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.NonEmptyList[Int]]]
-
-org.scalacheck.Arbitrary[Option[scalaz.NonEmptyList[Int]]]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[Option[scalaz.NonEmptyList[Int]]]->org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int]]
-
-
-
-
-
-scalaz.Unzip[[β$0$]monocle.Fold[List[(Int, String)],β$0$]]
-
-scalaz.Unzip[[β$0$]monocle.Fold[List[(Int, String)],β$0$]]
-1 times = 10ms
-
-
-
-h.type => ?{def init: ?}
-
-h.type => ?{def init: ?}
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$11]
-
-scalaz.Functor[F$macro$11]
-1 times = 0ms
-
-
-
-monocle.function.Field1[(Boolean, Char, Int, Long, Float, Double),Boolean]
-
-monocle.function.Field1[(Boolean, Char, Int, Long, Float, Double),Boolean]
-1 times = 7ms
-
-
-
-monocle.function.Field1[(Boolean, Char, Int, Long, Float, Double),Boolean]->shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._0.N,Boolean]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._2.N,Char,(Char, HListSpec.this.H)]->shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Char,(Char, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-scalaz.Equal[Unit => monocle.Nullary]
-
-scalaz.Equal[Unit => monocle.Nullary]
-1 times = 8ms
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Nullary,Unit]]->scalaz.Equal[Unit => monocle.Nullary]
-
-
-
-
-
-scalaz.Equal[monocle.Nullary => Unit]
-
-scalaz.Equal[monocle.Nullary => Unit]
-1 times = 8ms
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Nullary,Unit]]->scalaz.Equal[monocle.Nullary => Unit]
-
-
-
-
-
-monocle.function.Reverse[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-
-monocle.function.Reverse[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-1 times = 16ms
-
-
-
-monocle.function.Reverse[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]->shapeless.ops.tuple.Reverse.Aux[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-1 times = 3ms
-
-
-
-monocle.function.Reverse[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]->shapeless.ops.hlist.Reverse.Aux[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[Boolean \/ Int]
-
-scala.reflect.ClassTag[Boolean / Int]
-2 times = 2ms
-
-
-
-scalaz.Equal[java.net.URL]
-
-scalaz.Equal[java.net.URL]
-1 times = 1ms
-
-
-
-org.scalacheck.Cogen[String \/ Int]
-
-org.scalacheck.Cogen[String / Int]
-1 times = 4ms
-
-
-
-org.scalacheck.Cogen[String \/ Int]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[String \/ Int]->org.scalacheck.Cogen[String]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Int :: shapeless.HNil,Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Int :: shapeless.HNil,Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Char :: Boolean :: Int :: shapeless.HNil,Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Char :: Boolean :: Int :: shapeless.HNil,Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Int :: shapeless.HNil,Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]->shapeless.ops.hlist.Reverse.Reverse0[Float :: Char :: Boolean :: Int :: shapeless.HNil,Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-
-
-
-
-
-scalaz.Equal[String \/ Int \/ Boolean]
-
-scalaz.Equal[String / Int / Boolean]
-1 times = 10ms
-
-
-
-scalaz.Equal[String \/ Int \/ Boolean]->scalaz.Equal[String \/ Int]
-
-
-
-
-
-scalaz.Equal[String \/ Int \/ Boolean]->scalaz.Order[String \/ Int]
-
-
-
-
-
-scalaz.Equal[String \/ Int \/ Boolean]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[HListSpec.this.H]
-
-scalaz.Equal[HListSpec.this.H]
-10 times = 4ms
-
-
-
-monocle.function.Field3[(Boolean, Char, Int, Long, Float, Double),Int]
-
-monocle.function.Field3[(Boolean, Char, Int, Long, Float, Double),Int]
-1 times = 3ms
-
-
-
-monocle.function.Field3[(Boolean, Char, Int, Long, Float, Double),Int]->shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._2.N,Int]
-
-
-
-
-
-(=> (Nothing, Nothing, Nothing)) => String
-
-(=> (Nothing, Nothing, Nothing)) => String
-1 times = 0ms
-
-
-
-scalaz.Equal[monocle.refined.LowerCaseChar]
-
-scalaz.Equal[monocle.refined.LowerCaseChar]
-1 times = 0ms
-
-
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(Char, String)]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, String)]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String)]->scala.reflect.ClassTag[(Boolean, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-scalaz.Compose[monocle.Optional]
-
-scalaz.Compose[monocle.Optional]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int,)]
-
-org.scalacheck.Arbitrary[(Int,)]
-5 times = 17ms
-
-
-
-org.scalacheck.Arbitrary[(Int,)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.util.Buildable[(K, V),Map[K,V]]
-
-org.scalacheck.util.Buildable[(K, V),Map[K,V]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[F,(K, V),Map[K,V]]
-
-scala.collection.generic.CanBuildFrom[F,(K, V),Map[K,V]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[(K, V),Map[K,V]]->scala.collection.generic.CanBuildFrom[F,(K, V),Map[K,V]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: Char :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Char :: shapeless.HNil,Out]
-
-
-
-
-
-t.type => ?{def #::: ?}
-
-t.type => ?{def #::: ?}
-1 times = 0ms
-
-
-
-scalaz.Order[(Int, String)]
-
-scalaz.Order[(Int, String)]
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Int, Char, Boolean, String, Long)]
-
-scala.reflect.ClassTag[(Int, Char, Boolean, String, Long)]
-3 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[String \/ Int \/ Boolean]
-
-org.scalacheck.Arbitrary[String / Int / Boolean]
-1 times = 18ms
-
-
-
-org.scalacheck.Arbitrary[String \/ Int \/ Boolean]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[String \/ Int \/ Boolean]->org.scalacheck.Arbitrary[String \/ Int]
-
-
-
-
-
-((Any, Any) => Nothing) => (?A1 => ?P)
-
-((Any, Any) => Nothing) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Char, monocle.function.CList)]
-
-org.scalacheck.Arbitrary[(Char, monocle.function.CList)]
-1 times = 16ms
-
-
-
-org.scalacheck.Arbitrary[(Char, monocle.function.CList)]->org.scalacheck.Arbitrary[monocle.function.CList]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, monocle.function.CList)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-scala.reflect.ClassTag[(Char, monocle.function.CList)]
-
-scala.reflect.ClassTag[(Char, monocle.function.CList)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Char, monocle.function.CList)]->scala.reflect.ClassTag[(Char, monocle.function.CList)]
-
-
-
-
-
-scala.reflect.ClassTag[List[Int]]
-
-scala.reflect.ClassTag[List[Int]]
-32 times = 25ms
-
-
-
-scalaz.Monoid[String]
-
-scalaz.Monoid[String]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[Float]
-
-org.scalacheck.Arbitrary[Float]
-24 times = 77ms
-
-
-
-org.scalacheck.Arbitrary[Float]->scala.reflect.ClassTag[Float]
-
-
-
-
-
-org.scalacheck.Cogen[(A, T[A])]
-
-org.scalacheck.Cogen[(A, T[A])]
-2 times = 9ms
-
-
-
-org.scalacheck.Cogen[(A, T[A])]->org.scalacheck.Cogen[A]
-
-
-
-
-
-org.scalacheck.Cogen[(A, T[A])]->org.scalacheck.Cogen[T[A]]
-
-
-
-
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]->shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]
-
-
-
-
-
-shapeless.ops.hlist.Last[Long :: Double :: shapeless.HNil]->shapeless.ops.hlist.Last[Double :: shapeless.HNil]
-
-
-
-
-
-monocle.function.Each[Option[Int],Int]
-
-monocle.function.Each[Option[Int],Int]
-1 times = 12ms
-
-
-
-shapeless.Generic.Aux[Option[Int],SGen]
-
-shapeless.Generic.Aux[Option[Int],SGen]
-1 times = 11ms
-
-
-
-monocle.function.Each[Option[Int],Int]->shapeless.Generic.Aux[Option[Int],SGen]
-
-
-
-
-
-org.scalactic.Equality[HListSpec.this.Example]
-
-org.scalactic.Equality[HListSpec.this.Example]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[HListSpec.this.Example]->scalaz.Equal[HListSpec.this.Example]
-
-
-
-
-
-org.scalactic.Equality[(Int, String)]
-
-org.scalactic.Equality[(Int, String)]
-2 times = 17ms
-
-
-
-org.scalactic.Equality[(Int, String)]->scalaz.Equal[(Int, String)]
-
-
-
-
-
-monocle.function.Index[Vector[Int],Int,Int]
-
-monocle.function.Index[Vector[Int],Int,Int]
-1 times = 0ms
-
-
-
-scalaz.Equal[scalaz.NonEmptyList[Int]]
-
-scalaz.Equal[scalaz.NonEmptyList[Int]]
-8 times = 8ms
-
-
-
-scalaz.Equal[scalaz.NonEmptyList[Int]]->scalaz.Order[Int]
-
-
-
-
-
-org.scalactic.Equality[List[scala.collection.immutable.Stream[Int]]]
-
-org.scalactic.Equality[List[scala.collection.immutable.Stream[Int]]]
-1 times = 3ms
-
-
-
-org.scalactic.Equality[List[scala.collection.immutable.Stream[Int]]]->scalaz.Equal[List[scala.collection.immutable.Stream[Int]]]
-
-
-
-
-
-scalaz.Unzip[[β$0$]monocle.POptional[List[(Int, String)],List[(Int, String)],β$0$,β$0$]]
-
-scalaz.Unzip[[β$0$]monocle.POptional[List[(Int, String)],List[(Int, String)],β$0$,β$0$]]
-1 times = 0ms
-
-
-
-monocle.function.Field4[HListSpec.this.H,Float]
-
-monocle.function.Field4[HListSpec.this.H,Float]
-1 times = 18ms
-
-
-
-monocle.function.Field4[HListSpec.this.H,Float]->shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._3.N,Float]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._3.N,Float,(Float, HListSpec.this.H)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._3.N,Float,(Float, HListSpec.this.H)]
-1 times = 11ms
-
-
-
-monocle.function.Field4[HListSpec.this.H,Float]->shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._3.N,Float,(Float, HListSpec.this.H)]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,Stream[Int]]
-
-scala.collection.generic.CanBuildFrom[F,Int,Stream[Int]]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Int,Stream[Int]]->scala.collection.generic.CanBuildFrom[F,Int,Stream[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.NonEmptyList[Int],scalaz.NonEmptyList[Int]]
-
-
-
-
-
-shapeless.ops.hlist.Last.Aux[HListSpec.this.H,Double]->shapeless.ops.hlist.Last[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)]->org.scalacheck.Arbitrary[Double]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(Char, Boolean, String, Int, Double)]
-
-scala.reflect.ClassTag[(Char, Boolean, String, Int, Double)]
-3 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)]->scala.reflect.ClassTag[(Char, Boolean, String, Int, Double)]
-
-
-
-
-
-scalaz.Functor[F$macro$4]
-
-scalaz.Functor[F$macro$4]
-1 times = 0ms
-
-
-
-Int(3) => ?{def ->: ?}
-
-Int(3) => ?{def ->: ?}
-2 times = 1ms
-
-
-
-org.scalacheck.Cogen[scalaz.IList[A]]
-
-org.scalacheck.Cogen[scalaz.IList[A]]
-2 times = 1ms
-
-
-
-org.scalacheck.Cogen[scalaz.IList[A]]->org.scalacheck.Cogen[A]
-
-
-
-
-
-scalaz.Equal[HListSpec.this.ReverseH]
-
-scalaz.Equal[HListSpec.this.ReverseH]
-1 times = 0ms
-
-
-
-scalaz.Equal[Int \/ Boolean]
-
-scalaz.Equal[Int / Boolean]
-2 times = 12ms
-
-
-
-scalaz.Equal[Int \/ Boolean]->scalaz.Order[Boolean]
-
-
-
-
-
-scalaz.Equal[Int \/ Boolean]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Int \/ Boolean]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[Int \/ Boolean]->scalaz.Order[Int]
-
-
-
-
-
-a1.type => ?{def ::: ?}
-
-a1.type => ?{def ::: ?}
-1 times = 0ms
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Foo]
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Foo]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[scalaz.IList[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int \/ String => Int \/ String]
-
-org.scalacheck.Arbitrary[Int / String => Int / String]
-1 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[Int \/ String => Int \/ String]->org.scalacheck.Arbitrary[Int \/ String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int \/ String => Int \/ String]->scala.reflect.ClassTag[Int \/ String => Int \/ String]
-
-
-
-
-
-org.scalacheck.Cogen[Int \/ String]
-
-org.scalacheck.Cogen[Int / String]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[Int \/ String => Int \/ String]->org.scalacheck.Cogen[Int \/ String]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: shapeless.HNil,Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: shapeless.HNil,Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Double :: shapeless.HNil,Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]->shapeless.ops.hlist.Reverse.Reverse0[Long :: Double :: shapeless.HNil,Float :: Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-
-
-
-
-
-Int => ?{def ->: ?}
-
-Int => ?{def ->: ?}
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Char)) => (Int, Char)]
-
-org.scalacheck.Arbitrary[((Int, Char)) => (Int, Char)]
-2 times = 33ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Char)) => (Int, Char)]->org.scalacheck.Cogen[(Int, Char)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, Char)) => (Int, Char)]->org.scalacheck.Arbitrary[(Int, Char)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, Char)) => (Int, Char)]->scala.reflect.ClassTag[((Int, Char)) => (Int, Char)]
-
-
-
-
-
-monocle.function.Reverse[(Int, Char),(Char, Int)]
-
-monocle.function.Reverse[(Int, Char),(Char, Int)]
-1 times = 32ms
-
-
-
-monocle.function.Reverse[(Int, Char),(Char, Int)]->shapeless.ops.tuple.Reverse.Aux[(Char, Int),(Int, Char)]
-
-
-
-
-
-monocle.function.Reverse[(Int, Char),(Char, Int)]->shapeless.ops.hlist.Reverse.Aux[(Int, Char),(Char, Int)]
-
-
-
-
-
-monocle.function.Reverse[(Int, Char),(Char, Int)]->shapeless.ops.tuple.Reverse.Aux[(Int, Char),(Char, Int)]
-
-
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.Cofree[Option,Int],Int,Option[scalaz.Cofree[Option,Int]]]
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.Cofree[Option,Int],Int,Option[scalaz.Cofree[Option,Int]]]
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => String
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => String
-1 times = 0ms
-
-
-
-Int =:= Int
-
-Int =:= Int
-1 times = 0ms
-
-
-
-scalaz.Unapply[scalaz.Applicative,org.scalacheck.Gen[scalaz.Tree[A]]]
-
-scalaz.Unapply[scalaz.Applicative,org.scalacheck.Gen[scalaz.Tree[A]]]
-1 times = 16ms
-
-
-
-scalaz.Unapply[scalaz.Applicative,org.scalacheck.Gen[scalaz.Tree[A]]]->scalaz.Applicative[org.scalacheck.Gen]
-
-
-
-
-
-monocle.function.Each[(Int, Int),Int]
-
-monocle.function.Each[(Int, Int),Int]
-1 times = 21ms
-
-
-
-shapeless.Generic.Aux[(Int, Int),SGen]
-
-shapeless.Generic.Aux[(Int, Int),SGen]
-1 times = 9ms
-
-
-
-monocle.function.Each[(Int, Int),Int]->shapeless.Generic.Aux[(Int, Int),SGen]
-
-
-
-
-
-monocle.function.Each[(Int, Int),Int]->monocle.function.Each[Int :: Int :: shapeless.HNil,Int]
-
-
-
-
-
-scalaz.Compose[monocle.Prism]
-
-scalaz.Compose[monocle.Prism]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Map[Int,String] => Traversable[(Int, String)]
-
-scala.collection.immutable.Map[Int,String] => Traversable[(Int, String)]
-1 times = 0ms
-
-
-
-monocle.function.Possible[Option[Int],Int]
-
-monocle.function.Possible[Option[Int],Int]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-(=> Any => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-(=> Any => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Prepend.Aux[HListSpec.this.HInit,Double :: shapeless.HNil,HListSpec.this.H]->shapeless.ops.hlist.Prepend[Boolean :: Char :: Float :: Long :: shapeless.HNil,Double :: shapeless.HNil]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[(K, V)]]
-
-org.scalacheck.Arbitrary[List[(K, V)]]
-1 times = 481ms
-
-
-
-org.scalacheck.Arbitrary[List[(K, V)]]->List[(K, V)] => Traversable[(K, V)]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[(K, V)]]->scala.reflect.ClassTag[List[(K, V)]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[(K, V)]]->org.scalacheck.Arbitrary[(K, V)]
-
-
-
-
-
-org.scalacheck.util.Buildable[(K, V),List[(K, V)]]
-
-org.scalacheck.util.Buildable[(K, V),List[(K, V)]]
-1 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[List[(K, V)]]->org.scalacheck.util.Buildable[(K, V),List[(K, V)]]
-
-
-
-
-
-scalaz.Equal[scalaz.Id.Id[Int]]
-
-scalaz.Equal[scalaz.Id.Id[Int]]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Float => Float]
-
-org.scalacheck.Arbitrary[Float => Float]
-5 times = 46ms
-
-
-
-org.scalacheck.Arbitrary[Float => Float]->org.scalacheck.Cogen[Float]
-
-
-
-
-
-org.scalacheck.Arbitrary[Float => Float]->org.scalacheck.Arbitrary[Float]
-
-
-
-
-
-scala.reflect.ClassTag[Float => Float]
-
-scala.reflect.ClassTag[Float => Float]
-5 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[Float => Float]->scala.reflect.ClassTag[Float => Float]
-
-
-
-
-
-scalaz.Equal[java.net.URI]
-
-scalaz.Equal[java.net.URI]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[(Int, String)]
-
-org.scalacheck.Shrink[(Int, String)]
-1 times = 11ms
-
-
-
-org.scalacheck.Shrink[(Int, String)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-org.scalacheck.Shrink[(Int, String)]->org.scalacheck.Shrink[String]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: shapeless.HNil,Out0]
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: shapeless.HNil,Out0]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-scalaz.Equal[(String, Boolean)]
-
-scalaz.Equal[(String, Boolean)]
-1 times = 3ms
-
-
-
-scalaz.Equal[(String, Boolean)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(String, Boolean)]->scalaz.Equal[Boolean]
-
-
-
-
-
-(=> (Any, Any, Any) => Nothing) => org.scalacheck.Prop
-
-(=> (Any, Any, Any) => Nothing) => org.scalacheck.Prop
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[TraversalSpec.this.ManyPropObject]
-
-org.scalacheck.Arbitrary[TraversalSpec.this.ManyPropObject]
-2 times = 0ms
-
-
-
-shapeless.Generic.Aux[List[Int] :: shapeless.HNil,SGen]
-
-shapeless.Generic.Aux[List[Int] :: shapeless.HNil,SGen]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[Int]
-
-org.scalactic.Equality[Int]
-28 times = 90ms
-
-
-
-org.scalactic.Equality[Int]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.function.Reverse[Stream[Int],Stream[Int]]
-
-monocle.function.Reverse[Stream[Int],Stream[Int]]
-1 times = 27ms
-
-
-
-monocle.function.Reverse[Stream[Int],Stream[Int]]->shapeless.ops.hlist.Reverse.Aux[Stream[Int],Stream[Int]]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[Stream[Int],Stream[Int]]
-
-shapeless.ops.tuple.Reverse.Aux[Stream[Int],Stream[Int]]
-1 times = 23ms
-
-
-
-monocle.function.Reverse[Stream[Int],Stream[Int]]->shapeless.ops.tuple.Reverse.Aux[Stream[Int],Stream[Int]]
-
-
-
-
-
-monocle.function.Field4[(Int, Char, Boolean, String, Long, Float),String]
-
-monocle.function.Field4[(Int, Char, Boolean, String, Long, Float),String]
-1 times = 3ms
-
-
-
-monocle.function.Field4[(Int, Char, Boolean, String, Long, Float),String]->shapeless.ops.hlist.At.Aux[(Int, Char, Boolean, String, Long, Float),shapeless.nat._3.N,String]
-
-
-
-
-
-monocle.function.Cons1[scalaz.NonEmptyList[Char],Char,scalaz.IList[Char]]
-
-monocle.function.Cons1[scalaz.NonEmptyList[Char],Char,scalaz.IList[Char]]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.NonEmptyList[Char],Char,scalaz.IList[Char]]
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.NonEmptyList[Char],Char,scalaz.IList[Char]]
-1 times = 4ms
-
-
-
-monocle.function.Cons1[scalaz.NonEmptyList[Char],Char,scalaz.IList[Char]]->shapeless.ops.hlist.IsHCons.Aux[scalaz.NonEmptyList[Char],Char,scalaz.IList[Char]]
-
-
-
-
-
-org.scalacheck.Cogen[(A, scalaz.IList[A])]
-
-org.scalacheck.Cogen[(A, scalaz.IList[A])]
-2 times = 11ms
-
-
-
-org.scalacheck.Cogen[(A, scalaz.IList[A])]->org.scalacheck.Cogen[A]
-
-
-
-
-
-org.scalacheck.Cogen[(A, scalaz.IList[A])]->org.scalacheck.Cogen[scalaz.IList[A]]
-
-
-
-
-
-scalaz.Equal[List[Unit]]
-
-scalaz.Equal[List[Unit]]
-2 times = 9ms
-
-
-
-scalaz.Equal[List[Unit]]->scalaz.Equal[Unit]
-
-
-
-
-
-scalaz.Equal[List[Unit]]->scalaz.Order[Unit]
-
-
-
-
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._0.N,Int]
-
-shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._0.N,Int]
-1 times = 1ms
-
-
-
-(=> xs.type) => ?{def #::: ?}
-
-(=> xs.type) => ?{def #::: ?}
-2 times = 1ms
-
-
-
-shapeless.Witness.Aux[String('hello')]
-
-shapeless.Witness.Aux[String('hello')]
-3 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int]->scala.reflect.ClassTag[Boolean \/ Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ Int]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Equal[Unit \/ Int]
-
-scalaz.Equal[Unit / Int]
-4 times = 9ms
-
-
-
-scalaz.Equal[Unit \/ Int]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Unit \/ Int]->scalaz.Equal[Unit]
-
-
-
-
-
-scalaz.Equal[Unit \/ Int]->scalaz.Order[Unit]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[HListSpec.this.H,HListSpec.this.ReverseH]->shapeless.Generic.Aux[HListSpec.this.H,L1]
-
-
-
-
-
-Option[Int] =:= Option[Int]
-
-Option[Int] =:= Option[Int]
-1 times = 0ms
-
-
-
-monocle.function.Field1[HListSpec.this.H,Int]
-
-monocle.function.Field1[HListSpec.this.H,Int]
-1 times = 4ms
-
-
-
-monocle.function.Field1[HListSpec.this.H,Int]->shapeless.ops.hlist.At.Aux[HListSpec.this.H,shapeless.nat._0.N,Int]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._0.N,Int,(Int, HListSpec.this.H)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._0.N,Int,(Int, HListSpec.this.H)]
-1 times = 1ms
-
-
-
-monocle.function.Field1[HListSpec.this.H,Int]->shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._0.N,Int,(Int, HListSpec.this.H)]
-
-
-
-
-
-x$5.type => ?{def tupled: ?}
-
-x$5.type => ?{def tupled: ?}
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String \/ Int)]
-
-org.scalacheck.Arbitrary[(Boolean, String / Int)]
-1 times = 19ms
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String \/ Int)]->scala.reflect.ClassTag[(Boolean, String \/ Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String \/ Int)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Boolean, String \/ Int)]->org.scalacheck.Arbitrary[String \/ Int]
-
-
-
-
-
-monocle.function.Cons[monocle.function.CList,Char]
-
-monocle.function.Cons[monocle.function.CList,Char]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((HListSpec.this.HInit, Double)) => (HListSpec.this.HInit, Double)]
-
-org.scalacheck.Arbitrary[((HListSpec.this.HInit, Double)) => (HListSpec.this.HInit, Double)]
-1 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[((HListSpec.this.HInit, Double)) => (HListSpec.this.HInit, Double)]->org.scalacheck.Arbitrary[(HListSpec.this.HInit, Double)]
-
-
-
-
-
-org.scalacheck.Cogen[(HListSpec.this.HInit, Double)]
-
-org.scalacheck.Cogen[(HListSpec.this.HInit, Double)]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[((HListSpec.this.HInit, Double)) => (HListSpec.this.HInit, Double)]->org.scalacheck.Cogen[(HListSpec.this.HInit, Double)]
-
-
-
-
-
-scala.reflect.ClassTag[((HListSpec.this.HInit, Double)) => (HListSpec.this.HInit, Double)]
-
-scala.reflect.ClassTag[((HListSpec.this.HInit, Double)) => (HListSpec.this.HInit, Double)]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[((HListSpec.this.HInit, Double)) => (HListSpec.this.HInit, Double)]->scala.reflect.ClassTag[((HListSpec.this.HInit, Double)) => (HListSpec.this.HInit, Double)]
-
-
-
-
-
-org.scalacheck.util.Buildable[(A, B),Either[A,B]]->scala.collection.generic.CanBuildFrom[F,(A, B),Either[A,B]]
-
-
-
-
-
-org.scalacheck.Arbitrary[((scalaz.IList[Char], Char)) => (scalaz.IList[Char], Char)]
-
-org.scalacheck.Arbitrary[((scalaz.IList[Char], Char)) => (scalaz.IList[Char], Char)]
-1 times = 26ms
-
-
-
-org.scalacheck.Arbitrary[((scalaz.IList[Char], Char)) => (scalaz.IList[Char], Char)]->org.scalacheck.Cogen[(scalaz.IList[Char], Char)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((scalaz.IList[Char], Char)) => (scalaz.IList[Char], Char)]->scala.reflect.ClassTag[((scalaz.IList[Char], Char)) => (scalaz.IList[Char], Char)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(scalaz.IList[Char], Char)]
-
-org.scalacheck.Arbitrary[(scalaz.IList[Char], Char)]
-1 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[((scalaz.IList[Char], Char)) => (scalaz.IList[Char], Char)]->org.scalacheck.Arbitrary[(scalaz.IList[Char], Char)]
-
-
-
-
-
-monocle.function.Index[scalaz.NonEmptyList[Int],Int,Int]
-
-monocle.function.Index[scalaz.NonEmptyList[Int],Int,Int]
-1 times = 0ms
-
-
-
-List[String] => ?{def shouldEqual: ?}
-
-List[String] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-List[String] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-List[String] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalactic.Equality[Stream[Int]]
-
-org.scalactic.Equality[Stream[Int]]
-4 times = 8ms
-
-
-
-org.scalactic.Equality[Stream[Int]]->scalaz.Equal[Stream[Int]]
-
-
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]]
-
-org.scalacheck.util.Buildable[Int,List[Int]]
-32 times = 41ms
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]]->scala.collection.generic.CanBuildFrom[F,Int,List[Int]]
-
-
-
-
-
-shapeless.ops.hlist.At[Long :: Double :: shapeless.HNil,shapeless.nat._1]->shapeless.ops.hlist.At[Double :: shapeless.HNil,shapeless._0]
-
-
-
-
-
-monocle.function.Snoc[List[Char],Char]
-
-monocle.function.Snoc[List[Char],Char]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[S]
-
-org.scalacheck.Arbitrary[S]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[S]->scala.reflect.ClassTag[S]
-
-
-
-
-
-scalaz.Monoid[Int]
-
-scalaz.Monoid[Int]
-4 times = 6ms
-
-
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3]
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._4]->shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3]
-
-
-
-
-
-shapeless.ops.tuple.Reverse.Aux[Stream[Int],Stream[Int]]->shapeless.Generic.Aux[Stream[Int],L1]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[String,String]]
-
-org.scalacheck.Arbitrary[Either[String,String]]
-1 times = 13ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,String]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-scala.reflect.ClassTag[Either[String,String]]
-
-scala.reflect.ClassTag[Either[String,String]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Either[String,String]]->scala.reflect.ClassTag[Either[String,String]]
-
-
-
-
-
-monocle.function.Cons[Vector[Int],Int]
-
-monocle.function.Cons[Vector[Int],Int]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Char, monocle.function.CList)) => (Char, monocle.function.CList)]
-
-org.scalacheck.Arbitrary[((Char, monocle.function.CList)) => (Char, monocle.function.CList)]
-1 times = 33ms
-
-
-
-org.scalacheck.Arbitrary[((Char, monocle.function.CList)) => (Char, monocle.function.CList)]->org.scalacheck.Cogen[(Char, monocle.function.CList)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Char, monocle.function.CList)) => (Char, monocle.function.CList)]->scala.reflect.ClassTag[((Char, monocle.function.CList)) => (Char, monocle.function.CList)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Char, monocle.function.CList)) => (Char, monocle.function.CList)]->org.scalacheck.Arbitrary[(Char, monocle.function.CList)]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)]->org.scalacheck.Cogen[Long]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)]->org.scalacheck.Cogen[Float]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)]->org.scalacheck.Cogen[Boolean]
-
-
-
-
-
-org.scalacheck.Cogen[HListSpec.this.Example]
-
-org.scalacheck.Cogen[HListSpec.this.Example]
-2 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.ReverseH,HListSpec.this.H]->shapeless.ops.hlist.Reverse.Reverse0[Double :: shapeless.HNil,Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,HListSpec.this.H]
-
-
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.HTail]
-
-org.scalacheck.Arbitrary[HListSpec.this.HTail]
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(IsoSpec.this.IntWrapper, Boolean)]
-
-org.scalacheck.Arbitrary[(IsoSpec.this.IntWrapper, Boolean)]
-1 times = 19ms
-
-
-
-org.scalacheck.Arbitrary[(IsoSpec.this.IntWrapper, Boolean)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(IsoSpec.this.IntWrapper, Boolean)]->scala.reflect.ClassTag[(IsoSpec.this.IntWrapper, Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(IsoSpec.this.IntWrapper, Boolean)]->org.scalacheck.Arbitrary[IsoSpec.this.IntWrapper]
-
-
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]]
-
-scalaz.Equal[monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]]
-1 times = 54ms
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]]->scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Quintary]
-
-
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]]->scalaz.Equal[monocle.Quintary => (Char, Boolean, String, Int, Double)]
-
-
-
-
-
-monocle.function.Plated[String]
-
-monocle.function.Plated[String]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Either3[String,Int,Char]]
-
-org.scalacheck.Arbitrary[scalaz.Either3[String,Int,Char]]
-3 times = 42ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Either3[String,Int,Char]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Either3[String,Int,Char]]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Either3[String,Int,Char]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]]
-
-org.scalactic.Equality[monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]]
-1 times = 55ms
-
-
-
-org.scalactic.Equality[monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]]->scalaz.Equal[monocle.Iso[monocle.Quintary,(Char, Boolean, String, Int, Double)]]
-
-
-
-
-
-((Any, Any, Any, Any) => Nothing) => org.scalacheck.Prop
-
-((Any, Any, Any, Any) => Nothing) => org.scalacheck.Prop
-2 times = 0ms
-
-
-
-(=> scala.collection.immutable.Stream[Int]) => ?{def #::: ?}
-
-(=> scala.collection.immutable.Stream[Int]) => ?{def #::: ?}
-2 times = 1ms
-
-
-
-scalaz.Equal[scalaz.ISet[Int]]
-
-scalaz.Equal[scalaz.ISet[Int]]
-2 times = 2ms
-
-
-
-scalaz.Equal[scalaz.ISet[Int]]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[scalaz.Id.Id[IsoSpec.this.IntWrapper]]
-
-scalaz.Equal[scalaz.Id.Id[IsoSpec.this.IntWrapper]]
-1 times = 1ms
-
-
-
-monocle.function.Empty[Stream[Int]]
-
-monocle.function.Empty[Stream[Int]]
-1 times = 0ms
-
-
-
-scalaz.Choice[monocle.Setter]
-
-scalaz.Choice[monocle.Setter]
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$7]
-
-scalaz.Functor[F$macro$7]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long), Float)]->scala.reflect.ClassTag[((Int, Char, Boolean, String, Long), Float)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long), Float)]->org.scalacheck.Arbitrary[Float]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)]
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)]
-3 times = 58ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long), Float)]->org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)]
-
-
-
-
-
-monocle.function.Field1[(Int, Char),Int]
-
-monocle.function.Field1[(Int, Char),Int]
-1 times = 2ms
-
-
-
-monocle.function.Field1[(Int, Char),Int]->shapeless.ops.hlist.At.Aux[(Int, Char),shapeless.nat._0.N,Int]
-
-
-
-
-
-org.scalactic.Equality[List[(Int, String)]]
-
-org.scalactic.Equality[List[(Int, String)]]
-2 times = 19ms
-
-
-
-scalaz.Equal[List[(Int, String)]]
-
-scalaz.Equal[List[(Int, String)]]
-2 times = 17ms
-
-
-
-org.scalactic.Equality[List[(Int, String)]]->scalaz.Equal[List[(Int, String)]]
-
-
-
-
-
-monocle.function.At[Int,monocle.refined.ZeroTo[Int(31)],Boolean]
-
-monocle.function.At[Int,monocle.refined.ZeroTo[Int(31)],Boolean]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Seq[?T]
-
-((Nothing, Nothing, Nothing, Nothing)) => Seq[?T]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(A, B)]->org.scalacheck.Arbitrary[A]
-
-
-
-
-
-org.scalacheck.Arbitrary[(A, B)]->scala.reflect.ClassTag[(A, B)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(A, B)]->org.scalacheck.Arbitrary[B]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, Int)]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, Int)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-shapeless.ops.coproduct.Selector[Boolean :+: shapeless.CNil,Boolean]->shapeless.ops.coproduct.Selector[shapeless.CNil,Boolean]
-
-
-
-
-
-eu.timepit.refined.api.Validate[String,eu.timepit.refined.string.StartsWith[String('hello')]]
-
-eu.timepit.refined.api.Validate[String,eu.timepit.refined.string.StartsWith[String('hello')]]
-1 times = 6ms
-
-
-
-eu.timepit.refined.api.Validate[String,eu.timepit.refined.string.StartsWith[String('hello')]]->shapeless.Witness.Aux[String('hello')]
-
-
-
-
-
-scalaz.Equal[((String, Int)) => monocle.Arities]
-
-scalaz.Equal[((String, Int)) => monocle.Arities]
-1 times = 20ms
-
-
-
-scalaz.Equal[((String, Int)) => monocle.Arities]->org.scalacheck.Arbitrary[(String, Int)]
-
-
-
-
-
-scalaz.Equal[((String, Int)) => monocle.Arities]->scalaz.Equal[monocle.Arities]
-
-
-
-
-
-scalaz.Functor[F$macro$10]
-
-scalaz.Functor[F$macro$10]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[scalaz.Tree[Int],scalaz.Tree[Int]]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,scalaz.Tree[Int],scalaz.Tree[Int]]
-
-
-
-
-
-scalaz.Equal[Byte]
-
-scalaz.Equal[Byte]
-6 times = 5ms
-
-
-
-org.scalacheck.Cogen[Stream[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Int :: shapeless.HNil,Char :: Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Int :: shapeless.HNil,Char :: Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-1 times = 4ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Int :: shapeless.HNil,Char :: Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]->shapeless.ops.hlist.Reverse.Reverse0[Char :: Boolean :: Int :: shapeless.HNil,Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-
-
-
-
-
-monocle.function.Index[Int ==>> String,Int,String]
-
-monocle.function.Index[Int ==>> String,Int,String]
-1 times = 0ms
-
-
-
-monocle.function.Index[Int ==>> String,Int,String]->scalaz.Order[Int]
-
-
-
-
-
-org.scalacheck.Cogen[List[Char]]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[(scalaz.IList[Int], Int)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[(scalaz.IList[Int], Int)]->org.scalacheck.Cogen[scalaz.IList[Int]]
-
-
-
-
-
-scalaz.Category[monocle.Getter]
-
-scalaz.Category[monocle.Getter]
-1 times = 0ms
-
-
-
-monocle.function.Each[Boolean :: Boolean :: shapeless.HNil,Boolean]->monocle.function.Each[Boolean :: shapeless.HNil,Boolean]
-
-
-
-
-
-org.scalacheck.Cogen[Option[scalaz.Cofree[Option,Int]]]->org.scalacheck.Cogen[scalaz.Cofree[Option,Int]]
-
-
-
-
-
-monocle.function.Empty[String]
-
-monocle.function.Empty[String]
-1 times = 0ms
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long, Float)]
-
-scalaz.Equal[(Int, Char, Boolean, String, Long, Float)]
-8 times = 23ms
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long, Float)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long, Float)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long, Float)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long, Float)]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Equal[Float]
-
-scalaz.Equal[Float]
-14 times = 4ms
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long, Float)]->scalaz.Equal[Float]
-
-
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long, Float)]->scalaz.Equal[Long]
-
-
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int]]
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int]]
-1 times = 13ms
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int]]
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int]]
-1 times = 13ms
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int]]->scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int]]
-
-
-
-
-
-monocle.function.Empty[List[Int]]
-
-monocle.function.Empty[List[Int]]
-1 times = 0ms
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.ExampleObject.type]
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.ExampleObject.type]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Map[K,V]]
-
-org.scalacheck.Arbitrary[Map[K,V]]
-1 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[Map[K,V]]->scala.reflect.ClassTag[Map[K,V]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[K,V]]->org.scalacheck.Arbitrary[(K, V)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[K,V]]->Map[K,V] => Traversable[(K, V)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Map[K,V]]->org.scalacheck.util.Buildable[(K, V),Map[K,V]]
-
-
-
-
-
-Option[String] => ?{def should: ?}
-
-Option[String] => ?{def should: ?}
-2 times = 4ms
-
-
-
-Option[String] => ?{def should: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[String] => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.ops.hlist.IsHCons[HListSpec.this.H]
-
-shapeless.ops.hlist.IsHCons[HListSpec.this.H]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Char => Char]
-
-org.scalacheck.Arbitrary[Char => Char]
-24 times = 235ms
-
-
-
-org.scalacheck.Arbitrary[Char => Char]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[Char => Char]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-scala.reflect.ClassTag[Char => Char]
-
-scala.reflect.ClassTag[Char => Char]
-24 times = 19ms
-
-
-
-org.scalacheck.Arbitrary[Char => Char]->scala.reflect.ClassTag[Char => Char]
-
-
-
-
-
-Option[A] => scala.collection.GenTraversableOnce[B]
-
-Option[A] => scala.collection.GenTraversableOnce[B]
-1 times = 8ms
-
-
-
-scala.reflect.ClassTag[((String, Boolean)) => (String, Boolean)]
-
-scala.reflect.ClassTag[((String, Boolean)) => (String, Boolean)]
-1 times = 1ms
-
-
-
-h.type => ?{def reverse: ?}
-
-h.type => ?{def reverse: ?}
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[monocle.Unary]->scala.reflect.ClassTag[monocle.Unary]
-
-
-
-
-
-(String, Int) <~< (String, Int)
-
-(String, Int) <~< (String, Int)
-2 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(List[Int], Boolean)]
-
-org.scalacheck.Arbitrary[(List[Int], Boolean)]
-1 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[(List[Int], Boolean)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-scala.reflect.ClassTag[(List[Int], Boolean)]
-
-scala.reflect.ClassTag[(List[Int], Boolean)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(List[Int], Boolean)]->scala.reflect.ClassTag[(List[Int], Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(List[Int], Boolean)]->org.scalacheck.Arbitrary[List[Int]]
-
-
-
-
-
-org.scalactic.Equality[Unit]
-
-org.scalactic.Equality[Unit]
-2 times = 3ms
-
-
-
-org.scalactic.Equality[Unit]->scalaz.Equal[Unit]
-
-
-
-
-
-org.scalacheck.Cogen[Int \/ Boolean]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[Int \/ Boolean]->org.scalacheck.Cogen[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long)) => (Int, Char, Boolean, String, Long)]
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long)) => (Int, Char, Boolean, String, Long)]
-1 times = 32ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long)) => (Int, Char, Boolean, String, Long)]->org.scalacheck.Cogen[(Int, Char, Boolean, String, Long)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long)) => (Int, Char, Boolean, String, Long)]->scala.reflect.ClassTag[((Int, Char, Boolean, String, Long)) => (Int, Char, Boolean, String, Long)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, Char, Boolean, String, Long)) => (Int, Char, Boolean, String, Long)]->org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)]
-
-
-
-
-
-monocle.function.FilterIndex[monocle.function.MMap[Int,String],Int,String]
-
-monocle.function.FilterIndex[monocle.function.MMap[Int,String],Int,String]
-1 times = 0ms
-
-
-
-scalaz.Equal[Option[Unit]]->scalaz.Equal[Unit]
-
-
-
-
-
-org.scalactic.Equality[Int :: HListSpec.this.HTail]
-
-org.scalactic.Equality[Int :: HListSpec.this.HTail]
-1 times = 0ms
-
-
-
-scalaz.Equal[Int :: HListSpec.this.HTail]
-
-scalaz.Equal[Int :: HListSpec.this.HTail]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Int :: HListSpec.this.HTail]->scalaz.Equal[Int :: HListSpec.this.HTail]
-
-
-
-
-
-scalaz.Compose[monocle.Getter]
-
-scalaz.Compose[monocle.Getter]
-1 times = 6ms
-
-
-
-org.scalactic.Equality[(Int, Int)]
-
-org.scalactic.Equality[(Int, Int)]
-1 times = 3ms
-
-
-
-scalaz.Equal[(Int, Int)]
-
-scalaz.Equal[(Int, Int)]
-2 times = 4ms
-
-
-
-org.scalactic.Equality[(Int, Int)]->scalaz.Equal[(Int, Int)]
-
-
-
-
-
-(=> Any => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-(=> Any => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Char,List[Char]]
-
-org.scalacheck.util.Buildable[Char,List[Char]]
-4 times = 4ms
-
-
-
-org.scalacheck.util.Buildable[Char,List[Char]]->scala.collection.generic.CanBuildFrom[F,Char,List[Char]]
-
-
-
-
-
-monocle.function.Each[List[Int] :: shapeless.HNil,Int]->shapeless.Generic.Aux[List[Int] :: shapeless.HNil,SGen]
-
-
-
-
-
-monocle.function.Each[shapeless.HNil,Any]
-
-monocle.function.Each[shapeless.HNil,Any]
-1 times = 3ms
-
-
-
-monocle.function.Each[List[Int] :: shapeless.HNil,Int]->monocle.function.Each[shapeless.HNil,Any]
-
-
-
-
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.OneAnd[List,Int],Int,List[Int]]
-
-shapeless.ops.hlist.IsHCons.Aux[scalaz.OneAnd[List,Int],Int,List[Int]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[(Int, GetterSpec.this.Bar)]
-
-org.scalactic.Equality[(Int, GetterSpec.this.Bar)]
-1 times = 22ms
-
-
-
-org.scalactic.Equality[(Int, GetterSpec.this.Bar)]->scalaz.Equal[(Int, GetterSpec.this.Bar)]
-
-
-
-
-
-Long => Int
-
-Long => Int
-19 times = 3ms
-
-
-
-monocle.function.Field2[(Int, Char),Char]
-
-monocle.function.Field2[(Int, Char),Char]
-1 times = 3ms
-
-
-
-monocle.function.Field2[(Int, Char),Char]->shapeless.ops.hlist.At.Aux[(Int, Char),shapeless.nat._1.N,Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, String)]->scala.reflect.ClassTag[(Int, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, String)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, String)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Option[scalaz.Cofree[Option,Int]])]
-
-scala.reflect.ClassTag[(Int, Option[scalaz.Cofree[Option,Int]])]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, List[Int])]->scala.reflect.ClassTag[(Int, List[Int])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, List[Int])]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, List[Int])]->org.scalacheck.Arbitrary[List[Int]]
-
-
-
-
-
-scala.reflect.ClassTag[Int => Int]
-
-scala.reflect.ClassTag[Int => Int]
-90 times = 89ms
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Binary,(String, Int)]]->scalaz.Equal[((String, Int)) => monocle.Binary]
-
-
-
-
-
-scalaz.Equal[monocle.Binary => (String, Int)]
-
-scalaz.Equal[monocle.Binary => (String, Int)]
-1 times = 11ms
-
-
-
-scalaz.Equal[monocle.Iso[monocle.Binary,(String, Int)]]->scalaz.Equal[monocle.Binary => (String, Int)]
-
-
-
-
-
-monocle.function.Cons1[scalaz.OneAnd[List,Int],Int,List[Int]]
-
-monocle.function.Cons1[scalaz.OneAnd[List,Int],Int,List[Int]]
-1 times = 3ms
-
-
-
-monocle.function.Cons1[scalaz.OneAnd[List,Int],Int,List[Int]]->shapeless.ops.hlist.IsHCons.Aux[scalaz.OneAnd[List,Int],Int,List[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[TraversalSpec.this.Location]
-
-org.scalacheck.Arbitrary[TraversalSpec.this.Location]
-2 times = 0ms
-
-
-
-scalaz.Equal[TraversalSpec.this.ManyPropObject]
-
-scalaz.Equal[TraversalSpec.this.ManyPropObject]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Vector[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$1]
-
-scalaz.Functor[F$macro$1]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Long,(Long, Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Long,(Long, Char :: Float :: Long :: Double :: shapeless.HNil)]
-1 times = 9ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3,Long,(Long, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Long,(Long, Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless._0,Float,(Float, Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless._0,Float,(Float, Float :: Long :: Double :: shapeless.HNil)]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(Unit, Int)]->scala.reflect.ClassTag[(Unit, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Unit, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Unit, Int)]->org.scalacheck.Arbitrary[Unit]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int]]->scala.reflect.ClassTag[Either[String,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int]]->org.scalacheck.Arbitrary[(String, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int]]->org.scalacheck.util.Buildable[(String, Int),Either[String,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Either[String,Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Bar1]
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Bar1]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[monocle.Nullary]
-
-org.scalacheck.Arbitrary[monocle.Nullary]
-1 times = 5ms
-
-
-
-scala.reflect.ClassTag[monocle.Nullary]
-
-scala.reflect.ClassTag[monocle.Nullary]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[monocle.Nullary]->scala.reflect.ClassTag[monocle.Nullary]
-
-
-
-
-
-scalaz.Equal[(HListSpec.this.HInit, Double)]
-
-scalaz.Equal[(HListSpec.this.HInit, Double)]
-1 times = 2ms
-
-
-
-scalaz.Equal[(HListSpec.this.HInit, Double)]->scalaz.Equal[Double]
-
-
-
-
-
-scalaz.Equal[(HListSpec.this.HInit, Double)]->scalaz.Equal[HListSpec.this.HInit]
-
-
-
-
-
-scalaz.Apply[org.scalacheck.Gen]
-
-scalaz.Apply[org.scalacheck.Gen]
-2 times = 0ms
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int] => ?{def shouldEqual: ?}
-
-monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Cogen[(HListSpec.this.HInit, Double)]->org.scalacheck.Cogen[HListSpec.this.HInit]
-
-
-
-
-
-org.scalacheck.Cogen[(HListSpec.this.HInit, Double)]->org.scalacheck.Cogen[Double]
-
-
-
-
-
-((Int, String)) => ?{def shouldEqual: ?}
-
-((Int, String)) => ?{def shouldEqual: ?}
-2 times = 8ms
-
-
-
-((Int, String)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-((Int, String)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]->shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1]
-
-
-
-
-
-scalaz.Equal[(Int, HListSpec.this.HTail)]
-
-scalaz.Equal[(Int, HListSpec.this.HTail)]
-1 times = 1ms
-
-
-
-scalaz.Equal[(Int, HListSpec.this.HTail)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[(Int, HListSpec.this.HTail)]->scalaz.Equal[HListSpec.this.HTail]
-
-
-
-
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-Stream[scalaz.Cofree[Stream,A]] => ?{def ===: ?}
-
-Stream[scalaz.Cofree[Stream,A]] => ?{def ===: ?}
-1 times = 3ms
-
-
-
-scalaz.Equal[Stream[scalaz.Cofree[Stream,A]]]
-
-scalaz.Equal[Stream[scalaz.Cofree[Stream,A]]]
-2 times = 4ms
-
-
-
-Stream[scalaz.Cofree[Stream,A]] => ?{def ===: ?}->scalaz.Equal[Stream[scalaz.Cofree[Stream,A]]]
-
-
-
-
-
-monocle.function.FilterIndex[Map[Int,Char],Int,Char]
-
-monocle.function.FilterIndex[Map[Int,Char],Int,Char]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Tupler[HListSpec.this.HInit]
-
-shapeless.ops.hlist.Tupler[HListSpec.this.HInit]
-1 times = 2ms
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int]]->scalaz.Equal[Int => monocle.Arities]
-
-
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,Int,Int]]->scalaz.Equal[monocle.Arities => Option[Int]]
-
-
-
-
-
-org.scalactic.Equality[Option[Unit]]
-
-org.scalactic.Equality[Option[Unit]]
-1 times = 3ms
-
-
-
-org.scalactic.Equality[Option[Unit]]->scalaz.Equal[Option[Unit]]
-
-
-
-
-
-org.scalactic.Equality[monocle.Nullary]
-
-org.scalactic.Equality[monocle.Nullary]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[monocle.Nullary]->scalaz.Equal[monocle.Nullary]
-
-
-
-
-
-monocle.function.Index[Stream[Int],Int,Int]
-
-monocle.function.Index[Stream[Int],Int,Int]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int)]
-1 times = 21ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int)]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int, Int, Int)]
-
-
-
-
-
-monocle.function.Each[scala.util.Try[Int],Int]
-
-monocle.function.Each[scala.util.Try[Int],Int]
-1 times = 9ms
-
-
-
-monocle.function.Each[scala.util.Try[Int],Int]->shapeless.Generic.Aux[scala.util.Try[Int],SGen]
-
-
-
-
-
-scalaz.Functor[F$macro$17]
-
-scalaz.Functor[F$macro$17]
-1 times = 0ms
-
-
-
-org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]]->scala.collection.generic.CanBuildFrom[F,Int,scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Char, Boolean, String, Long, Float)) => (Char, Boolean, String, Long, Float)]
-
-org.scalacheck.Arbitrary[((Char, Boolean, String, Long, Float)) => (Char, Boolean, String, Long, Float)]
-1 times = 28ms
-
-
-
-org.scalacheck.Arbitrary[((Char, Boolean, String, Long, Float)) => (Char, Boolean, String, Long, Float)]->scala.reflect.ClassTag[((Char, Boolean, String, Long, Float)) => (Char, Boolean, String, Long, Float)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Char, Boolean, String, Long, Float)) => (Char, Boolean, String, Long, Float)]->org.scalacheck.Cogen[(Char, Boolean, String, Long, Float)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)]
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)]
-3 times = 57ms
-
-
-
-org.scalacheck.Arbitrary[((Char, Boolean, String, Long, Float)) => (Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)]
-
-
-
-
-
-monocle.function.Snoc[monocle.function.CList,Char]
-
-monocle.function.Snoc[monocle.function.CList,Char]
-1 times = 0ms
-
-
-
-scalaz.Functor[F$macro$8]
-
-scalaz.Functor[F$macro$8]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Stream[Int], Int)]->scala.reflect.ClassTag[(Stream[Int], Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Stream[Int], Int)]->org.scalacheck.Arbitrary[Stream[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Stream[Int], Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-a1.type => ?{def reverse: ?}
-
-a1.type => ?{def reverse: ?}
-1 times = 0ms
-
-
-
-monocle.function.Cons[List[Char],Char]
-
-monocle.function.Cons[List[Char],Char]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Int, HListSpec.this.HTail)]->org.scalacheck.Arbitrary[HListSpec.this.HTail]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, HListSpec.this.HTail)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scala.reflect.ClassTag[(Int, HListSpec.this.HTail)]
-
-scala.reflect.ClassTag[(Int, HListSpec.this.HTail)]
-2 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[(Int, HListSpec.this.HTail)]->scala.reflect.ClassTag[(Int, HListSpec.this.HTail)]
-
-
-
-
-
-org.scalacheck.util.Buildable[(K, V),List[(K, V)]]->scala.collection.generic.CanBuildFrom[F,(K, V),List[(K, V)]]
-
-
-
-
-
-scalaz.Equal[Unit => monocle.Arities]->org.scalacheck.Arbitrary[Unit]
-
-
-
-
-
-scalaz.Equal[Unit => monocle.Arities]->scalaz.Equal[monocle.Arities]
-
-
-
-
-
-scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Arities]
-
-scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Arities]
-1 times = 37ms
-
-
-
-scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Arities]->org.scalacheck.Arbitrary[(Char, Boolean, String, Int, Double)]
-
-
-
-
-
-scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Arities]->scalaz.Equal[monocle.Arities]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int]->scala.reflect.ClassTag[Int]
-
-
-
-
-
-monocle.Binary => ?{def shouldEqual: ?}
-
-monocle.Binary => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-monocle.Binary => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.Binary => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,String]]
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,String]]
-1 times = 25ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,String]]->org.scalacheck.util.Buildable[(Int, String),scala.collection.immutable.Map[Int,String]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,String]]->Fractional[scala.collection.immutable.Map[Int,String]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,String]]->scala.collection.immutable.Map[Int,String] => Traversable[(Int, String)]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,String]]->org.scalacheck.Shrink[(Int, String)]
-
-
-
-
-
-Integral[scala.collection.immutable.Map[Int,String]]
-
-Integral[scala.collection.immutable.Map[Int,String]]
-1 times = 6ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Map[Int,String]]->Integral[scala.collection.immutable.Map[Int,String]]
-
-
-
-
-
-Int => org.scalacheck.util.Pretty
-
-Int => org.scalacheck.util.Pretty
-13 times = 15ms
-
-
-
-Unit => ?{def shouldEqual: ?}
-
-Unit => ?{def shouldEqual: ?}
-2 times = 4ms
-
-
-
-Unit => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Unit => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Cogen[(Int,)]
-
-org.scalacheck.Cogen[(Int,)]
-1 times = 4ms
-
-
-
-org.scalacheck.Cogen[(Int,)]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-scalaz.Equal[Stream[scalaz.Tree[Int]]]
-
-scalaz.Equal[Stream[scalaz.Tree[Int]]]
-1 times = 1ms
-
-
-
-scalaz.Equal[Stream[scalaz.Tree[Int]]]->scalaz.Equal[scalaz.Tree[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int]]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Validation[String,Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-monocle.function.Each[shapeless.HNil,Int]->shapeless.Generic.Aux[shapeless.HNil,SGen]
-
-
-
-
-
-scalaz.Equal[monocle.Arities => Option[(String, Int)]]
-
-scalaz.Equal[monocle.Arities => Option[(String, Int)]]
-1 times = 6ms
-
-
-
-scalaz.Equal[monocle.Arities => Option[(String, Int)]]->org.scalacheck.Arbitrary[monocle.Arities]
-
-
-
-
-
-scalaz.Equal[Option[(String, Int)]]
-
-scalaz.Equal[Option[(String, Int)]]
-1 times = 4ms
-
-
-
-scalaz.Equal[monocle.Arities => Option[(String, Int)]]->scalaz.Equal[Option[(String, Int)]]
-
-
-
-
-
-UnsafeSelectSpec.this.PropertyCheckConfigurable
-
-UnsafeSelectSpec.this.PropertyCheckConfigurable
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, scalaz.IList[Int])]->scala.reflect.ClassTag[(Int, scalaz.IList[Int])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, scalaz.IList[Int])]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, scalaz.IList[Int])]->org.scalacheck.Arbitrary[scalaz.IList[Int]]
-
-
-
-
-
-PrismSpec.this.IntOrString => ?{def shouldEqual: ?}
-
-PrismSpec.this.IntOrString => ?{def shouldEqual: ?}
-6 times = 11ms
-
-
-
-PrismSpec.this.IntOrString => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-PrismSpec.this.IntOrString => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String('world')]]->shapeless.Witness.Aux[String('world')]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.EndsWithString[String('world')]]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-monocle.function.Field5[(Boolean, Char, Int, Long, Float, Double),Float]
-
-monocle.function.Field5[(Boolean, Char, Int, Long, Float, Double),Float]
-1 times = 3ms
-
-
-
-monocle.function.Field5[(Boolean, Char, Int, Long, Float, Double),Float]->shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._4.N,Float]
-
-
-
-
-
-partitions.type => ?{def traverseU: ?}
-
-partitions.type => ?{def traverseU: ?}
-1 times = 1ms
-
-
-
-partitions.type => ?{def traverseU: ?}->scalaz.Traverse[List]
-
-
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)]]
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)]]
-1 times = 49ms
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)]]->scalaz.Equal[monocle.Arities => Option[(Char, Boolean, String, Int, Double)]]
-
-
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)]]->scalaz.Equal[((Char, Boolean, String, Int, Double)) => monocle.Arities]
-
-
-
-
-
-Fractional[scala.collection.immutable.Stream[Int]]
-
-Fractional[scala.collection.immutable.Stream[Int]]
-1 times = 0ms
-
-
-
-scalaz.Equal[(Char, Boolean, String, Long, Float)]
-
-scalaz.Equal[(Char, Boolean, String, Long, Float)]
-1 times = 3ms
-
-
-
-scalaz.Equal[(Char, Boolean, String, Long, Float)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Long, Float)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Long, Float)]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Long, Float)]->scalaz.Equal[Float]
-
-
-
-
-
-scalaz.Equal[(Char, Boolean, String, Long, Float)]->scalaz.Equal[Long]
-
-
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)]]->scalaz.Equal[((String, Int)) => monocle.Arities]
-
-
-
-
-
-scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(String, Int),(String, Int)]]->scalaz.Equal[monocle.Arities => Option[(String, Int)]]
-
-
-
-
-
-scalaz.Category[monocle.Traversal]
-
-scalaz.Category[monocle.Traversal]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[(Int, Char, Boolean, String, Long, Float)]
-
-scala.reflect.ClassTag[(Int, Char, Boolean, String, Long, Float)]
-8 times = 5ms
-
-
-
-(=> (Any, Any, Any, Any) => Nothing) => (?A1 => ?P)
-
-(=> (Any, Any, Any, Any) => Nothing) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-scalaz.Equal[(Int, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-org.scalacheck.Cogen[E]
-
-org.scalacheck.Cogen[E]
-1 times = 0ms
-
-
-
-monocle.function.FilterIndex[Map[K,V],K,V]
-
-monocle.function.FilterIndex[Map[K,V],K,V]
-1 times = 1ms
-
-
-
-monocle.function.Each[shapeless.HNil,Boolean]->shapeless.Generic.Aux[shapeless.HNil,SGen]
-
-
-
-
-
-shapeless.ops.hlist.At[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3]->shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]
-
-
-
-
-
-scalaz.Equal[(Int,)]
-
-scalaz.Equal[(Int,)]
-4 times = 3ms
-
-
-
-scalaz.Equal[(Int,)]->scalaz.Equal[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[A => A]
-
-org.scalacheck.Arbitrary[A => A]
-1 times = 7ms
-
-
-
-org.scalacheck.Arbitrary[A => A]->scala.reflect.ClassTag[A => A]
-
-
-
-
-
-org.scalacheck.Arbitrary[A => A]->org.scalacheck.Arbitrary[A]
-
-
-
-
-
-org.scalacheck.Arbitrary[A => A]->org.scalacheck.Cogen[A]
-
-
-
-
-
-scala.reflect.ClassTag[BigInt]
-
-scala.reflect.ClassTag[BigInt]
-5 times = 4ms
-
-
-
-monocle.function.Each[scalaz.OneAnd[List,Int],Int]
-
-monocle.function.Each[scalaz.OneAnd[List,Int],Int]
-1 times = 78ms
-
-
-
-monocle.function.Each[scalaz.OneAnd[List,Int],Int]->monocle.function.Each[List[Int],Int]
-
-
-
-
-
-monocle.function.Each[scalaz.OneAnd[List,Int],Int]->monocle.function.Each[Int :: List[Int] :: shapeless.HNil,Int]
-
-
-
-
-
-monocle.function.Each[scalaz.OneAnd[List,Int],Int]->shapeless.Generic.Aux[scalaz.OneAnd[List,Int],SGen]
-
-
-
-
-
-org.scalacheck.Shrink[(scala.collection.immutable.Map[Int,String], Int)]
-
-org.scalacheck.Shrink[(scala.collection.immutable.Map[Int,String], Int)]
-1 times = 31ms
-
-
-
-org.scalacheck.Shrink[(scala.collection.immutable.Map[Int,String], Int)]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-org.scalacheck.Shrink[(scala.collection.immutable.Map[Int,String], Int)]->org.scalacheck.Shrink[scala.collection.immutable.Map[Int,String]]
-
-
-
-
-
-shapeless.ops.hlist.Last[Char :: Float :: Long :: Double :: shapeless.HNil]->shapeless.ops.hlist.Last[Float :: Long :: Double :: shapeless.HNil]
-
-
-
-
-
-scala.reflect.ClassTag[Throwable]
-
-scala.reflect.ClassTag[Throwable]
-2 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Option[Int])]
-
-org.scalacheck.Arbitrary[(Int, Option[Int])]
-1 times = 14ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Option[Int])]->org.scalacheck.Arbitrary[Option[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Option[Int])]->scala.reflect.ClassTag[(Int, Option[Int])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Option[Int])]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-List[List[Int]] => ?{def shouldEqual: ?}
-
-List[List[Int]] => ?{def shouldEqual: ?}
-3 times = 17ms
-
-
-
-List[List[Int]] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-List[List[Int]] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Choice[monocle.Getter]
-
-scalaz.Choice[monocle.Getter]
-2 times = 1ms
-
-
-
-scalaz.Equal[List[Int] \/ TraversalSpec.this.Location]->scalaz.Order[TraversalSpec.this.Location]
-
-
-
-
-
-scalaz.Equal[List[Int] \/ TraversalSpec.this.Location]->scalaz.Equal[TraversalSpec.this.Location]
-
-
-
-
-
-scalaz.Equal[List[Int] \/ TraversalSpec.this.Location]->scalaz.Order[List[Int]]
-
-
-
-
-
-scalaz.Equal[List[Int] \/ TraversalSpec.this.Location]->scalaz.Equal[List[Int]]
-
-
-
-
-
-scalaz.Equal[(Boolean, String)]
-
-scalaz.Equal[(Boolean, String)]
-1 times = 3ms
-
-
-
-scalaz.Equal[(Boolean, String)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Boolean, String)]->scalaz.Equal[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[java.util.UUID => java.util.UUID]
-
-org.scalacheck.Arbitrary[java.util.UUID => java.util.UUID]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[java.util.UUID => java.util.UUID]->scala.reflect.ClassTag[java.util.UUID => java.util.UUID]
-
-
-
-
-
-org.scalacheck.Arbitrary[java.util.UUID => java.util.UUID]->org.scalacheck.Arbitrary[java.util.UUID]
-
-
-
-
-
-org.scalacheck.Arbitrary[java.util.UUID => java.util.UUID]->org.scalacheck.Cogen[java.util.UUID]
-
-
-
-
-
-scalaz.Equal[Option[(String, Int)]]->scalaz.Equal[(String, Int)]
-
-
-
-
-
-Option[List[Unit]] => ?{def shouldEqual: ?}
-
-Option[List[Unit]] => ?{def shouldEqual: ?}
-2 times = 3ms
-
-
-
-Option[List[Unit]] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[List[Unit]] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Equal[V]
-
-scalaz.Equal[V]
-1 times = 2ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Float :: Char :: Boolean :: Int :: shapeless.HNil,Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]->shapeless.ops.hlist.Reverse.Reverse0[Long :: Float :: Char :: Boolean :: Int :: shapeless.HNil,Double :: shapeless.HNil,HListSpec.this.ReverseH]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CNel]
-
-org.scalacheck.Arbitrary[monocle.function.CNel]
-2 times = 9ms
-
-
-
-org.scalacheck.Arbitrary[monocle.function.CNel]->scala.reflect.ClassTag[monocle.function.CNel]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar => monocle.refined.UpperCaseChar]
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar => monocle.refined.UpperCaseChar]
-1 times = 15ms
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar => monocle.refined.UpperCaseChar]->org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar => monocle.refined.UpperCaseChar]->org.scalacheck.Cogen[monocle.refined.UpperCaseChar]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.UpperCaseChar => monocle.refined.UpperCaseChar]->scala.reflect.ClassTag[monocle.refined.UpperCaseChar => monocle.refined.UpperCaseChar]
-
-
-
-
-
-monocle.function.Possible[Unit \/ Int,Int]
-
-monocle.function.Possible[Unit / Int,Int]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Option[String]]
-
-org.scalactic.Equality[Option[String]]
-5 times = 11ms
-
-
-
-org.scalactic.Equality[Option[String]]->scalaz.Equal[Option[String]]
-
-
-
-
-
-scala.reflect.ClassTag[((Int, Stream[Int])) => (Int, Stream[Int])]
-
-scala.reflect.ClassTag[((Int, Stream[Int])) => (Int, Stream[Int])]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[BigDecimal]
-
-org.scalacheck.Arbitrary[BigDecimal]
-2 times = 11ms
-
-
-
-org.scalacheck.Arbitrary[BigDecimal]->scala.reflect.ClassTag[BigDecimal]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: shapeless.HNil,Int :: shapeless.HNil,Out]
-1 times = 1ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Char :: Int :: shapeless.HNil,Out0]->shapeless.ops.hlist.Reverse.Reverse0[Char :: shapeless.HNil,Int :: shapeless.HNil,Out]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[Stream,Int]]
-
-scalaz.Equal[scalaz.OneAnd[Stream,Int]]
-1 times = 4ms
-
-
-
-scalaz.Equal[scalaz.OneAnd[Stream,Int]]->scalaz.Equal[Stream[Int]]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[Stream,Int]]->scalaz.Order[Stream[Int]]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[Stream,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[scalaz.OneAnd[Stream,Int]]->scalaz.Order[Int]
-
-
-
-
-
-shapeless.ops.hlist.Reverse[HListSpec.this.ReverseH]
-
-shapeless.ops.hlist.Reverse[HListSpec.this.ReverseH]
-3 times = 22ms
-
-
-
-shapeless.ops.hlist.Reverse[HListSpec.this.ReverseH]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.ReverseH,Out0]
-
-
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)]]
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)]]
-1 times = 50ms
-
-
-
-org.scalactic.Equality[monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)]]->scalaz.Equal[monocle.PPrism[monocle.Arities,monocle.Arities,(Char, Boolean, String, Int, Double),(Char, Boolean, String, Int, Double)]]
-
-
-
-
-
-monocle.function.Empty[scalaz.IList[Char]]
-
-monocle.function.Empty[scalaz.IList[Char]]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[scalaz.Cofree[Stream,A]]
-
-org.scalacheck.Cogen[scalaz.Cofree[Stream,A]]
-2 times = 1ms
-
-
-
-org.scalacheck.Cogen[scalaz.Cofree[Stream,A]]->org.scalacheck.Cogen[A]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ (String \/ Int)]
-
-org.scalacheck.Arbitrary[Boolean / (String / Int)]
-1 times = 16ms
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ (String \/ Int)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean \/ (String \/ Int)]->org.scalacheck.Arbitrary[String \/ Int]
-
-
-
-
-
-scalaz.Equal[scalaz.Validation[String,Int]]
-
-scalaz.Equal[scalaz.Validation[String,Int]]
-4 times = 11ms
-
-
-
-scalaz.Equal[scalaz.Validation[String,Int]]->scalaz.Order[String]
-
-
-
-
-
-scalaz.Equal[scalaz.Validation[String,Int]]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[scalaz.Validation[String,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Example2]
-
-scalaz.Equal[MacroOutSideMonocleSpec.this.Example2]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(Boolean, String)]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalacheck.Cogen[(Boolean, String)]->org.scalacheck.Cogen[Boolean]
-
-
-
-
-
-a2.type => ?{def reverse: ?}
-
-a2.type => ?{def reverse: ?}
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[Stream[scalaz.Cofree[Stream,A]]]->org.scalacheck.Cogen[scalaz.Cofree[Stream,A]]
-
-
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[IsoSpec.this.IntWrapper]]
-
-org.scalactic.Equality[scalaz.Id.Id[IsoSpec.this.IntWrapper]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[IsoSpec.this.IntWrapper]]->scalaz.Equal[scalaz.Id.Id[IsoSpec.this.IntWrapper]]
-
-
-
-
-
-org.scalactic.Equality[List[Int]]
-
-org.scalactic.Equality[List[Int]]
-12 times = 44ms
-
-
-
-org.scalactic.Equality[List[Int]]->scalaz.Equal[List[Int]]
-
-
-
-
-
-(Any => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-(Any => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-org.scalactic.Equality[Option[Long]]
-
-org.scalactic.Equality[Option[Long]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[Option[Long]]->scalaz.Equal[Option[Long]]
-
-
-
-
-
-monocle.function.Cons1[monocle.function.CNel,Char,scalaz.IList[Char]]
-
-monocle.function.Cons1[monocle.function.CNel,Char,scalaz.IList[Char]]
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Char :: shapeless.HNil,Int :: shapeless.HNil,Out]->shapeless.ops.hlist.Reverse.Reverse0[Int :: Char :: shapeless.HNil,shapeless.HNil,Out]
-
-
-
-
-
-org.scalacheck.Arbitrary[Unit \/ Int => Unit \/ Int]
-
-org.scalacheck.Arbitrary[Unit / Int => Unit / Int]
-2 times = 27ms
-
-
-
-org.scalacheck.Arbitrary[Unit \/ Int => Unit \/ Int]->scala.reflect.ClassTag[Unit \/ Int => Unit \/ Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Unit \/ Int]
-
-org.scalacheck.Arbitrary[Unit / Int]
-6 times = 44ms
-
-
-
-org.scalacheck.Arbitrary[Unit \/ Int => Unit \/ Int]->org.scalacheck.Arbitrary[Unit \/ Int]
-
-
-
-
-
-org.scalacheck.Cogen[Unit \/ Int]
-
-org.scalacheck.Cogen[Unit / Int]
-2 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[Unit \/ Int => Unit \/ Int]->org.scalacheck.Cogen[Unit \/ Int]
-
-
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Seq[?T]
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Seq[?T]
-1 times = 0ms
-
-
-
-monocle.Prism[Int,Unit] => ?{def below: ?}
-
-monocle.Prism[Int,Unit] => ?{def below: ?}
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[List[Int]]->List[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Int]]->scala.reflect.ClassTag[List[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Int]]->org.scalacheck.util.Buildable[Int,List[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.EmptyCase]
-
-org.scalacheck.Arbitrary[IsoSpec.this.EmptyCase]
-1 times = 10ms
-
-
-
-scala.reflect.ClassTag[IsoSpec.this.EmptyCase]
-
-scala.reflect.ClassTag[IsoSpec.this.EmptyCase]
-1 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[IsoSpec.this.EmptyCase]->scala.reflect.ClassTag[IsoSpec.this.EmptyCase]
-
-
-
-
-
-org.scalacheck.Cogen[Int \/ String]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[Int \/ String]->org.scalacheck.Cogen[String]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, scalaz.IList[Char])]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[(Char, scalaz.IList[Char])]->org.scalacheck.Cogen[scalaz.IList[Char]]
-
-
-
-
-
-scalaz.Equal[(Boolean, Int)]
-
-scalaz.Equal[(Boolean, Int)]
-3 times = 10ms
-
-
-
-scalaz.Equal[(Boolean, Int)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[(Boolean, Int)]->scalaz.Equal[Boolean]
-
-
-
-
-
-shapeless.ops.hlist.Init[Double :: shapeless.HNil]->shapeless.ops.hlist.Init[shapeless.HNil]
-
-
-
-
-
-scalaz.Functor[F$macro$13]
-
-scalaz.Functor[F$macro$13]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long, Float)]
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long, Float)]
-8 times = 177ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[Long]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[Float]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long, Float)]->scala.reflect.ClassTag[(Int, Char, Boolean, String, Long, Float)]
-
-
-
-
-
-scalaz.Equal[List[(Int, String)]]->scalaz.Equal[(Int, String)]
-
-
-
-
-
-scalaz.Equal[List[(Int, String)]]->scalaz.Order[(Int, String)]
-
-
-
-
-
-org.scalacheck.Arbitrary[BigInt]
-
-org.scalacheck.Arbitrary[BigInt]
-5 times = 24ms
-
-
-
-org.scalacheck.Arbitrary[BigInt]->scala.reflect.ClassTag[BigInt]
-
-
-
-
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-String => ?{def should: ?}
-
-String => ?{def should: ?}
-2 times = 6ms
-
-
-
-String => ?{def should: ?}->org.scalactic.Prettifier
-
-
-
-
-
-String => ?{def should: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[A]]
-
-org.scalacheck.Arbitrary[scalaz.Tree[A]]
-1 times = 20ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[A]]->org.scalacheck.Arbitrary[A]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[A]]->scala.reflect.ClassTag[scalaz.Tree[A]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Tree[A]]->org.scalacheck.util.Buildable[A,scalaz.Tree[A]]
-
-
-
-
-
-scalaz.Equal[S => A]->org.scalacheck.Arbitrary[A]
-
-
-
-
-
-scalaz.Equal[monocle.Binary => (String, Int)]->org.scalacheck.Arbitrary[monocle.Binary]
-
-
-
-
-
-scalaz.Equal[monocle.Binary => (String, Int)]->scalaz.Equal[(String, Int)]
-
-
-
-
-
-scala.math.Ordering[Int]
-
-scala.math.Ordering[Int]
-1 times = 10ms
-
-
-
-((Int, GetterSpec.this.Bar)) => ?{def shouldEqual: ?}
-
-((Int, GetterSpec.this.Bar)) => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-((Int, GetterSpec.this.Bar)) => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-((Int, GetterSpec.this.Bar)) => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-monocle.function.Each[Int ==>> String,String]
-
-monocle.function.Each[Int ==>> String,String]
-1 times = 6ms
-
-
-
-monocle.function.Each[Int ==>> String,String]->shapeless.Generic.Aux[Int ==>> String,SGen]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]->shapeless.ops.hlist.Reverse.Reverse0[Boolean :: Int :: shapeless.HNil,Char :: Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String('hello')]]->shapeless.Witness.Aux[String('hello')]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.StartsWithString[String('hello')]]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-(=> (Any, Any, Any, Any) => Nothing) => org.scalacheck.Prop
-
-(=> (Any, Any, Any, Any) => Nothing) => org.scalacheck.Prop
-2 times = 0ms
-
-
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._1.N,Char]
-
-shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._1.N,Char]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[Int => Int]
-
-org.scalacheck.Arbitrary[Int => Int]
-90 times = 1053ms
-
-
-
-org.scalacheck.Arbitrary[Int => Int]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int => Int]->scala.reflect.ClassTag[Int => Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Int => Int]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-scalaz.Equal[Either[String,String]]
-
-scalaz.Equal[Either[String,String]]
-1 times = 2ms
-
-
-
-scalaz.Equal[Either[String,String]]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[Option[List[Unit]]]->scalaz.Equal[List[Unit]]
-
-
-
-
-
-org.scalacheck.Arbitrary[HListSpec.this.Example]
-
-org.scalacheck.Arbitrary[HListSpec.this.Example]
-2 times = 0ms
-
-
-
-scalaz.Order[List[Int]]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[(List[Int], Boolean)]
-
-scalaz.Equal[(List[Int], Boolean)]
-1 times = 2ms
-
-
-
-scalaz.Equal[(List[Int], Boolean)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(List[Int], Boolean)]->scalaz.Equal[List[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[Int] => Option[Int]]
-
-org.scalacheck.Arbitrary[Option[Int] => Option[Int]]
-1 times = 11ms
-
-
-
-org.scalacheck.Arbitrary[Option[Int] => Option[Int]]->scala.reflect.ClassTag[Option[Int] => Option[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[Int] => Option[Int]]->org.scalacheck.Arbitrary[Option[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[Option[Int] => Option[Int]]->org.scalacheck.Cogen[Option[Int]]
-
-
-
-
-
-scalaz.Equal[scalaz.IList[Int]]
-
-scalaz.Equal[scalaz.IList[Int]]
-2 times = 6ms
-
-
-
-scalaz.Equal[scalaz.IList[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[scalaz.IList[Int]]->scalaz.Order[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int] => scalaz.NonEmptyList[Int]]
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int] => scalaz.NonEmptyList[Int]]
-1 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int] => scalaz.NonEmptyList[Int]]->org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int] => scalaz.NonEmptyList[Int]]->org.scalacheck.Cogen[scalaz.NonEmptyList[Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.NonEmptyList[Int] => scalaz.NonEmptyList[Int]]->scala.reflect.ClassTag[scalaz.NonEmptyList[Int] => scalaz.NonEmptyList[Int]]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Long,(Long, Char :: Float :: Long :: Double :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Long,(Long, Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[Either[String,Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-org.scalacheck.Cogen[Either[String,Int]]->org.scalacheck.Cogen[String]
-
-
-
-
-
-scalaz.Unzip[[β$0$]monocle.PSetter[List[(Int, String)],List[(Int, String)],β$0$,β$0$]]
-
-scalaz.Unzip[[β$0$]monocle.PSetter[List[(Int, String)],List[(Int, String)],β$0$,β$0$]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Stream[Int])) => (Int, Stream[Int])]
-
-org.scalacheck.Arbitrary[((Int, Stream[Int])) => (Int, Stream[Int])]
-1 times = 19ms
-
-
-
-org.scalacheck.Arbitrary[((Int, Stream[Int])) => (Int, Stream[Int])]->org.scalacheck.Cogen[(Int, Stream[Int])]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, Stream[Int])) => (Int, Stream[Int])]->org.scalacheck.Arbitrary[(Int, Stream[Int])]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int, Stream[Int])) => (Int, Stream[Int])]->scala.reflect.ClassTag[((Int, Stream[Int])) => (Int, Stream[Int])]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Float,(Float, Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Float,(Float, Char :: Float :: Long :: Double :: shapeless.HNil)]
-1 times = 5ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Float,(Float, Char :: Float :: Long :: Double :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless._0,Float,(Float, Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-org.scalactic.Equality[monocle.Binary]
-
-org.scalactic.Equality[monocle.Binary]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[monocle.Binary]->scalaz.Equal[monocle.Binary]
-
-
-
-
-
-org.scalactic.Equality[Option[List[Int]]]
-
-org.scalactic.Equality[Option[List[Int]]]
-4 times = 11ms
-
-
-
-org.scalactic.Equality[Option[List[Int]]]->scalaz.Equal[Option[List[Int]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Option[scalaz.Cofree[Option,Int]])]->org.scalacheck.Arbitrary[Option[scalaz.Cofree[Option,Int]]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Option[scalaz.Cofree[Option,Int]])]->scala.reflect.ClassTag[(Int, Option[scalaz.Cofree[Option,Int]])]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Option[scalaz.Cofree[Option,Int]])]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Cogen[(Long, Long)]
-
-org.scalacheck.Cogen[(Long, Long)]
-2 times = 13ms
-
-
-
-org.scalacheck.Cogen[(Long, Long)]->org.scalacheck.Cogen[Long]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Float,(Float, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Float,(Float, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-1 times = 8ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Float,(Float, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._1,Float,(Float, Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-monocle.Iso[monocle.Unary,Int] => ?{def shouldEqual: ?}
-
-monocle.Iso[monocle.Unary,Int] => ?{def shouldEqual: ?}
-1 times = 4ms
-
-
-
-monocle.Iso[monocle.Unary,Int] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.Iso[monocle.Unary,Int] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Equal[(monocle.Example, Boolean)]
-
-scalaz.Equal[(monocle.Example, Boolean)]
-1 times = 3ms
-
-
-
-scalaz.Equal[(monocle.Example, Boolean)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(monocle.Example, Boolean)]->scalaz.Equal[monocle.Example]
-
-
-
-
-
-((Any, Any, Any) => Nothing) => (?A1 => ?P)
-
-((Any, Any, Any) => Nothing) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[C]
-
-org.scalacheck.Arbitrary[C]
-1 times = 6ms
-
-
-
-org.scalacheck.Arbitrary[C]->scala.reflect.ClassTag[C]
-
-
-
-
-
-Double => Int
-
-Double => Int
-19 times = 6ms
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Double,(Double, Float :: Long :: Double :: shapeless.HNil)]->shapeless.ops.hlist.ReplaceAt.Aux[Long :: Double :: shapeless.HNil,shapeless.nat._1,Double,(Double, Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[String,String]
-
-shapeless.ops.hlist.Reverse.Aux[String,String]
-1 times = 3ms
-
-
-
-shapeless.ops.hlist.Reverse.Aux[String,String]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,String,String]
-
-
-
-
-
-scalaz.Functor[F$macro$12]
-
-scalaz.Functor[F$macro$12]
-1 times = 0ms
-
-
-
-scalaz.Equal[IsoSpec.this.AnObject.type]
-
-scalaz.Equal[IsoSpec.this.AnObject.type]
-1 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.IList[Int]]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Char]]->scala.reflect.ClassTag[List[Char]]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Char]]->List[Char] => Traversable[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Char]]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[List[Char]]->org.scalacheck.util.Buildable[Char,List[Char]]
-
-
-
-
-
-monocle.function.Each[shapeless.HNil,Any]->shapeless.Generic.Aux[shapeless.HNil,SGen]
-
-
-
-
-
-scalaz.Equal[Unit => monocle.Nullary]->scalaz.Equal[monocle.Nullary]
-
-
-
-
-
-scalaz.Equal[Unit => monocle.Nullary]->org.scalacheck.Arbitrary[Unit]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.Maybe[Long]]
-
-org.scalacheck.Arbitrary[scalaz.Maybe[Long]]
-1 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.Maybe[Long]]->org.scalacheck.Arbitrary[Long]
-
-
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long)]
-
-scalaz.Equal[(Int, Char, Boolean, String, Long)]
-1 times = 2ms
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long)]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long)]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long)]->scalaz.Equal[Char]
-
-
-
-
-
-scalaz.Equal[(Int, Char, Boolean, String, Long)]->scalaz.Equal[Long]
-
-
-
-
-
-monocle.function.Empty[List[Char]]
-
-monocle.function.Empty[List[Char]]
-1 times = 1ms
-
-
-
-scalaz.Category[monocle.Prism]
-
-scalaz.Category[monocle.Prism]
-1 times = 0ms
-
-
-
-org.scalacheck.Cogen[(String, Char)]->org.scalacheck.Cogen[Char]
-
-
-
-
-
-org.scalacheck.Cogen[(String, Char)]->org.scalacheck.Cogen[String]
-
-
-
-
-
-scalaz.Category[monocle.Setter]
-
-scalaz.Category[monocle.Setter]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int] => scalaz.OneAnd[Stream,Int]]
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int] => scalaz.OneAnd[Stream,Int]]
-1 times = 25ms
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int] => scalaz.OneAnd[Stream,Int]]->org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int] => scalaz.OneAnd[Stream,Int]]->org.scalacheck.Cogen[scalaz.OneAnd[Stream,Int]]
-
-
-
-
-
-org.scalacheck.Arbitrary[scalaz.OneAnd[Stream,Int] => scalaz.OneAnd[Stream,Int]]->scala.reflect.ClassTag[scalaz.OneAnd[Stream,Int] => scalaz.OneAnd[Stream,Int]]
-
-
-
-
-
-org.scalatest.enablers.CheckerAsserting[ASSERTION]
-
-org.scalatest.enablers.CheckerAsserting[ASSERTION]
-1 times = 0ms
-
-
-
-scalaz.Equal[UnsafeSelectSpec.this.Person]
-
-scalaz.Equal[UnsafeSelectSpec.this.Person]
-1 times = 0ms
-
-
-
-a1.tail.type => ?{def :+: ?}
-
-a1.tail.type => ?{def :+: ?}
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => (?A1 => ?P)
-
-(=> (Any, Any, Any) => Nothing) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)]->scala.reflect.ClassTag[(Char, Boolean, String, Long, Float)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[Long]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)]->org.scalacheck.Arbitrary[Float]
-
-
-
-
-
-monocle.Iso[monocle.Nullary,Unit] => ?{def shouldEqual: ?}
-
-monocle.Iso[monocle.Nullary,Unit] => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-monocle.Iso[monocle.Nullary,Unit] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.Iso[monocle.Nullary,Unit] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.ops.hlist.Init[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]->shapeless.ops.hlist.Init[Char :: Float :: Long :: Double :: shapeless.HNil]
-
-
-
-
-
-monocle.Nullary => ?{def shouldEqual: ?}
-
-monocle.Nullary => ?{def shouldEqual: ?}
-1 times = 2ms
-
-
-
-monocle.Nullary => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.Nullary => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Equal[Option[PrismSpec.this.IntOrString]]->scalaz.Equal[PrismSpec.this.IntOrString]
-
-
-
-
-
-((Int, Stream[Int])) => ?{def ===: ?}
-
-((Int, Stream[Int])) => ?{def ===: ?}
-1 times = 0ms
-
-
-
-monocle.function.Index[monocle.function.MMap[Int,String],Int,String]
-
-monocle.function.Index[monocle.function.MMap[Int,String],Int,String]
-1 times = 0ms
-
-
-
-scalaz.Equal[monocle.function.Raw]
-
-scalaz.Equal[monocle.function.Raw]
-6 times = 4ms
-
-
-
-org.scalacheck.Arbitrary[((String, Boolean)) => (String, Boolean)]
-
-org.scalacheck.Arbitrary[((String, Boolean)) => (String, Boolean)]
-1 times = 36ms
-
-
-
-org.scalacheck.Arbitrary[((String, Boolean)) => (String, Boolean)]->org.scalacheck.Arbitrary[(String, Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((String, Boolean)) => (String, Boolean)]->org.scalacheck.Cogen[(String, Boolean)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((String, Boolean)) => (String, Boolean)]->scala.reflect.ClassTag[((String, Boolean)) => (String, Boolean)]
-
-
-
-
-
-(=> String) => Int
-
-(=> String) => Int
-17 times = 2ms
-
-
-
-monocle.Arities => ?{def shouldEqual: ?}
-
-monocle.Arities => ?{def shouldEqual: ?}
-4 times = 8ms
-
-
-
-monocle.Arities => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.Arities => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Equal[Boolean \/ Int]
-
-scalaz.Equal[Boolean / Int]
-2 times = 8ms
-
-
-
-scalaz.Equal[Boolean \/ Int]->scalaz.Order[Boolean]
-
-
-
-
-
-scalaz.Equal[Boolean \/ Int]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Boolean \/ Int]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[Boolean \/ Int]->scalaz.Order[Int]
-
-
-
-
-
-scalaz.Equal[Stream[scalaz.Cofree[Stream,A]]]->scalaz.Equal[scalaz.Cofree[Stream,A]]
-
-
-
-
-
-org.scalacheck.Arbitrary[T[A]]
-
-org.scalacheck.Arbitrary[T[A]]
-1 times = 5ms
-
-
-
-org.scalacheck.Arbitrary[T[A]]->scala.reflect.ClassTag[T[A]]
-
-
-
-
-
-scalaz.Functor[F$macro$3]
-
-scalaz.Functor[F$macro$3]
-1 times = 0ms
-
-
-
-scalaz.Equal[(IsoSpec.this.IntWrapper, Boolean)]
-
-scalaz.Equal[(IsoSpec.this.IntWrapper, Boolean)]
-1 times = 5ms
-
-
-
-scalaz.Equal[(IsoSpec.this.IntWrapper, Boolean)]->scalaz.Equal[Boolean]
-
-
-
-
-
-scalaz.Equal[(IsoSpec.this.IntWrapper, Boolean)]->scalaz.Equal[IsoSpec.this.IntWrapper]
-
-
-
-
-
-scalaz.Category[monocle.Lens]
-
-scalaz.Category[monocle.Lens]
-1 times = 0ms
-
-
-
-monocle.function.Field2[(Boolean, Char, Int, Long, Float, Double),Char]
-
-monocle.function.Field2[(Boolean, Char, Int, Long, Float, Double),Char]
-1 times = 3ms
-
-
-
-monocle.function.Field2[(Boolean, Char, Int, Long, Float, Double),Char]->shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._1.N,Char]
-
-
-
-
-
-monocle.function.Reverse[String,String]
-
-monocle.function.Reverse[String,String]
-1 times = 9ms
-
-
-
-monocle.function.Reverse[String,String]->shapeless.ops.tuple.Reverse.Aux[String,String]
-
-
-
-
-
-monocle.function.Reverse[String,String]->shapeless.ops.hlist.Reverse.Aux[String,String]
-
-
-
-
-
-shapeless.ops.hlist.ReplaceAt.Aux[HListSpec.this.H,shapeless.nat._3.N,Float,(Float, HListSpec.this.H)]->shapeless.ops.hlist.ReplaceAt.Aux[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2,Float,(Float, Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil)]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean => Boolean]
-
-org.scalacheck.Arbitrary[Boolean => Boolean]
-17 times = 253ms
-
-
-
-org.scalacheck.Arbitrary[Boolean => Boolean]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean => Boolean]->scala.reflect.ClassTag[Boolean => Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[Boolean => Boolean]->org.scalacheck.Cogen[Boolean]
-
-
-
-
-
-monocle.function.Field6[(Boolean, Char, Int, Long, Float, Double),Double]
-
-monocle.function.Field6[(Boolean, Char, Int, Long, Float, Double),Double]
-1 times = 3ms
-
-
-
-monocle.function.Field6[(Boolean, Char, Int, Long, Float, Double),Double]->shapeless.ops.hlist.At.Aux[(Boolean, Char, Int, Long, Float, Double),shapeless.nat._5.N,Double]
-
-
-
-
-
-scalaz.Zip[[β$0$]monocle.Getter[String,β$0$]]
-
-scalaz.Zip[[β$0$]monocle.Getter[String,β$0$]]
-1 times = 2ms
-
-
-
-scalaz.Compose[monocle.Setter]
-
-scalaz.Compose[monocle.Setter]
-1 times = 0ms
-
-
-
-monocle.function.Possible[scala.util.Try[Int],Int]
-
-monocle.function.Possible[scala.util.Try[Int],Int]
-1 times = 0ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[Int]]
-
-org.scalactic.Equality[scalaz.Id.Id[Int]]
-1 times = 2ms
-
-
-
-org.scalactic.Equality[scalaz.Id.Id[Int]]->scalaz.Equal[scalaz.Id.Id[Int]]
-
-
-
-
-
-Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil => ?{def ===: ?}
-
-Int :: Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil => ?{def ===: ?}
-1 times = 0ms
-
-
-
-scalaz.Equal[List[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[List[Int]]->scalaz.Order[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[MacroOutSideMonocleSpec.this.Bar1]->scala.reflect.ClassTag[MacroOutSideMonocleSpec.this.Bar1]
-
-
-
-
-
-(=> Long) => Int
-
-(=> Long) => Int
-19 times = 2ms
-
-
-
-(Any => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-(Any => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-scalaz.Equal[Either[String,Int]]
-
-scalaz.Equal[Either[String,Int]]
-2 times = 4ms
-
-
-
-scalaz.Equal[Either[String,Int]]->scalaz.Equal[String]
-
-
-
-
-
-scalaz.Equal[Either[String,Int]]->scalaz.Equal[Int]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int]->shapeless.Generic.Aux[Int :: Int :: shapeless.HNil,SGen]
-
-
-
-
-
-monocle.function.Each[Int :: Int :: shapeless.HNil,Int]->monocle.function.Each[Int :: shapeless.HNil,Int]
-
-
-
-
-
-monocle.Iso[monocle.Binary,(String, Int)] => ?{def shouldEqual: ?}
-
-monocle.Iso[monocle.Binary,(String, Int)] => ?{def shouldEqual: ?}
-1 times = 3ms
-
-
-
-monocle.Iso[monocle.Binary,(String, Int)] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-monocle.Iso[monocle.Binary,(String, Int)] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int)]
-1 times = 10ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)]->scala.reflect.ClassTag[(Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[String \/ Int => String \/ Int]
-
-org.scalacheck.Arbitrary[String / Int => String / Int]
-1 times = 18ms
-
-
-
-org.scalacheck.Arbitrary[String \/ Int => String \/ Int]->scala.reflect.ClassTag[String \/ Int => String \/ Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[String \/ Int => String \/ Int]->org.scalacheck.Arbitrary[String \/ Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[String \/ Int => String \/ Int]->org.scalacheck.Cogen[String \/ Int]
-
-
-
-
-
-org.scalacheck.Cogen[scalaz.Tree[Int]]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-Option[PrismSpec.this.IntOrString] => ?{def shouldEqual: ?}
-
-Option[PrismSpec.this.IntOrString] => ?{def shouldEqual: ?}
-4 times = 7ms
-
-
-
-Option[PrismSpec.this.IntOrString] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[PrismSpec.this.IntOrString] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,HListSpec.this.H,HListSpec.this.ReverseH]->shapeless.ops.hlist.Reverse.Reverse0[Int :: shapeless.HNil,Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil,HListSpec.this.ReverseH]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Stream[Int]]
-
-org.scalacheck.Shrink[scala.collection.immutable.Stream[Int]]
-5 times = 49ms
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Stream[Int]]->scala.collection.immutable.Stream[Int] => Traversable[Int]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Stream[Int]]->org.scalacheck.Shrink[Int]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Stream[Int]]->Integral[scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Stream[Int]]->org.scalacheck.util.Buildable[Int,scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-org.scalacheck.Shrink[scala.collection.immutable.Stream[Int]]->Fractional[scala.collection.immutable.Stream[Int]]
-
-
-
-
-
-scalaz.Equal[scala.collection.immutable.Stream[Int]]->scalaz.Equal[Int]
-
-
-
-
-
-scalaz.Equal[Option[scalaz.NonEmptyList[Int]]]
-
-scalaz.Equal[Option[scalaz.NonEmptyList[Int]]]
-1 times = 1ms
-
-
-
-scalaz.Equal[Option[scalaz.NonEmptyList[Int]]]->scalaz.Equal[scalaz.NonEmptyList[Int]]
-
-
-
-
-
-monocle.function.Cons[scalaz.IList[Char],Char]
-
-monocle.function.Cons[scalaz.IList[Char],Char]
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Unit \/ Int]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[Unit \/ Int]->org.scalacheck.Arbitrary[Unit]
-
-
-
-
-
-scalaz.Equal[java.util.UUID]
-
-scalaz.Equal[java.util.UUID]
-1 times = 0ms
-
-
-
-monocle.function.Cons1[scalaz.Cofree[Option,Int],Int,Option[scalaz.Cofree[Option,Int]]]
-
-monocle.function.Cons1[scalaz.Cofree[Option,Int],Int,Option[scalaz.Cofree[Option,Int]]]
-1 times = 3ms
-
-
-
-monocle.function.Cons1[scalaz.Cofree[Option,Int],Int,Option[scalaz.Cofree[Option,Int]]]->shapeless.ops.hlist.IsHCons.Aux[scalaz.Cofree[Option,Int],Int,Option[scalaz.Cofree[Option,Int]]]
-
-
-
-
-
-((Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-((Any, Any, Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.Init[Float :: Long :: Double :: shapeless.HNil]->shapeless.ops.hlist.Init[Long :: Double :: shapeless.HNil]
-
-
-
-
-
-monocle.Iso[MacroOutSideMonocleSpec.this.Example,Int] => monocle.Iso[MacroOutSideMonocleSpec.this.Example,_$1]
-
-monocle.Iso[MacroOutSideMonocleSpec.this.Example,Int] => monocle.Iso[MacroOutSideMonocleSpec.this.Example,_$1]
-1 times = 0ms
-
-
-
-monocle.Iso[monocle.Binary,(String, Int)] => monocle.Iso[monocle.Binary,_$1]
-
-monocle.Iso[monocle.Binary,(String, Int)] => monocle.Iso[monocle.Binary,_$1]
-1 times = 0ms
-
-
-
-monocle.function.Empty[Vector[Int]]
-
-monocle.function.Empty[Vector[Int]]
-1 times = 0ms
-
-
-
-scalaz.Equal[monocle.Nullary => Unit]->scalaz.Equal[Unit]
-
-
-
-
-
-scalaz.Equal[monocle.Nullary => Unit]->org.scalacheck.Arbitrary[monocle.Nullary]
-
-
-
-
-
-scalaz.Choice[monocle.Optional]
-
-scalaz.Choice[monocle.Optional]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[Unit]->scala.reflect.ClassTag[Unit]
-
-
-
-
-
-shapeless.ops.hlist.Init.Aux[HListSpec.this.H,HListSpec.this.HInit]->shapeless.ops.hlist.Init[Boolean :: Char :: Float :: Long :: Double :: shapeless.HNil]
-
-
-
-
-
-Option[scalaz.Cofree[Option,A]] => ?{def ===: ?}
-
-Option[scalaz.Cofree[Option,A]] => ?{def ===: ?}
-1 times = 4ms
-
-
-
-Option[scalaz.Cofree[Option,A]] => ?{def ===: ?}->scalaz.Equal[Option[scalaz.Cofree[Option,A]]]
-
-
-
-
-
-org.scalacheck.Cogen[Unit \/ Int]->org.scalacheck.Cogen[Unit]
-
-
-
-
-
-org.scalacheck.Cogen[Unit \/ Int]->org.scalacheck.Cogen[Int]
-
-
-
-
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.ExampleType[Int],Option[Int]]) => monocle.Iso[MacroOutSideMonocleSpec.this.ExampleType[Int],_$1]
-
-(=> monocle.Iso[MacroOutSideMonocleSpec.this.ExampleType[Int],Option[Int]]) => monocle.Iso[MacroOutSideMonocleSpec.this.ExampleType[Int],_$1]
-1 times = 0ms
-
-
-
-scalaz.Maybe[A] => org.scalacheck.Gen[scalaz.Maybe[A]]
-
-scalaz.Maybe[A] => org.scalacheck.Gen[scalaz.Maybe[A]]
-1 times = 1ms
-
-
-
-monocle.function.Empty[scalaz.ISet[Int]]
-
-monocle.function.Empty[scalaz.ISet[Int]]
-1 times = 0ms
-
-
-
-(=> (Any, Any, Any) => Nothing) => ((?A1, ?A2) => ?P)
-
-(=> (Any, Any, Any) => Nothing) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-shapeless.ops.hlist.At[Char :: Float :: Long :: Double :: shapeless.HNil,shapeless.nat._3]->shapeless.ops.hlist.At[Float :: Long :: Double :: shapeless.HNil,shapeless.nat._2]
-
-
-
-
-
-org.scalacheck.Arbitrary[Throwable]->scala.reflect.ClassTag[Throwable]
-
-
-
-
-
-monocle.function.At[scala.collection.immutable.Map[Int,String],Int,Option[A]]
-
-monocle.function.At[scala.collection.immutable.Map[Int,String],Int,Option[A]]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[((Int,)) => (Int,)]
-
-org.scalacheck.Arbitrary[((Int,)) => (Int,)]
-1 times = 12ms
-
-
-
-org.scalacheck.Arbitrary[((Int,)) => (Int,)]->scala.reflect.ClassTag[((Int,)) => (Int,)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int,)) => (Int,)]->org.scalacheck.Arbitrary[(Int,)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((Int,)) => (Int,)]->org.scalacheck.Cogen[(Int,)]
-
-
-
-
-
-Int => ?{def shouldEqual: ?}
-
-Int => ?{def shouldEqual: ?}
-28 times = 157ms
-
-
-
-Int => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Int => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-monocle.function.At[Long,monocle.refined.ZeroTo[Int(63)],Boolean]
-
-monocle.function.At[Long,monocle.refined.ZeroTo[Int(63)],Boolean]
-1 times = 0ms
-
-
-
-Stream[Int] => ?{def ===: ?}
-
-Stream[Int] => ?{def ===: ?}
-4 times = 2ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int)]
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int)]
-1 times = 15ms
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int)]->scala.reflect.ClassTag[(Int, Int, Int, Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Int, Int, Int)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)]->org.scalacheck.Arbitrary[Boolean]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)]->org.scalacheck.Arbitrary[String]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)]->org.scalacheck.Arbitrary[Long]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)]->scala.reflect.ClassTag[(Int, Char, Boolean, String, Long)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, Char, Boolean, String, Long)]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(scalaz.IList[Char], Char)]->org.scalacheck.Arbitrary[scalaz.IList[Char]]
-
-
-
-
-
-org.scalacheck.Arbitrary[(scalaz.IList[Char], Char)]->scala.reflect.ClassTag[(scalaz.IList[Char], Char)]
-
-
-
-
-
-org.scalacheck.Arbitrary[(scalaz.IList[Char], Char)]->org.scalacheck.Arbitrary[Char]
-
-
-
-
-
-scalaz.Equal[ProductSpec.this.Permissions]
-
-scalaz.Equal[ProductSpec.this.Permissions]
-1 times = 0ms
-
-
-
-monocle.function.Cons1[scalaz.NonEmptyList[Int],Int,scalaz.IList[Int]]
-
-monocle.function.Cons1[scalaz.NonEmptyList[Int],Int,scalaz.IList[Int]]
-1 times = 2ms
-
-
-
-monocle.function.Cons1[scalaz.NonEmptyList[Int],Int,scalaz.IList[Int]]->shapeless.ops.hlist.IsHCons.Aux[scalaz.NonEmptyList[Int],Int,scalaz.IList[Int]]
-
-
-
-
-
-scalaz.Equal[A6]
-
-scalaz.Equal[A6]
-1 times = 1ms
-
-
-
-Option[List[Int]] => ?{def shouldEqual: ?}
-
-Option[List[Int]] => ?{def shouldEqual: ?}
-4 times = 8ms
-
-
-
-Option[List[Int]] => ?{def shouldEqual: ?}->org.scalactic.Prettifier
-
-
-
-
-
-Option[List[Int]] => ?{def shouldEqual: ?}->org.scalactic.source.Position
-
-
-
-
-
-scalaz.Profunctor[monocle.Getter]
-
-scalaz.Profunctor[monocle.Getter]
-1 times = 1ms
-
-
-
-org.scalacheck.Arbitrary[((List[Int], Int)) => (List[Int], Int)]
-
-org.scalacheck.Arbitrary[((List[Int], Int)) => (List[Int], Int)]
-1 times = 25ms
-
-
-
-org.scalacheck.Arbitrary[((List[Int], Int)) => (List[Int], Int)]->org.scalacheck.Arbitrary[(List[Int], Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((List[Int], Int)) => (List[Int], Int)]->scala.reflect.ClassTag[((List[Int], Int)) => (List[Int], Int)]
-
-
-
-
-
-org.scalacheck.Arbitrary[((List[Int], Int)) => (List[Int], Int)]->org.scalacheck.Cogen[(List[Int], Int)]
-
-
-
-
-
-shapeless.ops.hlist.Reverse.Aux[Int :: shapeless.HNil,L2]->shapeless.ops.hlist.Reverse.Reverse0[shapeless.HNil,Int :: shapeless.HNil,Out0]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, (Char, Boolean, String, Long, Float))]->scala.reflect.ClassTag[(Int, (Char, Boolean, String, Long, Float))]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, (Char, Boolean, String, Long, Float))]->org.scalacheck.Arbitrary[Int]
-
-
-
-
-
-org.scalacheck.Arbitrary[(Int, (Char, Boolean, String, Long, Float))]->org.scalacheck.Arbitrary[(Char, Boolean, String, Long, Float)]
-
-
-
-
-
-org.scalacheck.Arbitrary[monocle.refined.LowerCaseChar]->eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined]
-
-
-
-
-
-org.scalactic.Equality[List[String]]
-
-org.scalactic.Equality[List[String]]
-1 times = 1ms
-
-
-
-org.scalactic.Equality[List[String]]->scalaz.Equal[List[String]]
-
-
-
-
-
diff --git a/docs/plugins/sbt-plugin.md b/docs/plugins/sbt-plugin.md
new file mode 100644
index 0000000..3a5a6d5
--- /dev/null
+++ b/docs/plugins/sbt-plugin.md
@@ -0,0 +1,43 @@
+---
+id: sbt-plugin
+title: SBT Plugin
+---
+
+The SBT plugin allows users to warm up the compiler before measuring compilation times
+and analyzing statistics. This plugin is simple in its goals and bundles a set
+of tips that users of this plugin must take into account to get reliable data.
+
+### Installation
+
+Add the plugin into `project/plugins.sbt`:
+
+```scala
+addSbtPlugin("ch.epfl.scala" % "sbt-scalac-profiling" % "@SBT_PLUGIN_VERSION@")
+```
+
+### Usage
+
+Run the `profilingWarmupCompiler` task in SBT in your CI / local machine
+before actually performing compilation to gather the data to build graphs.
+The default warmup duration is 60 seconds. You can modify it like this:
+
+```diff
+// setting the warmup duration to 30 globally
++ Global / profilingWarmupDuration := 30
+// or setting the warmup duration to 50 in one project
+val myProject = project.settings(
++ profilingWarmupDuration := 50
+)
+```
+
+### Several tips
+
+To get reliable and predictable data, your infrastructure needs to be stable.
+These are some encouraged practices:
+
+1. The cpu load of the running machine must be kept low. Remove unnecessary processes and cron
+ jobs that may be running on the background.
+2. Enable the `-Vstatistics` option before warming up the compiler.
+ Otherwise, the warm-up will trigger JVM to decompile code and throw away optimized code.
+ The same applies for other flags/build changes that affect compilation.
+3. **Do not reload** the SBT shell, or you'll need to warm up the compiler again.
diff --git a/docs/scalac-flamegraph.svg b/docs/scalac-flamegraph.svg
deleted file mode 100644
index 4566d3f..0000000
--- a/docs/scalac-flamegraph.svg
+++ /dev/null
@@ -1,3422 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Flame Graph
-
-Reset Zoom
-Search
-
-
-scala.collection.generic.CanBuildFrom[List[MultiChoiceSetting.this.domain.Value],String,List[String]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Type,List[Typers.this.global.Type]] (1 ms, 0.04%)
-
-
-
-Array[String] => ?{def map: ?} (3 ms, 0.12%)
-
-
-
-res.type => ?{def toList: ?} (1 ms, 0.04%)
-
-
-
-args.type => ?{def toList: ?} (9 ms, 0.37%)
-
-
-
-segments.type => ?{def init: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],Char,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],scala.tools.nsc.util.ClassPath,List[scala.tools.nsc.util.ClassPath]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[java.net.URL],scala.tools.nsc.util.ClassPath,That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[scala.tools.asm.Attribute] (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.BType] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.Tree],Reifiers.this.global.Tree,List[Reifiers.this.global.Tree]] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[CNF.this.Clause] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Duplicators.this.global.DelambdafyTarget.type] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.ReifyBindingAttachment] (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[NodePrinters.this.global.AnnotationInfo],String,That] (1 ms, 0.04%)
-
-
-
-String(" ") => ?{def *: ?} (2 ms, 0.08%)
-
-
-
-Parsers.this.Offset => ?{def max: ?} (1 ms, 0.04%)
-
-
-
-treeStrings.type => ?{def ::: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Type,That] (6 ms, 0.25%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Unapplies.this.global.ValDef],Unapplies.this.global.Tree,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Symbol],BTypesFromSymbols.this.ClassBType,That] (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Delambdafy.this.global.OuterArgCanBeElided.type] (5 ms, 0.21%)
-
-
-
-scala.reflect.ClassTag[Solver.this.Clause] (3 ms, 0.12%)
-
-
-
-scala.reflect.OptManifest[scala.tools.nsc.io.Directory] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => BCodeBodyBuilder.this.global.Tree (8 ms, 0.33%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeInfo.this.global.Tree],TreeInfo.this.global.Type,List[TreeInfo.this.global.Type]] (2 ms, 0.08%)
-
-
-
-Option[String] => scala.collection.GenTraversableOnce[B] (4 ms, 0.17%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Parsers.this.global.Symbol (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Symbol],BCodeBodyBuilder.this.bTypes.BType,List[BCodeBodyBuilder.this.bTypes.BType]] (1 ms, 0.04%)
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Holes.this.global.Symbol (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.Tree,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[CommonSubconditionElimination.this.Test],(MatchOptimization.this.global.Symbol, MatchOptimization.this.global.gen.global.RefTree),That] (1 ms, 0.04%)
-
-
-
-AbstractFileReader.this.buf.type => ?{def slice: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],Implicits.this.global.Tree,That] (1 ms, 0.04%)
-
-
-
-Array[String] => ?{def foldLeft: ?} (1 ms, 0.04%)
-
-
-
-JavaScanners.this.global.javanme.THISkw.type => ?{def ->: ?} (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,That] (16 ms, 0.66%)
-
-
-
-Char('.') => String (1 ms, 0.04%)
-
-
-
-List[Validators.this.global.Symbol] => scala.collection.GenTraversableOnce[B] (14 ms, 0.58%)
-
-
-
-Implicits.this.global.Tree => Implicits.this.SearchResult (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => => String (2 ms, 0.08%)
-
-
-
-javaFiles.type => ?{def isEmpty: ?} (1 ms, 0.04%)
-
-
-
-String("during phase") => ?{def ->: ?} (4 ms, 0.17%)
-
-
-
-String => ?{def r: ?} (1 ms, 0.04%)
-
-
-
-Array[java.lang.reflect.Method] => ?{def find: ?} (10 ms, 0.41%)
-
-
-
-JavaParsers.this.global.Position => Int (1 ms, 0.04%)
-
-
-
-Taggers.this.c.universe.definitions.LongTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.tools.nsc.Global.<refinement>.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Map[Reifiers.this.global.Name,Set[Reifiers.this.global.TermName]],Iterator[Reifiers.this.global.Apply],That] (20 ms, 0.83%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[InlinerHeuristics.this.postProcessor.callGraph.postProcessor.bTypes.ClassBType],String,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],String,That] (14 ms, 0.58%)
-
-
-
-String => ?{def apply: ?} (3 ms, 0.12%)
-
-
-
-Array[java.lang.reflect.Constructor[_]] => ?{def filter: ?} (2 ms, 0.08%)
-
-
-
-tpname.type => ?{def ->: ?} (2 ms, 0.08%)
-
-
-
-JavaScanners.this.global.javanme.FINALkw.type => ?{def ->: ?} (4 ms, 0.17%)
-
-
-
-(=> Unit) => Int (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Type],Checkable.this.global.Type,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Symbol],SymbolTracker.this.Node,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[scala.tools.asm.Type],scala.tools.asm.Type,That] (3 ms, 0.12%)
-
-
-
-sym.type => ?{def ->: ?} (8 ms, 0.33%)
-
-
-
-sym.type => ?{def +: ?} (4 ms, 0.17%)
-
-
-
-scala.reflect.ClassTag[ScannersCommon.this.Token] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Erasure.this.OriginalTreeAttachment] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[MarkupParser.this.parser.symbXMLBuilder.TextAttache] (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],SymbolTables.this.global.TermName,That] (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Type],ContextErrors.this.global.Type,That] (1 ms, 0.04%)
-
-
-
-(=> Int) => ?{def -=: ?} (2 ms, 0.08%)
-
-
-
-Int(1) => ?{def to: ?} (4 ms, 0.17%)
-
-
-
-String("tpe %s is an unresolved spliceable type") => ?{def format: ?} (3 ms, 0.12%)
-
-
-
-frame.type => ?{def getValue: ?} (5 ms, 0.21%)
-
-
-
-(=> Unit) => StringBuilder (1 ms, 0.04%)
-
-
-
-rtpe.type => ?{def +: ?} (1 ms, 0.04%)
-
-
-
-acc.NameType => ?{def localName: ?} (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.MethodType] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.Tree,List[Parsers.this.global.Tree]] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.Type,That] (1 ms, 0.04%)
-
-
-
-(=> List[Validators.this.global.Symbol]) => Validators.this.global.Type (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.Tree,List[Reshape.this.global.Tree]] (2 ms, 0.08%)
-
-
-
-String("macro classloader: initializing from -cp: %s") => ?{def format: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[SymbolTables.this.global.Symbol],SymbolTables.this.global.TermName,That] (4 ms, 0.17%)
-
-
-
-(=> Double) => Int (25 ms, 1.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.bTypes.ClassBType],tools.nsc.backend.jvm.BTypes.InternalName,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.AbstractInsnNode,That] (1 ms, 0.04%)
-
-
-
-frame.type => ?{def peekStack: ?} (7 ms, 0.29%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],CopyProp.this.ProducedValue,scala.collection.TraversableOnce[CopyProp.this.ProducedValue]] (1 ms, 0.04%)
-
-
-
-Array[String] => ?{def /:: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Enclosures.this.universe.analyzer.OpenImplicit],Enclosures.this.ImplicitCandidate,List[Enclosures.this.ImplicitCandidate]] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.CaseDef],Erasure.this.global.CaseDef,List[Erasure.this.global.CaseDef]] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[scala.tools.asm.Label] (2 ms, 0.08%)
-
-
-
-String("Compiling source file%s: %s to %s") => ?{def format: ?} (3 ms, 0.12%)
-
-
-
-Unit => String (14 ms, 0.58%)
-
-
-
-cond.type => ?{def ->: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.SubComponent],String,That] (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[CommonSubconditionElimination.this.Prop],CommonSubconditionElimination.this.Prop,Set[CommonSubconditionElimination.this.Prop]] (1 ms, 0.04%)
-
-
-
-Ordering[String] (2 ms, 0.08%)
-
-
-
-String => ?{def take: ?} (3 ms, 0.12%)
-
-
-
-Reshape.this.global.Symbol => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => SpecializeTypes.this.TypeEnv (1 ms, 0.04%)
-
-
-
-types.type => ?{def indices: ?} (2 ms, 0.08%)
-
-
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def expandQuasiquote: ?} (4 ms, 0.17%)
-
-
-
-SyntheticMethods.this.global.TermSymbol => ?{def ->: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[TreeAndTypeAnalysis.this.global.Type]],List[TreeAndTypeAnalysis.this.global.Type],List[List[TreeAndTypeAnalysis.this.global.Type]]] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Char] (1 ms, 0.04%)
-
-
-
-Numeric[Long] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[SpecializeTypes.this.SpecializedSuperConstructorCallArgument.type] (1 ms, 0.04%)
-
-
-
-Taggers.this.c.universe.definitions.IntTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-Option[NamesDefaults.this.global.ValDef] => scala.collection.GenTraversableOnce[B] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],Validators.this.global.analyzer.global.TypeVar,That] (68 ms, 2.82%)
-sc..
-
-
-scala.collection.generic.CanBuildFrom[List[Extractors.this.global.Symbol],Extractors.this.global.Name,That] (5 ms, 0.21%)
-
-
-
-scala.reflect.internal.util.FreshNameCreator (10 ms, 0.41%)
-
-
-
-files.type => ?{def toList: ?} (1 ms, 0.04%)
-
-
-
-CleanUp.this.global.gen.global.RefTree => ?{def DOT: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[scala.tools.nsc.reporters.Reporter] (1 ms, 0.04%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,Boolean] => ?{def orThrow: ?} (10 ms, 0.41%)
-
-
-
-scala.reflect.ClassTag[Delambdafy.this.global.SAMFunction] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Metalevels.this.global.Symbol],Metalevels.this.global.TermName,That] (2 ms, 0.08%)
-
-
-
-(=> Unit) => Throwable (1 ms, 0.04%)
-
-
-
-String("reifee %s of type %s is not supported") => ?{def format: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Comparable[_ >: java.io.File with String <: java.io.Serializable] with java.io.Serializable],String,That] (3 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[BCodeSkelBuilder.this.global.UseInvokeSpecial.type] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.TypeTree,That] (6 ms, 0.25%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Placeholders.this.global.Tree],Placeholders.this.global.Tree,List[Placeholders.this.global.Tree]] (7 ms, 0.29%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.ValOrDefDef,That] (2 ms, 0.08%)
-
-
-
-sym.NameType => ?{def +: ?} (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[scala.tools.asm.Handle] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[String],String,That] (3 ms, 0.12%)
-
-
-
-Array[String] => ?{def mkString: ?} (1 ms, 0.04%)
-
-
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def interpolate: ?} (2 ms, 0.08%)
-
-
-
-Int => ?{def until: ?} (2 ms, 0.08%)
-
-
-
-Array[Long] => ?{def sum: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Map[String,String],(String, String),That] (2 ms, 0.08%)
-
-
-
-scala.math.Ordering[(String, String)] (4 ms, 0.17%)
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => ?{def &&: ?} (10 ms, 0.41%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Constructors.this.global.Tree, Constructors.this.global.Tree)],d.global.Tree forSome { val d: Constructors.this.global.specializeTypes.Duplicator },List[Constructors.this.global.Tree]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.io.File],String,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Int, Int)],DocComments.this.UseCase,That] (2 ms, 0.08%)
-
-
-
-TypeDiagnostics.this.global.TypeTag[DummyImplicit] (4 ms, 0.17%)
-
-
-
-AliasingFrame.this.aliases.type => ?{def toList: ?} (1 ms, 0.04%)
-
-
-
-String("Allowing %s to override %s because %s <:< %s") => ?{def format: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[PostProcessorFrontendAccessImpl.this.global.Symbol,scala.tools.nsc.io.AbstractFile],String,That] (1 ms, 0.04%)
-
-
-
-(=> (Nothing, Nothing)) => Int (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],scala.collection.immutable.Nil.type,That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Typers.this.ClassForCaseCompanionAttachment] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => JavaParsers.this.global.Symbol (1 ms, 0.04%)
-
-
-
-Taggers.this.c.universe.definitions.FloatTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-java.util.jar.Attributes.Name.MAIN_CLASS.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-jvmargs.type => ?{def isEmpty: ?} (1 ms, 0.04%)
-
-
-
-Ordering[scala.tools.nsc.util.ClassPath] (1 ms, 0.04%)
-
-
-
-fmt.type => ?{def format: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[ExtensionMethods.this.global.Symbol],String,That] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing, Nothing)) => MarkupParsers.this.Offset (3 ms, 0.12%)
-
-
-
-Solvable.this.cnf.type => ?{def ++: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.MacroExpanderAttachment] (4 ms, 0.17%)
-
-
-
-x$1.type => ?{def isLocalToReifee: ?} (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],String,That] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => scala.tools.nsc.typechecker.Analyzer.packageObjects.global.Symbol (3 ms, 0.12%)
-
-
-
-target.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Symbol],NamesDefaults.this.global.NamedType,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],String,That] (2 ms, 0.08%)
-
-
-
-((Nothing, Nothing)) => Parsers.this.global.Position (4 ms, 0.17%)
-
-
-
-scala.collection.mutable.Buffer[scala.tools.asm.tree.AnnotationNode] => ?{def asJava: ?} (3 ms, 0.12%)
-
-
-
-x$2.type => ?{def toImplicitCandidate: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[ToolBoxGlobal.this.FreeTypeSymbol],String,That] (3 ms, 0.12%)
-
-
-
-String("{}\n") => ?{def contains(x$1: ? >: Char): Boolean} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Symbol],Int,scala.collection.TraversableOnce[Int]] (1 ms, 0.04%)
-
-
-
-Array[Byte] => ?{def mkString: ?} (1 ms, 0.04%)
-
-
-
-(=> (Nothing, Nothing)) => String (5 ms, 0.21%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,Boolean] => ?{def get: ?} (11 ms, 0.46%)
-
-
-
-getter.NameType => ?{def setterName: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, String),That] (2 ms, 0.08%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BoxUnbox.this.postProcessor.bTypes.ClassInfo] => ?{def get: ?} (1 ms, 0.04%)
-
-
-
-scalaFiles.type => ?{def ++: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => java.awt.PopupMenu (1 ms, 0.04%)
-
-
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def materializeClassTag: ?} (2 ms, 0.08%)
-
-
-
-(=> String) => ?{def +=: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.SerializedLambda] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Parsers.this.Q.type] (7 ms, 0.29%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Symbol],BTypesFromSymbols.this.global.Symbol,That] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: V] (2 ms, 0.08%)
-
-
-
-TypeDiagnostics.this.global.Scope => TypeDiagnostics.this.global.Type (1 ms, 0.04%)
-
-
-
-scala.languageFeature.postfixOps (6 ms, 0.25%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.CaseDef],MatchTranslation.this.global.CaseDef,That] (1 ms, 0.04%)
-
-
-
-Macros.this.global.Scope => Macros.this.global.Type (1 ms, 0.04%)
-
-
-
-Array[Char] => ?{def drop: ?} (3 ms, 0.12%)
-
-
-
-Callsite.this.callee.type => ?{def get: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.MethodHandle] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Symbol],(SymbolTrackers.this.global.Symbol, Long),That] (1 ms, 0.04%)
-
-
-
-Array[Byte] => scala.collection.GenTraversableOnce[?] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(scala.reflect.internal.util.Position, (String, String))],(scala.reflect.internal.util.Position, String),List[(Global.this.Position, String)]] (1 ms, 0.04%)
-
-
-
-ContextErrors.this.Context (10 ms, 0.41%)
-
-
-
-prefixParts.type => ?{def head: ?} (2 ms, 0.08%)
-
-
-
-FastTrack.this.macros.global.Tree => FastTrack.this.macros.global.Symbol (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],Reifiers.this.global.Tree,List[ApplyReifier.this.global.Tree]] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[T]],List[T],List[List[T]]] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.TypeDef],ExtensionMethods.this.global.Symbol,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.AnnotationInfo],Unit,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Reifier.this.global.Symbol],Reifier.this.global.Symbol,That] (7 ms, 0.29%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[GenTypes.this.global.Symbol],GenTypes.this.global.Tree,That] (1 ms, 0.04%)
-
-
-
-Unit => List[States.this.global.Tree] (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],Validators.this.global.Type,List[Validators.this.global.Type]] (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],DocComments.this.Symbol,That] (2 ms, 0.08%)
-
-
-
-Array[Char] => IndexedSeq[Char] (1 ms, 0.04%)
-
-
-
-Double => Scanners.this.Offset (1 ms, 0.04%)
-
-
-
-labelMap.type => ?{def asJava: ?} (1 ms, 0.04%)
-
-
-
-(=> Float) => Int (21 ms, 0.87%)
-
-
-
-prefixParts.type => ?{def isEmpty: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Symbol],Checkable.this.global.TypeVar,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[CNF.this.Clause],CNF.this.Clause,CNF.this.Cnf] (1 ms, 0.04%)
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => Boolean (30 ms, 1.24%)
-
-
-
-MatchTranslation.this.global.Symbol => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-Int => ?{def +=: ?} (32 ms, 1.33%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,CallGraph.this.postProcessor.bTypes.ClassInfo] => ?{def orThrow: ?} (2 ms, 0.08%)
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => ?{def ||: ?} (13 ms, 0.54%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],(DocComments.this.Type, Boolean),List[(DocComments.this.Type, Boolean)]] (1 ms, 0.04%)
-
-
-
-String("%s(") => ?{def format: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Symbol],ExtensionMethods.this.global.Type,That] (1 ms, 0.04%)
-
-
-
-files.type => ?{def map: ?} (2 ms, 0.08%)
-
-
-
-Array[String] => ?{def toSeq: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit]] (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],Any,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.AnnotationInfo],Reshape.this.global.Tree,That] (3 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[UnCurry.this.global.TypeParamVarargsAttachment] (1 ms, 0.04%)
-
-
-
-arr.type => ?{def toList: ?} (2 ms, 0.08%)
-
-
-
-other.type => ?{def AS: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Global.this.CompilationUnit],scala.tools.nsc.Global.Run.trackerFactory.SymbolTracker,That] (1 ms, 0.04%)
-
-
-
-String => ?{def ->: ?} (4 ms, 0.17%)
-
-
-
-NullnessFrame.this.type => ?{def stackTop: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.mutable.Set[Implicits.this.global.Type] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],DocComments.this.Symbol#TypeOfClonedSymbol,List[DocComments.this.Symbol]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[ClosureOptimizer.this.postProcessor.callGraph.ArgInfo],(Int, ClosureOptimizer.this.postProcessor.callGraph.ArgInfo),That] (2 ms, 0.08%)
-
-
-
-Erasure.this.global.Scope => Erasure.this.global.Type (1 ms, 0.04%)
-
-
-
-Unit => Namers.this.global.Type (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[Int],Char,Stream[Char]] (3 ms, 0.12%)
-
-
-
-Double => Long (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,BTypesFromClassfile.this.postProcessor.bTypes.ClassBType,List[BTypesFromClassfile.this.postProcessor.bTypes.ClassBType]] (1 ms, 0.04%)
-
-
-
-code.type => ?{def indices: ?} (5 ms, 0.21%)
-
-
-
-scala.math.Ordering[(Int, String)] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Helpers.this.global.treeInfo.global.Symbol],Helpers.this.global.Symbol,That] (5 ms, 0.21%)
-
-
-
-Array[Int] => ?{def map: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type),That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],scala.tools.nsc.classpath.ClassPathEntries,That] (1 ms, 0.04%)
-
-
-
-Int => scala.tools.nsc.typechecker.ContextMode (1 ms, 0.04%)
-
-
-
-originNames.type => ?{def withFilter: ?} (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.Tree],Reifiers.this.UnapplyHole,That] (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[scala.runtime.StructuralCallSite] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.delambdafy.LambdaMetaFactoryCapable] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.TypeVar,That] (3 ms, 0.12%)
-
-
-
-((Nothing, Nothing)) => Printers.this.Symbol (2 ms, 0.08%)
-
-
-
-prefixParts.type => ?{def tail: ?} (2 ms, 0.08%)
-
-
-
-String => scala.reflect.io.Path (20 ms, 0.83%)
-
-
-
-cbuf.type => ?{def slice: ?} (6 ms, 0.25%)
-
-
-
-Array[Long] => ?{def take: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => Parsers.this.global.CompilationUnit (2 ms, 0.08%)
-
-
-
-Option[ZipArchiveFileLookup.this.archive.DirEntry] => ?{def toSeq: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Delambdafy.this.LambdaMetaFactoryCapable] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[global.analyzer.Context],global.analyzer.global.Tree,That] (7 ms, 0.29%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],List[SpecializeTypes.this.global.Type],List[List[SpecializeTypes.this.global.Type]]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Symbol,That] (3 ms, 0.12%)
-
-
-
-callsite.callee.type => ?{def get: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.universe.analyzer.OpenImplicit],Typers.this.ImplicitCandidate,List[Typers.this.ImplicitCandidate]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[LambdaLifter.this.SymSet],LambdaLift.this.global.Symbol,That] (2 ms, 0.08%)
-
-
-
-Option[Comparable[_ >: java.io.File with String <: java.io.Serializable] with java.io.Serializable] => scala.collection.GenTraversableOnce[B] (6 ms, 0.25%)
-
-
-
-Int(0) => ?{def until: ?} (17 ms, 0.71%)
-
-
-
-scala.reflect.ClassTag[T] (21 ms, 0.87%)
-
-
-
-Float => Int (28 ms, 1.16%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.Tree],UnCurry.this.global.Tree,That] (1 ms, 0.04%)
-
-
-
-(=> Unit) => Parsers.this.Location (2 ms, 0.08%)
-
-
-
-Taggers.this.c.universe.definitions.AnyValTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.UseInvokeSpecial.type] (1 ms, 0.04%)
-
-
-
-Double => Int (47 ms, 1.95%)
-D..
-
-
-scala.reflect.ClassTag[Erasure.this.global.TypeParamVarargsAttachment] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing, Nothing)) => Parsers.this.Offset (1 ms, 0.04%)
-
-
-
-Array[scala.tools.asm.Type] => ?{def map: ?} (1 ms, 0.04%)
-
-
-
-Array[String] => ?{def last: ?} (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[java.io.File] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Mixin.this.NeedStaticImpl.type] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Reshape.this.global.Name, Reshape.this.global.ClassfileAnnotArg)],Reshape.this.global.AssignOrNamedArg,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.TypeDef],Validators.this.global.Symbol,List[Validators.this.global.Symbol]] (2 ms, 0.08%)
-
-
-
-TreeAndTypeAnalysis.this.global.Scope => TreeAndTypeAnalysis.this.global.Type (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Symbol],String,That] (2 ms, 0.08%)
-
-
-
-Numeric[Int] (3 ms, 0.12%)
-
-
-
-Array[String] => Seq[String] (3 ms, 0.12%)
-
-
-
-parts.type => ?{def last: ?} (2 ms, 0.08%)
-
-
-
-Ordering[String] (1 ms, 0.04%)
-
-
-
-Duplicators.this.global.Scope => Duplicators.this.global.Type (1 ms, 0.04%)
-
-
-
-(=> Unit) => Boolean (4 ms, 0.17%)
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Extractors.this.global.Symbol (1 ms, 0.04%)
-
-
-
-member.type => ?{def +: ?} (2 ms, 0.08%)
-
-
-
-List[ContextErrors.this.global.Type] => scala.collection.TraversableLike[El1,Repr1] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[MultiChoiceSetting.this.domain.ValueSet,MultiChoiceSetting.this.domain.Value,MultiChoiceSetting.this.domain.ValueSet] (3 ms, 0.12%)
-
-
-
-frames.type => ?{def size: ?} (1 ms, 0.04%)
-
-
-
-None.type => scala.collection.GenTraversableOnce[?] (3 ms, 0.12%)
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.nsc.Settings (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[java.net.URL] (1 ms, 0.04%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.OptimizerWarning,(scala.tools.asm.tree.FieldNode, tools.nsc.backend.jvm.BTypes.InternalName)] => ?{def withFilter: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[utils.global.Symbol],utils.global.Tree,That] (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Tree],Constructors.this.global.Symbol,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],Errors.this.global.Position,That] (5 ms, 0.21%)
-
-
-
-scala.reflect.ClassTag[CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.BType] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => java.net.URI (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Enclosures.this.universe.PackageDef] (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[SpecializeTypes.this.global.ClassSymbol],SpecializeTypes.this.global.Type,That] (1 ms, 0.04%)
-
-
-
-((MatchTreeMaking.this.global.Symbol, MatchTreeMaking.this.global.Tree)) => (A1, A2) (1 ms, 0.04%)
-
-
-
-file.type => ?{def isPackage: ?} (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, String),List[(String, String)]] (1 ms, 0.04%)
-
-
-
-java.util.ListIterator[scala.tools.asm.tree.AbstractInsnNode] => ?{def asScala: ?} (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.ClassfileAnnotArg],Reshape.this.global.Tree,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[GenTrees.this.global.ImportSelector],GenTrees.this.global.Tree,List[GenTrees.this.global.Tree]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,List[String]] (8 ms, 0.33%)
-
-
-
-Array[Byte] => ?{def take: ?} (3 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[scala.beans.ScalaBeanInfo] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Metalevels.this.global.Tree],Metalevels.this.global.Symbol,That] (1 ms, 0.04%)
-
-
-
-Array[String] => ?{def filter: ?} (2 ms, 0.08%)
-
-
-
-java.util.List[scala.tools.asm.tree.MethodNode] => ?{def asScala: ?} (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[Inliner.this.postProcessor.callGraph.ArgInfo],(Int, Inliner.this.postProcessor.callGraph.ArgInfo),That] (2 ms, 0.08%)
-
-
-
-((Nothing, Nothing)) => DestructureTypes.this.global.Type (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Errors.this.global.Type],String,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],GenUtils.this.global.Tree,List[GenUtils.this.global.Tree]] (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],java.net.URL,Array[java.net.URL]] (1 ms, 0.04%)
-
-
-
-(=> Int) => ?{def +=: ?} (8 ms, 0.33%)
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.LambdaMetafactory] (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[AnyRef] (9 ms, 0.37%)
-
-
-
-argPos.type => ?{def indexWhere: ?} (2 ms, 0.08%)
-
-
-
-Set[Reifiers.this.global.TermName] => ?{def +=: ?} (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],String,That] (9 ms, 0.37%)
-
-
-
-Array[scala.tools.asm.Type] => scala.collection.GenSeq[?] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Symbol],ContextErrors.this.global.TypeBounds,That] (10 ms, 0.41%)
-
-
-
-scala.reflect.ClassTag[UnCurry.this.global.SAMFunction] (5 ms, 0.21%)
-
-
-
-Set[SymbolTrackers.this.global.Symbol] => List[SymbolTrackers.this.global.Symbol] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[List[String]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.gen.global.SymTree],Delambdafy.this.global.gen.global.Type,List[Delambdafy.this.global.Type]] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Sym],MatchAnalyzer.this.Const,List[MatchAnalyzer.this.Const]] (1 ms, 0.04%)
-
-
-
-c.type => ?{def AND: ?} (2 ms, 0.08%)
-
-
-
-scala.math.Ordering[SpecializeTypes.this.global.Type] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[String],(scala.tools.nsc.util.ClassPath, scala.tools.nsc.util.ClassPath),That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[scala.beans.BeanInfo] (1 ms, 0.04%)
-
-
-
-Evals.this.evalMirror.type => ?{def mkToolBox: ?} (6 ms, 0.25%)
-
-
-
-scala.math.Ordering[String] (20 ms, 0.83%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[MatchAnalyzer.this.Prop],MatchAnalyzer.this.Prop,That] (1 ms, 0.04%)
-
-
-
-Ordering[SymbolTracker.this.Node] (1 ms, 0.04%)
-
-
-
-(=> (Nothing, Nothing)) => Parsers.this.global.Position (2 ms, 0.08%)
-
-
-
-java.util.List[scala.tools.asm.tree.AnnotationNode] => ?{def asScala: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Extractors.this.global.Symbol (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[GenTypes.this.global.AnnotationInfo],GenTypes.this.global.Tree,List[GenTypes.this.global.Tree]] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing, Nothing)) => MethodSynthesis.this.global.Symbol (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[String],java.io.File,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Type],Infer.this.global.Type,List[Infer.this.global.Type]] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[SymbolTables.this.ReifyBindingAttachment] (7 ms, 0.29%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.CaseDef],Typers.this.global.CaseDef,List[Typers.this.global.CaseDef]] (1 ms, 0.04%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BCodeHelpers.this.bTypes.ClassInfo] => ?{def get: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[org.apache.tools.ant.types.Commandline.Argument],org.apache.tools.ant.types.Commandline.Argument,Seq[org.apache.tools.ant.types.Commandline.Argument]] (1 ms, 0.04%)
-
-
-
-Aliases.this.universe.WeakTypeTag[T] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],Typers.this.global.Type,That] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => SyntheticMethods.this.global.Symbol (2 ms, 0.08%)
-
-
-
-Implicits.this.InfoMap (3 ms, 0.12%)
-
-
-
-Ordering[SymbolTrackers.this.global.Symbol] (1 ms, 0.04%)
-
-
-
-(=> (Nothing, Nothing, Nothing)) => String (6 ms, 0.25%)
-
-
-
-((List[ContextErrors.this.global.Type], List[ContextErrors.this.global.TypeBounds])) => ?{def zipped: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[List[Parsers.this.global.ValDef]],String,That] (2 ms, 0.08%)
-
-
-
-_1.s.type => Boolean (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Set[scala.tools.asm.tree.AbstractInsnNode]],Set[scala.tools.asm.tree.AbstractInsnNode],Vector[Set[scala.tools.asm.tree.AbstractInsnNode]]] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[PatternTypers.this.global.Tree],PatternTypers.this.global.Tree,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.Type,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Buffer[scala.tools.asm.tree.ParameterNode],String,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SyntheticMethods.this.global.TermSymbol, () => SyntheticMethods.this.global.Tree)],(SyntheticMethods.this.global.TermSymbol, () => SyntheticMethods.this.global.Tree),That] (2 ms, 0.08%)
-
-
-
-java.util.List[scala.tools.asm.tree.FieldNode] => ?{def asScala: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Parsers.this.global.AtBoundIdentifierAttachment.type] (3 ms, 0.12%)
-
-
-
-Ordering[Int] (8 ms, 0.33%)
-
-
-
-Char => CharSequence (1 ms, 0.04%)
-
-
-
-(=> (Nothing, Nothing)) => Typers.this.global.Tree (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.ListMap[SymbolTables.this.global.Symbol,SymbolTables.this.global.Tree],(SymbolTables.this.global.Symbol, SymbolTables.this.global.Tree),scala.collection.immutable.ListMap[SymbolTables.this.global.Symbol,SymbolTables.this.global.Tree]] (3 ms, 0.12%)
-
-
-
-arg.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[TypeDiagnostics.this.global.AtBoundIdentifierAttachment.type] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Void] (1 ms, 0.04%)
-
-
-
-Infer.this.global.Scope => Infer.this.global.Type (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Holes.this.global.Symbol (5 ms, 0.21%)
-
-
-
-scala.reflect.ClassTag[Enclosures.this.universe.DefDef] (6 ms, 0.25%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[s.BooleanSetting],String,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.io.AbstractFile],scala.reflect.internal.util.BatchSourceFile,That] (1 ms, 0.04%)
-
-
-
-tree.type => ?{def MEMBER_==: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Tree,That] (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Type,That] (1 ms, 0.04%)
-
-
-
-clauses.type => ?{def :+: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Unapplies.this.global.TypeDef],Unapplies.this.global.Ident,List[Unapplies.this.global.Tree]] (1 ms, 0.04%)
-
-
-
-parts.type => ?{def init: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],String,That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.SuppressMacroExpansionAttachment.type] (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.macros.contexts.Context],scala.reflect.internal.util.Position,That] (2 ms, 0.08%)
-
-
-
-Unit => StringBuilder (3 ms, 0.12%)
-
-
-
-scala.languageFeature.implicitConversions (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[PatternExpansion.this.global.Type],PatternExpansion.this.global.Type,List[PatternExpansion.this.global.Type]] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.TypeVar,That] (1 ms, 0.04%)
-
-
-
-java.util.Iterator[java.nio.file.Path] => ?{def asScala: ?} (1 ms, 0.04%)
-
-
-
-vdef.name.type => ?{def dropLocal: ?} (1 ms, 0.04%)
-
-
-
-jvmargs.type => ?{def toList: ?} (1 ms, 0.04%)
-
-
-
-Constructors.this.global.Symbol => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],Placeholders.this.global.TermName,Set[Placeholders.this.global.Name]] (17 ms, 0.71%)
-
-
-
-Taggers.this.c.universe.definitions.AnyTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Symbol],Interface.this.global.Symbol#NameType,That] (2 ms, 0.08%)
-
-
-
-Unapplies.this.global.Ident => ?{def DOT: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],scala.reflect.internal.Variance,List[scala.tools.nsc.Variance]] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Symbol#NameType,That] (1 ms, 0.04%)
-
-
-
-Unit => java.io.PrintWriter (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[CleanUp.this.global.Symbol],String,That] (2 ms, 0.08%)
-
-
-
-Unit => Boolean (18 ms, 0.75%)
-
-
-
-Unit => Int (13 ms, 0.54%)
-
-
-
-clazz.type => ?{def +: ?} (1 ms, 0.04%)
-
-
-
-(=> FastTrack.this.macros.global.Tree) => FastTrack.this.macros.global.Symbol (1 ms, 0.04%)
-
-
-
-String => scala.reflect.io.File (7 ms, 0.29%)
-
-
-
-imeth.NameType => ?{def +: ?} (1 ms, 0.04%)
-
-
-
-Array[Int] => ?{def flatMap: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[BCodeIdiomatic.this.bTypes.BType] (1 ms, 0.04%)
-
-
-
-String("PROGRAM") => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => SymbolicXMLBuilder.this.global.Tree (4 ms, 0.17%)
-
-
-
-all (2,411 ms, 100%)
-
-
-
-scala.reflect.ClassTag[reflect.runtime.universe.TypeRef] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Tree],(Constructors.this.global.Symbol, Constructors.this.global.Tree),That] (1 ms, 0.04%)
-
-
-
-pos.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],String,That] (4 ms, 0.17%)
-
-
-
-((Nothing, Nothing)) => MethodSynthesis.this.global.Symbol (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[MatchAnalyzer.this.Const],MatchAnalyzer.this.Const,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[(CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.global.Symbol, CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.TypeEnv),CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.global.Symbol],CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.global.Symbol,That] (5 ms, 0.21%)
-
-
-
-((Nothing, Nothing, Nothing)) => String (25 ms, 1.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.ImportSelector],Namers.this.global.Name,List[Namers.this.global.Name]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],scala.tools.nsc.util.ClassPath,That] (1 ms, 0.04%)
-
-
-
-Namers.this.global.Scope => Namers.this.global.Type (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.global.Tree],AccessorSynthesis.this.global.Symbol,That] (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.DynamicRewriteAttachment.type] (2 ms, 0.08%)
-
-
-
-Int => ?{def -=: ?} (9 ms, 0.37%)
-
-
-
-Integral[Int] (1 ms, 0.04%)
-
-
-
-Some[Reshape.this.global.ValDef] => scala.collection.GenTraversableOnce[?] (1 ms, 0.04%)
-
-
-
-String(")") => ?{def ::: ?} (3 ms, 0.12%)
-
-
-
-(=> String) => Int (13 ms, 0.54%)
-
-
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.UnitClass.type => ?{def ->: ?} (2 ms, 0.08%)
-
-
-
-(=> Double) => Scanners.this.Offset (1 ms, 0.04%)
-
-
-
-((Nothing, Unit, Unit)) => LambdaLift.this.global.Symbol (1 ms, 0.04%)
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Typers.this.global.Tree (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.ValDef],SpecializeTypes.this.global.Symbol,List[SpecializeTypes.this.global.Symbol]] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Erasure.this.global.QualTypeSymAttachment] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],scala.tools.asm.tree.MethodNode,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Type,List[SpecializeTypes.this.global.Type]] (1 ms, 0.04%)
-
-
-
-Array[String] => ?{def toArray: ?} (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.Type],BCodeSkelBuilder.this.bTypes.BType,List[BCodeSkelBuilder.this.bTypes.BType]] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[CompilerCommand.this.settings.Setting],Int,That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Typers.this.global.QualTypeSymAttachment] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SuperAccessors.this.global.Symbol],SuperAccessors.this.global.Symbol,That] (2 ms, 0.08%)
-
-
-
-String("\"\'\\") => ?{def contains(x$1: ? >: Char): Boolean} (5 ms, 0.21%)
-
-
-
-Array[StackTraceElement] => ?{def take: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[scala.tools.asm.Type],CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.BType,That] (2 ms, 0.08%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.OptimizerWarning,(scala.tools.asm.tree.MethodNode, tools.nsc.backend.jvm.BTypes.InternalName)] => ?{def withFilter: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashSet[CompilerCommand.this.settings.Setting],String,That] (16 ms, 0.66%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Extractors.this.global.Tree],Extractors.this.global.Tree,List[Extractors.this.global.Tree]] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[tools.nsc.backend.jvm.BTypes.InternalName] (2 ms, 0.08%)
-
-
-
-List[Parsers.this.global.Tree] => Parsers.this.global.Tree (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Errors.this.global.Symbol],String,That] (10 ms, 0.41%)
-
-
-
-args.type => ?{def indexOf: ?} (2 ms, 0.08%)
-
-
-
-Int => scala.reflect.internal.util.Position (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.NoInlineCallsiteAttachment.type] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[scala.tools.nsc.ClassPathMemoryConsumptionTester.MainRetainsGlobal],Boolean,That] (1 ms, 0.04%)
-
-
-
-Unit => Throwable (67 ms, 2.78%)
-Un..
-
-
-scala.collection.immutable.Set[SymbolTracker.this.Node] => List[SymbolTracker.this.Node] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.ValDef],Constructors.this.global.Symbol,That] (1 ms, 0.04%)
-
-
-
-Validators.this.global.Scope => Validators.this.global.Type (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[SpecializeTypes.this.global.Symbol,SpecializeTypes.this.global.Type],(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type),SpecializeTypes.this.TypeEnv] (1 ms, 0.04%)
-
-
-
-tools.nsc.backend.jvm.BackendReporting.OptimizerWarning (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Option[NamesDefaults.this.global.ValDef]] (1 ms, 0.04%)
-
-
-
-part.type => ?{def stripSuffix: ?} (1 ms, 0.04%)
-
-
-
-settings.BooleanSetting => Boolean (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],org.apache.tools.ant.types.Commandline.Argument,That] (1 ms, 0.04%)
-
-
-
-sym.type => ?{def isLocalToReifee: ?} (1 ms, 0.04%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BTypes.this.ClassInfo] => ?{def get: ?} (5 ms, 0.21%)
-
-
-
-GenTrees.this.global.Symbol => ?{def metalevel: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[global.analyzer.global.Tree],global.ClassDef,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.Set[ss.Setting],List[String],That] (1 ms, 0.04%)
-
-
-
-String => ?{def stripMargin: ?} (7 ms, 0.29%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],SymbolTables.this.global.ValDef,scala.collection.TraversableOnce[SymbolTables.this.global.Tree]] (15 ms, 0.62%)
-
-
-
-scala.reflect.ClassTag[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest] (1 ms, 0.04%)
-
-
-
-Taggers.this.c.universe.definitions.AnyRefTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => SymbolicXMLBuilder.this.global.Symbol (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[scala.runtime.Nothing$] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Type],BTypesFromSymbols.this.global.Type,That] (1 ms, 0.04%)
-
-
-
-JavaScanners.this.global.javanme.SWITCHkw.type => ?{def ->: ?} (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Macros.this.MacroRuntimeAttachment] (3 ms, 0.12%)
-
-
-
-((Nothing, Nothing)) => Int (4 ms, 0.17%)
-
-
-
-Unit => Parsers.this.Location (3 ms, 0.12%)
-
-
-
-Taggers.this.c.universe.definitions.NothingTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-List[FormatInterpolator.this.c.universe.treeInfo.global.Tree] => scala.collection.GenTraversableOnce[B] (1 ms, 0.04%)
-
-
-
-Array[scala.tools.asm.Type] => ?{def corresponds: ?} (9 ms, 0.37%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],Int,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],(String, tools.nsc.backend.jvm.BTypes.MethodInlineInfo),That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeBuilder.this.global.Tree],TreeBuilder.this.global.ValDef,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[tools.nsc.backend.jvm.BTypes.InternalName,BackendUtils.this.postProcessor.bTypes.coreBTypes.bTypes.MethodNameAndType],(tools.nsc.backend.jvm.BTypes.InternalName, String),That] (3 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[scala.runtime.SymbolLiteral] (1 ms, 0.04%)
-
-
-
-String => ?{def +=: ?} (1 ms, 0.04%)
-
-
-
-String("No %s available for %s") => ?{def format: ?} (4 ms, 0.17%)
-
-
-
-(=> (Nothing, Nothing)) => BCodeBodyBuilder.this.global.Tree (3 ms, 0.12%)
-
-
-
-Int(103) => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-Taggers.this.c.universe.definitions.ShortTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],scala.tools.nsc.ClassPathMemoryConsumptionTester.MainRetainsGlobal,That] (3 ms, 0.12%)
-
-
-
-scala.collection.Set[Delambdafy.this.global.Symbol] => ?{def +=: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],Implicits.this.global.Type,List[Implicits.this.global.Type]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[String],String,That] (21 ms, 0.87%)
-
-
-
-Ordering[SymbolTrackers.this.global.Symbol] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => BCodeSyncAndTry.this.global.Symbol (3 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[Parsers.this.global.BackquotedIdentifierAttachment.type] (3 ms, 0.12%)
-
-
-
-((Nothing, Nothing)) => PatternTypers.this.global.Tree (1 ms, 0.04%)
-
-
-
-Double => JavaScanner.this.ScanPosition (1 ms, 0.04%)
-
-
-
-Null <:< String (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SymbolTrackers.this.Hierarchy],String,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Any],GenUtils.this.global.Tree,That] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)],(Holes.this.global.Type, scala.reflect.quasiquotes.Rank),List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)]] (2 ms, 0.08%)
-
-
-
-scala.math.Ordering[String] (1 ms, 0.04%)
-
-
-
-Array[Int] => (Int => Int) (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[ss.PhasesSetting],List[String],That] (1 ms, 0.04%)
-
-
-
-java.util.List[scala.tools.asm.tree.TryCatchBlockNode] => ?{def asScala: ?} (1 ms, 0.04%)
-
-
-
-argPos.type => ?{def contains: ?} (2 ms, 0.08%)
-
-
-
-String("@param") => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[CallGraph.this.postProcessor.bTypes.ClassBType],(scala.collection.immutable.IntMapUtils.Int, Product with Serializable with CallGraph.this.ArgInfo),scala.collection.immutable.IntMap[CallGraph.this.ArgInfo]] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Placeholders.this.global.Symbol (1 ms, 0.04%)
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.nsc.reporters.Reporter (3 ms, 0.12%)
-
-
-
-List[scala.tools.asm.tree.TryCatchBlockNode] => ?{def asJava: ?} (1 ms, 0.04%)
-
-
-
-s.type => ?{def ->: ?} (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],Calculate.this.global.TypeTree,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[s.StringSetting],String,That] (1 ms, 0.04%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BCodeSkelBuilder.this.bTypes.ClassInfo] => ?{def get: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],java.io.File,Array[java.io.File]] (2 ms, 0.08%)
-
-
-
-MatchCodeGen.this.CODE.SelectStart => MatchCodeGen.this.global.Tree (1 ms, 0.04%)
-
-
-
-Global.this.delambdafy.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[T],T,That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[TypeAdaptingTransformer.this.global.specializeTypes.SpecializedSuperConstructorCallArgument.type] (3 ms, 0.12%)
-
-
-
-Array[String] => ?{def toList: ?} (25 ms, 1.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],scala.tools.nsc.util.ClassPath,Seq[scala.tools.nsc.util.ClassPath]] (3 ms, 0.12%)
-
-
-
-Float => Scanners.this.Offset (1 ms, 0.04%)
-
-
-
-String("Comment") => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Enclosures.this.universe.analyzer.Context],Enclosures.this.universe.analyzer.global.Tree,That] (6 ms, 0.25%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, String)],(String, String),That] (1 ms, 0.04%)
-
-
-
-Unit => Parsers.this.global.Type (1 ms, 0.04%)
-
-
-
-Int => JavaParsers.this.global.Position (3 ms, 0.12%)
-
-
-
-Array[StackTraceElement] => ?{def indexWhere: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => javax.swing.text.Document (3 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[scala.runtime.BoxedUnit] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Typers.this.MacroExpansionAttachment] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.ValDef],Reifiers.this.global.Tree,List[Reifiers.this.global.Tree]] (2 ms, 0.08%)
-
-
-
-scala.math.Ordering[Int] (10 ms, 0.41%)
-
-
-
-Option[(scala.tools.nsc.util.ClassPath, scala.tools.nsc.util.ClassPath)] => scala.collection.GenTraversableOnce[?] (1 ms, 0.04%)
-
-
-
-reflect.runtime.universe.TypeTag[T] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.Tree],Reifiers.this.ApplyHole,That] (1 ms, 0.04%)
-
-
-
-(=> (Nothing, Nothing)) => Boolean (16 ms, 0.66%)
-
-
-
-scala.reflect.ClassTag[scala.tools.asm.Type] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[AnalyzerPlugins.this.MacroPlugin],(AnalyzerPlugins.this.MacroPlugin, Option[T]),That] (1 ms, 0.04%)
-
-
-
-FastTrack.this.macros.global.Symbol => FastTrack.this.macros.global.Tree (1 ms, 0.04%)
-
-
-
-scala.tools.asm.tree.analysis.Frame[scala.tools.asm.tree.analysis.SourceValue] => ?{def stackTop: ?} (3 ms, 0.12%)
-
-
-
-GenUtils.this.global.nme.UNIVERSE_PREFIX.type => ?{def +: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[BoxUnbox.this.postProcessor.bTypes.coreBTypes.bTypes.ClassBType],tools.nsc.backend.jvm.BTypes.InternalName,That] (1 ms, 0.04%)
-
-
-
-Iterator[Set[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]] => ?{def flatten: ?} (1 ms, 0.04%)
-
-
-
-CleanUp.this.global.gen.global.RefTree => ?{def APPLY: ?} (2 ms, 0.08%)
-
-
-
-scala.math.Ordering[String] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[SymbolTables.this.global.Tree],SymbolTables.this.global.Tree,That] (1 ms, 0.04%)
-
-
-
-SpecializeTypes.this.global.Scope => SpecializeTypes.this.global.Type (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.AbstractInsnNode,Set[scala.tools.asm.tree.AbstractInsnNode]] (1 ms, 0.04%)
-
-
-
-JavaScanners.this.global.javanme.ABSTRACTkw.type => ?{def ->: ?} (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],String,That] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => Boolean (74 ms, 3.07%)
-((N..
-
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def materializeTypeTag: ?} (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Any, String)],(Any, String),That] (1 ms, 0.04%)
-
-
-
-Array[String] => scala.collection.GenTraversableOnce[?] (3 ms, 0.12%)
-
-
-
-FormatInterpolator.this.c.universe.TypeTag[java.util.Formattable] (4 ms, 0.17%)
-
-
-
-args.type => ?{def contains: ?} (4 ms, 0.17%)
-
-
-
-StringContext => ?{def sm: ?} (11 ms, 0.46%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.ValOrDefDef],(Reshape.this.global.Symbol, Reshape.this.global.ValOrDefDef),That] (1 ms, 0.04%)
-
-
-
-nextFrame.type => ?{def peekStack: ?} (2 ms, 0.08%)
-
-
-
-(=> FastTrack.this.macros.global.Symbol) => FastTrack.this.macros.global.Tree (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[ClosureOptimizer.this.Local],(ClosureOptimizer.this.Local, Int),That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Reshape.this.global.analyzer.MacroExpansionAttachment] (3 ms, 0.12%)
-
-
-
-frame.type => ?{def stackTop: ?} (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Enclosures.this.universe.ImplDef] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.CounterExample],(MatchAnalyzer.this.CounterExample, MatchAnalyzer.this.CounterExample),That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[scala.tools.asm.Type] (1 ms, 0.04%)
-
-
-
-Fields.this.global.Scope => Fields.this.global.Type (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[scala.reflect.io.AbstractFile] (3 ms, 0.12%)
-
-
-
-scala.tools.nsc.classpath.ClassPathEntries => (A1, A2) (1 ms, 0.04%)
-
-
-
-Int => ?{def min: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => TailCalls.this.global.Tree (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.CaseDef],MatchOptimization.this.global.CaseDef,List[MatchOptimization.this.global.CaseDef]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SymbolTables.this.global.Tree],SymbolTables.this.global.Tree,List[SymbolTables.this.global.Tree]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.Symbol,That] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => TreeGen.this.global.Tree (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Delambdafy.this.global.mixer.NeedStaticImpl.type] (1 ms, 0.04%)
-
-
-
-segments.type => ?{def last: ?} (1 ms, 0.04%)
-
-
-
-LambdaLift.this.global.Scope => LambdaLift.this.global.Type (1 ms, 0.04%)
-
-
-
-((Nothing, Unit, Any => Nothing)) => CompilerCommand.this.Setting => Boolean (1 ms, 0.04%)
-
-
-
-Taggers.this.c.universe.definitions.DoubleTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-Array[java.net.URL] => Seq[java.net.URL] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[org.apache.tools.ant.types.Commandline.Argument] (1 ms, 0.04%)
-
-
-
-Array[org.apache.tools.ant.types.Commandline.Argument] => scala.collection.GenTraversableOnce[?] (1 ms, 0.04%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,List[BTypes.this.ClassBType]] => ?{def orThrow: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(tools.nsc.backend.jvm.BTypes.InternalName, CoreBTypesFromSymbols.this.bTypes.MethodNameAndType),Map[tools.nsc.backend.jvm.BTypes.InternalName,CoreBTypesFromSymbols.this.bTypes.MethodNameAndType]] (3 ms, 0.12%)
-
-
-
-s.type => ?{def take: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => scala.tools.nsc.Settings (16 ms, 0.66%)
-
-
-
-Double => Parsers.this.Offset (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],scala.reflect.io.Path,That] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[Traversable[String],String,That] (1 ms, 0.04%)
-
-
-
-Taggers.this.c.universe.definitions.UnitTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => TypingTransformers.this.global.Symbol (2 ms, 0.08%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => TreeBuilder.this.global.Symbol (3 ms, 0.12%)
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Placeholders.this.global.Symbol (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.CallSite] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Int],AccessorSynthesis.this.global.TermSymbol,That] (1 ms, 0.04%)
-
-
-
-request.callsite.callee.type => ?{def get: ?} (1 ms, 0.04%)
-
-
-
-List[ContextErrors.this.global.TypeBounds] => scala.collection.IterableLike[El2,Repr2] (2 ms, 0.08%)
-
-
-
-((Nothing, Nothing, Nothing)) => Typers.this.global.Tree (6 ms, 0.25%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[AbsSettings.this.Setting],String,That] (2 ms, 0.08%)
-
-
-
-String("(?s)^[\\s&&[^\n\r]]*(.*?)\\s*$") => ?{def r: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[PropositionalLogic.this.Prop],PropositionalLogic.this.Prop,That] (3 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[Namers.this.CaseApplyDefaultGetters] (4 ms, 0.17%)
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.MacroImplRefAttachment.type] (4 ms, 0.17%)
-
-
-
-java.util.List[scala.tools.asm.tree.InnerClassNode] => ?{def asScala: ?} (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[PatternTypers.this.global.SubpatternsAttachment] (1 ms, 0.04%)
-
-
-
-files.type => ?{def foreach: ?} (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Int] (5 ms, 0.21%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)],((Holes.this.global.Type, scala.reflect.quasiquotes.Rank), Int),That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[settings.Setting],String,That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Typers.this.global.CompoundTypeTreeOriginalAttachment] (3 ms, 0.12%)
-
-
-
-RefChecks.this.global.definitions.RepeatedParamClass.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => java.io.File (1 ms, 0.04%)
-
-
-
-String("symbol package") => ?{def ->: ?} (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.ast.parser.BracePair],String,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.ValDef,That] (1 ms, 0.04%)
-
-
-
-args.type => ?{def mkString: ?} (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => Typers.this.global.Tree (2 ms, 0.08%)
-
-
-
-String => Seq[Char] (3 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[Namers.this.ConstructorDefaultsAttachment] (3 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[scala.runtime.BoxesRunTime] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.MacroExpansionAttachment] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.LinkedHashSet[ToolBoxImpl.this.frontEnd.Info],String,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[((Holes.this.global.Type, scala.reflect.quasiquotes.Rank), Int)],Holes.this.global.ValDef,List[Holes.this.global.Tree]] (2 ms, 0.08%)
-
-
-
-Array[Byte] => ?{def drop: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[T],Node,List[Node]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Type,List[SpecializeTypes.this.global.Type]] (1 ms, 0.04%)
-
-
-
-times.type => ?{def sorted: ?} (1 ms, 0.04%)
-
-
-
-Long => Int (30 ms, 1.24%)
-
-
-
-scala.reflect.ClassTag[Byte] (1 ms, 0.04%)
-
-
-
-Taggers.this.c.universe.definitions.NullTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-List[Validators.this.global.Symbol] => scala.collection.GenTraversableOnce[Validators.this.global.Symbol] (2 ms, 0.08%)
-
-
-
-scala.io.Codec (3 ms, 0.12%)
-
-
-
-f.type => ?{def isPackage: ?} (1 ms, 0.04%)
-
-
-
-bSeven.type => ?{def slice: ?} (4 ms, 0.17%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(MatchAnalyzer.this.Sym, Boolean)],MatchAnalyzer.this.Const,Seq[MatchAnalyzer.this.Const]] (1 ms, 0.04%)
-
-
-
-Array[String] => ?{def drop: ?} (5 ms, 0.21%)
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => Printers.this.BooleanFlag (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Array[scala.tools.asm.Handle]] (1 ms, 0.04%)
-
-
-
-Int(101) => ?{def ->: ?} (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Erasure.this.TypeRefAttachment] (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[String] (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[scala.runtime.LambdaDeserialize] (1 ms, 0.04%)
-
-
-
-Flatten.this.global.Scope => Flatten.this.global.Type (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[MatchAnalyzer.this.Test]],MatchAnalyzer.this.Prop,That] (3 ms, 0.12%)
-
-
-
-Parsers.this.global.Modifiers => ?{def |=: ?} (1 ms, 0.04%)
-
-
-
-Array[Char] => ?{def iterator: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Solver.this.Clause],List[String],Array[List[String]]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,scala.collection.TraversableOnce[String]] (1 ms, 0.04%)
-
-
-
-Int(105) => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-java.util.List[scala.tools.asm.Attribute] => ?{def asScala: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],GenUtils.this.global.Tree,That] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Symbol],(SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol),That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[SymbolicXMLBuilder.this.TextAttache] (4 ms, 0.17%)
-
-
-
-Map[Calculate.this.global.Symbol,Int] => ?{def +=: ?} (5 ms, 0.21%)
-
-
-
-String("internal error: %s (%s, %s) is not supported") => ?{def format: ?} (1 ms, 0.04%)
-
-
-
-Set[Implicits.this.global.Symbol] (3 ms, 0.12%)
-
-
-
-((SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type)) => (A1, A2) (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SymbolTables.this.global.AnnotationInfo],SymbolTables.this.reifier.global.Tree,List[SymbolTables.this.reifier.global.Tree]] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => scala.reflect.io.AbstractFile (14 ms, 0.58%)
-
-
-
-scala.reflect.ClassTag[Namers.this.ClassForCaseCompanionAttachment] (3 ms, 0.12%)
-
-
-
-scala.reflect.ClassTag[BCodeHelpers.this.global.mixer.NeedStaticImpl.type] (3 ms, 0.12%)
-
-
-
-String => ?{def toInt: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Symbol],String,That] (3 ms, 0.12%)
-
-
-
-((Nothing, Nothing)) => Parsers.this.Offset (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[NodePrinters.this.global.Tree],String,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],TreeGen.this.global.Bind,That] (1 ms, 0.04%)
-
-
-
-List[Any] => ?{def ::=: ?} (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Type],Unit,To] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Const],String,That] (2 ms, 0.08%)
-
-
-
-Int(0) => ?{def to: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],Int,That] (2 ms, 0.08%)
-
-
-
-java.util.List[String] => ?{def asScala: ?} (2 ms, 0.08%)
-
-
-
-String("PrefixedAttribute") => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType (1 ms, 0.04%)
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => ?{def unary_!: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName),List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[_1],MatchTreeMaking.this.global.Symbol,That] (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[java.io.File] (2 ms, 0.08%)
-
-
-
-initialLabels.type => ?{def iterator: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, String)],String,That] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],Implicits.this.global.TypeVar,That] (1 ms, 0.04%)
-
-
-
-CompilerCommand.this.settings.BooleanSetting => Boolean (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Int, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType with Product with Serializable)],(Int, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType with Product with Serializable),That] (4 ms, 0.17%)
-
-
-
-(=> String) => scala.reflect.io.File (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[SymbolTables.this.ReifyAliasAttachment] (3 ms, 0.12%)
-
-
-
-((Nothing, Nothing)) => AccessorSynthesis.this.global.Symbol (2 ms, 0.08%)
-
-
-
-String => Int (16 ms, 0.66%)
-
-
-
-scala.reflect.ClassTag[Erasure.this.global.SAMFunction] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Constructors.this.global.OuterArgCanBeElided.type] (3 ms, 0.12%)
-
-
-
-Taggers.this.c.universe.definitions.CharTpe.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-String("Creating new `this` during tailcalls\n method: %s\n current class: %s") => ?{def format: ?} (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.MethodHandles] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[s.IntSetting],String,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],RefChecks.this.global.Type,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.LinkedHashMap[Infer.this.global.Symbol,Option[Infer.this.global.Type]],(Infer.this.global.Symbol, Infer.this.global.Type),That] (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.macros.contexts.Context{val universe: Macros.this.global.type}],scala.reflect.internal.util.Position,That] (7 ms, 0.29%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Global.this.Symbol],String,That] (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Reshape.this.global.CompoundTypeTreeOriginalAttachment] (2 ms, 0.08%)
-
-
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def materializeExpr: ?} (2 ms, 0.08%)
-
-
-
-String => ?{def format: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Quasiquotes.this.c.universe.Tree],(String, Quasiquotes.this.c.universe.Position),That] (3 ms, 0.12%)
-
-
-
-Array[Byte] => ?{def slice: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Validators.this.global.Symbol]],String,That] (2 ms, 0.08%)
-
-
-
-Taggers.this.c.universe.definitions.ByteTpe.type => ?{def ->: ?} (5 ms, 0.21%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BTypes.this.ClassInfo] => ?{def orThrow: ?} (1 ms, 0.04%)
-
-
-
-c.NameType => ?{def +: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Tree,List[Typers.this.global.Tree]] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[CommonSubconditionElimination.this.Test],CommonSubconditionElimination.this.TreeMaker,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[SyntheticMethods.this.global.Tree],SyntheticMethods.this.global.Tree,List[SyntheticMethods.this.global.Tree]] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.InlineAnnotatedAttachment] (1 ms, 0.04%)
-
-
-
-(=> Unit) => String (4 ms, 0.17%)
-
-
-
-scala.reflect.ClassTag[String] (9 ms, 0.37%)
-
-
-
-Array[String] => ?{def dropRight: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Helpers.this.global.treeInfo.global.Symbol]],List[Helpers.this.global.treeInfo.global.Symbol],List[List[Helpers.this.global.Symbol]]] (2 ms, 0.08%)
-
-
-
-args.type => ?{def foreach: ?} (2 ms, 0.08%)
-
-
-
-Global.this.superAccessors.type => ?{def ->: ?} (1 ms, 0.04%)
-
-
-
-(=> (Nothing, Nothing)) => Parsers.this.Offset (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[UnCurry.this.global.DelambdafyTarget.type] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[scala.tools.nsc.Phase] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.DefDef],Reshape.this.global.DefDef,List[Reshape.this.global.DefDef]] (4 ms, 0.17%)
-
-
-
-Unit => Internals.this.universe.analyzer.ContextReporter (5 ms, 0.21%)
-
-
-
-scala.collection.immutable.Map[scala.tools.asm.tree.MethodInsnNode,CallGraph.this.Callsite] => ?{def +=: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(scala.tools.asm.Type, Int)],scala.tools.asm.tree.VarInsnNode,List[scala.tools.asm.tree.AbstractInsnNode]] (1 ms, 0.04%)
-
-
-
-((List[MatchTreeMaking.this.global.Symbol], List[MatchTreeMaking.this.global.Tree])) => ?{def zipped: ?} (2 ms, 0.08%)
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.AbstractInsnNode (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.DefDef,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Tree],List[MatchTranslator.this.TreeMaker],That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Object],Object,That] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.ModuleDef,That] (2 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[Enclosures.this.universe.Template] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => String (16 ms, 0.66%)
-
-
-
-scala.reflect.ClassTag[GenSymbols.this.ReifyBindingAttachment] (3 ms, 0.12%)
-
-
-
-scala.collection.immutable.Map[scala.tools.asm.tree.InvokeDynamicInsnNode,CallGraph.this.ClosureInstantiation] => ?{def +=: ?} (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Symbol],Constructors.this.global.Tree,That] (1 ms, 0.04%)
-
-
-
-String => scala.reflect.io.AbstractFile (4 ms, 0.17%)
-
-
-
-scala.reflect.ClassTag[Class[_]] (4 ms, 0.17%)
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.ClassNotFound,scala.tools.asm.tree.ClassNode] => ?{def get: ?} (1 ms, 0.04%)
-
-
-
-tpe.type => ?{def isLocalToReifee: ?} (1 ms, 0.04%)
-
-
-
-argsArray.type => ?{def indices: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[CoreBTypesFromSymbols.this.bTypes.global.ClassSymbol],CoreBTypesFromSymbols.this.bTypes.global.Symbol,That] (1 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[scala.runtime.Null$] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.ValDef],TreeGen.this.global.Symbol,List[TreeGen.this.global.Symbol]] (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Flatten.this.global.ScopeEntry],Flatten.this.global.Symbol,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashSet[scala.tools.nsc.SubComponent],String,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Errors.this.global.Symbol]],String,That] (2 ms, 0.08%)
-
-
-
-includedFiles.type => ?{def filter: ?} (2 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],DocComments.this.TermName,That] (1 ms, 0.04%)
-
-
-
-java.util.List[scala.tools.asm.tree.LabelNode] => ?{def asScala: ?} (1 ms, 0.04%)
-
-
-
-nestedDirs.type => ?{def map: ?} (3 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Nothing],DependencyGraph.this.Edge,That] (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Symbol,That] (2 ms, 0.08%)
-
-
-
-(=> Long) => Int (22 ms, 0.91%)
-
-
-
-Array[String] => ?{def withFilter: ?} (2 ms, 0.08%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => SymbolTables.this.global.Symbol (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Int],Byte,Array[Byte]] (1 ms, 0.04%)
-
-
-
-((Nothing, Nothing)) => Throwable (1 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Queue[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.AbstractInsnNode,That] (3 ms, 0.12%)
-
-
-
-Typers.this.global.Scope => Typers.this.global.Type (1 ms, 0.04%)
-
-
-
diff --git a/docs/scalac.html b/docs/scalac.html
deleted file mode 100644
index 8ae48e6..0000000
--- a/docs/scalac.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-
-
-
- Click node to highlight; Shift-scroll to zoom; Esc to unhighlight
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/scalac.svg b/docs/scalac.svg
deleted file mode 100644
index ff6fc12..0000000
--- a/docs/scalac.svg
+++ /dev/null
@@ -1,23205 +0,0 @@
-
-
-
-
-
-
-implicit-searches-1510254556234
-
-
-
-(=> (Nothing, Nothing)) => List[Implicits.this.global.Type]
-
-(=> (Nothing, Nothing)) => List[Implicits.this.global.Type]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[BoxUnbox.this.postProcessor.bTypes.ClassBType],tools.nsc.backend.jvm.BTypes.InternalName,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[BoxUnbox.this.postProcessor.bTypes.ClassBType],tools.nsc.backend.jvm.BTypes.InternalName,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => java.util.Map[_ <: java.text.AttributedCharacterIterator.Attribute, _]
-
-(=> (Nothing, Nothing, Nothing)) => java.util.Map[_ <: java.text.AttributedCharacterIterator.Attribute, _]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[ScalaLogic.this.global.Type]],scala.collection.immutable.Set[TreesAndTypesDomain.this.Sym],That]
-
-scala.collection.generic.CanBuildFrom[List[List[ScalaLogic.this.global.Type]],scala.collection.immutable.Set[TreesAndTypesDomain.this.Sym],That]
-1 times = 0ms
-
-
-
-String('{}\n') => ?{def contains(x$1: ? >: Char): Boolean}
-
-String('{}
-') => ?{def contains(x$1: ? >: Char): Boolean}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Tree],NamesDefaults.this.global.Tree,List[NamesDefaults.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Tree],NamesDefaults.this.global.Tree,List[NamesDefaults.this.global.Tree]]
-1 times = 0ms
-
-
-
-String('Free type: %s (%s)') => ?{def format: ?}
-
-String('Free type: %s (%s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.AnyValTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.AnyValTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-t.type => ?{def IS_OBJ: ?}
-
-t.type => ?{def IS_OBJ: ?}
-1 times = 0ms
-
-
-
-String('symbol') => ?{def ->: ?}
-
-String('symbol') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-s.type => ?{def takeWhile: ?}
-
-s.type => ?{def takeWhile: ?}
-1 times = 0ms
-
-
-
-elsep.type => ?{def ->: ?}
-
-elsep.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Extractors.this.global.Tree],Extractors.this.global.Tree,List[Extractors.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Extractors.this.global.Tree],Extractors.this.global.Tree,List[Extractors.this.global.Tree]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.gen.global.SymTree],Delambdafy.this.global.gen.global.Type,List[Delambdafy.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.gen.global.SymTree],Delambdafy.this.global.gen.global.Type,List[Delambdafy.this.global.Type]]
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[Enclosures.this.universe.DefDef]
-
-scala.reflect.ClassTag[Enclosures.this.universe.DefDef]
-2 times = 6ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Typers.this.global.Name, Option[Typers.this.global.ClassfileAnnotArg])],(Typers.this.global.Name, Typers.this.global.ClassfileAnnotArg),List[(Typers.this.global.Name, Typers.this.global.ClassfileAnnotArg)]]
-
-scala.collection.generic.CanBuildFrom[List[(Typers.this.global.Name, Option[Typers.this.global.ClassfileAnnotArg])],(Typers.this.global.Name, Typers.this.global.ClassfileAnnotArg),List[(Typers.this.global.Name, Typers.this.global.ClassfileAnnotArg)]]
-1 times = 0ms
-
-
-
-lookingFor.type => ?{def iterator: ?}
-
-lookingFor.type => ?{def iterator: ?}
-1 times = 0ms
-
-
-
-parts.type => ?{def toSeq: ?}
-
-parts.type => ?{def toSeq: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.DOUBLEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.DOUBLEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((List[Interface.this.global.Symbol], List[Interface.this.global.Tree])) => ?{def zipped: ?}
-
-((List[Interface.this.global.Symbol], List[Interface.this.global.Tree])) => ?{def zipped: ?}
-1 times = 0ms
-
-
-
-command.settings.BooleanSetting => Boolean
-
-command.settings.BooleanSetting => Boolean
-1 times = 0ms
-
-
-
-indyParamTypes.type => ?{def tail: ?}
-
-indyParamTypes.type => ?{def tail: ?}
-1 times = 0ms
-
-
-
-SyntheticMethods.this.global.Tree => ?{def AND: ?}
-
-SyntheticMethods.this.global.Tree => ?{def AND: ?}
-2 times = 0ms
-
-
-
-String('BAD ENTRY END: computed = %d, actual = %d, bytes = %s') => ?{def format: ?}
-
-String('BAD ENTRY END: computed = %d, actual = %d, bytes = %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Int
-
-((Nothing, Nothing, Nothing)) => Int
-7 times = 0ms
-
-
-
-(=> Typers.this.global.Scope) => Typers.this.global.Type
-
-(=> Typers.this.global.Scope) => Typers.this.global.Type
-3 times = 0ms
-
-
-
-(=> (() => Nothing, () => Nothing)) => Iterator[Char]
-
-(=> (() => Nothing, () => Nothing)) => Iterator[Char]
-1 times = 0ms
-
-
-
-variable.type => ?{def ->: ?}
-
-variable.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Array[scala.tools.asm.Label]) => Array[String]
-
-(=> Array[scala.tools.asm.Label]) => Array[String]
-2 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BCodeHelpers.this.bTypes.ClassInfo] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BCodeHelpers.this.bTypes.ClassInfo] => ?{def get: ?}
-2 times = 1ms
-
-
-
-TypeDiagnostics.this.global.Tree => TypeDiagnostics.this.global.Type
-
-TypeDiagnostics.this.global.Tree => TypeDiagnostics.this.global.Type
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.ValDef],Typers.this.global.Type with Product with Serializable,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.ValDef],Typers.this.global.Type with Product with Serializable,That]
-1 times = 0ms
-
-
-
-sam.internalName.type => ?{def split(x$1: ? >: Char('/')): ?}
-
-sam.internalName.type => ?{def split(x$1: ? >: Char('/')): ?}
-1 times = 0ms
-
-
-
-r.callsite.callee.type => ?{def get: ?}
-
-r.callsite.callee.type => ?{def get: ?}
-1 times = 0ms
-
-
-
-Array[java.lang.reflect.Method] => ?{def find: ?}
-
-Array[java.lang.reflect.Method] => ?{def find: ?}
-2 times = 10ms
-
-
-
-(=> (Nothing, Nothing)) => CleanUp.this.global.analyzer.global.Symbol
-
-(=> (Nothing, Nothing)) => CleanUp.this.global.analyzer.global.Symbol
-1 times = 0ms
-
-
-
-String('\\$\\{\\s*([^}\\s]+)\\s*\\}') => ?{def r: ?}
-
-String('\$\{\s*([^}\s]+)\s*\}') => ?{def r: ?}
-1 times = 0ms
-
-
-
-List[Macros.this.global.treeInfo.global.Tree] => scala.collection.GenTraversableOnce[Any]
-
-List[Macros.this.global.treeInfo.global.Tree] => scala.collection.GenTraversableOnce[Any]
-1 times = 0ms
-
-
-
-name.type => ?{def setterName: ?}
-
-name.type => ?{def setterName: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[Global.this.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[Global.this.Symbol],String,That]
-1 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[CNF.this.Clause]
-
-(=> Array[Byte]) => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-(=> String) => ?{def +=: ?}
-
-(=> String) => ?{def +=: ?}
-6 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => SpecializeTypes.this.global.gen.global.Symbol
-
-(=> (Nothing, Nothing)) => SpecializeTypes.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-x$19.type => ?{def nonEmpty: ?}
-
-x$19.type => ?{def nonEmpty: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],GenUtils.this.global.Tree,List[GenUtils.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Any],GenUtils.this.global.Tree,List[GenUtils.this.global.Tree]]
-1 times = 5ms
-
-
-
-SpecializeTypes.this.global.TermName => ?{def localName: ?}
-
-SpecializeTypes.this.global.TermName => ?{def localName: ?}
-1 times = 0ms
-
-
-
-((Nothing, Unit)) => scala.tools.nsc.io.Path
-
-((Nothing, Unit)) => scala.tools.nsc.io.Path
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],tools.nsc.backend.jvm.BackendReporting.CannotInlineWarning,That]
-
-scala.collection.generic.CanBuildFrom[List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],tools.nsc.backend.jvm.BackendReporting.CannotInlineWarning,That]
-1 times = 0ms
-
-
-
-String => Seq[Char]
-
-String => Seq[Char]
-4 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Equals]],List[Equals],That]
-
-scala.collection.generic.CanBuildFrom[List[List[Equals]],List[Equals],That]
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,scala.tools.nsc.backend.jvm.opt.InlineInfoAttribute] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,scala.tools.nsc.backend.jvm.opt.InlineInfoAttribute] => ?{def get: ?}
-1 times = 0ms
-
-
-
-(=> List[(scala.tools.nsc.io.AbstractFile, scala.tools.nsc.io.AbstractFile)]) => ?{def ::=: ?}
-
-(=> List[(scala.tools.nsc.io.AbstractFile, scala.tools.nsc.io.AbstractFile)]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],Typers.this.global.TermSymbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],Typers.this.global.TermSymbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Tree],SpecializeTypes.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Tree],SpecializeTypes.this.global.Type,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => ToolBoxGlobal.this.analyzer.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => ToolBoxGlobal.this.analyzer.global.Tree
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => List[Typers.this.global.Tree]
-
-((Nothing, Nothing)) => List[Typers.this.global.Tree]
-1 times = 0ms
-
-
-
-Option[BoxUnbox.this.postProcessor.bTypes.ClassBType] => ?{def ++: ?}
-
-Option[BoxUnbox.this.postProcessor.bTypes.ClassBType] => ?{def ++: ?}
-1 times = 0ms
-
-
-
-java.util.Iterator[scala.tools.asm.tree.AbstractInsnNode] => ?{def asScala: ?}
-
-java.util.Iterator[scala.tools.asm.tree.AbstractInsnNode] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[java.util.Calendar]
-
-scala.reflect.ClassTag[java.util.Calendar]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Type,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[MatchOptimizer.this.TreeMaker]],List[List[MatchOptimizer.this.Tree]],That]
-
-scala.collection.generic.CanBuildFrom[List[List[MatchOptimizer.this.TreeMaker]],List[List[MatchOptimizer.this.Tree]],That]
-1 times = 0ms
-
-
-
-Array[String] => ?{def filter: ?}
-
-Array[String] => ?{def filter: ?}
-2 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Tree],Infer.this.global.Type,List[Infer.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Tree],Infer.this.global.Type,List[Infer.this.global.Type]]
-1 times = 0ms
-
-
-
-(scala.tools.asm.tree.MethodNode, scala.collection.immutable.Set[InlinerHeuristics.this.InlineRequest]) <:< (scala.tools.asm.tree.MethodNode, Set[InlinerHeuristics.this.InlineRequest])
-
-(scala.tools.asm.tree.MethodNode, scala.collection.immutable.Set[InlinerHeuristics.this.InlineRequest]) <:< (scala.tools.asm.tree.MethodNode, Set[InlinerHeuristics.this.InlineRequest])
-1 times = 0ms
-
-
-
-a.type => ?{def AND: ?}
-
-a.type => ?{def AND: ?}
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[BoxUnbox.this.BoxCreation] => ?{def +=: ?}
-
-scala.collection.immutable.Set[BoxUnbox.this.BoxCreation] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TailCalls.this.global.TypeDef],TailCalls.this.global.Symbol,List[TailCalls.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[TailCalls.this.global.TypeDef],TailCalls.this.global.Symbol,List[TailCalls.this.global.Symbol]]
-1 times = 0ms
-
-
-
-prevSym.type => ?{def DOT: ?}
-
-prevSym.type => ?{def DOT: ?}
-2 times = 0ms
-
-
-
-f.type => ?{def map: ?}
-
-f.type => ?{def map: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.TypeDef],Typers.this.global.Symbol,List[Typers.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.TypeDef],Typers.this.global.Symbol,List[Typers.this.global.Symbol]]
-1 times = 0ms
-
-
-
-original.NameType => ?{def +: ?}
-
-original.NameType => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.AnnotationInfo],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.AnnotationInfo],String,List[String]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[AbsSettings.this.Setting],String,That]
-
-scala.collection.generic.CanBuildFrom[List[AbsSettings.this.Setting],String,That]
-1 times = 2ms
-
-
-
-(=> Unit) => Float
-
-(=> Unit) => Float
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.Symbol],Boolean,That]
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.Symbol],Boolean,That]
-1 times = 0ms
-
-
-
-RefChecks.this.global.definitions.RepeatedParamClass.type => ?{def ->: ?}
-
-RefChecks.this.global.definitions.RepeatedParamClass.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SymbolTables.this.global.Tree],SymbolTables.this.global.Tree,List[SymbolTables.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[SymbolTables.this.global.Tree],SymbolTables.this.global.Tree,List[SymbolTables.this.global.Tree]]
-2 times = 1ms
-
-
-
-((Nothing, Nothing)) => NamesDefaults.this.global.Tree
-
-((Nothing, Nothing)) => NamesDefaults.this.global.Tree
-1 times = 0ms
-
-
-
-Array[Byte] => ?{def mkString: ?}
-
-Array[Byte] => ?{def mkString: ?}
-1 times = 1ms
-
-
-
-((Nothing, Nothing)) => Parsers.this.global.CompilationUnit
-
-((Nothing, Nothing)) => Parsers.this.global.CompilationUnit
-3 times = 2ms
-
-
-
-(=> (Nothing, Nothing)) => Pickler.this.global.AnnotationInfo
-
-(=> (Nothing, Nothing)) => Pickler.this.global.AnnotationInfo
-1 times = 0ms
-
-
-
-String('tT') => ?{def contains(x$1: ? >: Char): Boolean}
-
-String('tT') => ?{def contains(x$1: ? >: Char): Boolean}
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[Infer.this.global.TypeVar]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[Infer.this.global.TypeVar]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-Set[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest] => scala.collection.TraversableOnce[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]
-
-Set[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest] => scala.collection.TraversableOnce[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]
-2 times = 0ms
-
-
-
-Array[Double] => Array[AnyRef]
-
-Array[Double] => Array[AnyRef]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[String],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[String],String,That]
-1 times = 14ms
-
-
-
-String('incompatible: %s does not match expected type %s') => ?{def format: ?}
-
-String('incompatible: %s does not match expected type %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-List[ContextErrors.this.global.Type] => scala.collection.TraversableLike[El1,Repr1]
-
-List[ContextErrors.this.global.Type] => scala.collection.TraversableLike[El1,Repr1]
-1 times = 1ms
-
-
-
-Unit => java.io.PrintStream
-
-Unit => java.io.PrintStream
-13 times = 0ms
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.SuppressMacroExpansionAttachment.type]
-
-scala.reflect.ClassTag[StdAttachments.this.SuppressMacroExpansionAttachment.type]
-3 times = 4ms
-
-
-
-(=> TypeDiagnostics.this.global.AnnotationInfo) => TypeDiagnostics.this.global.Type
-
-(=> TypeDiagnostics.this.global.AnnotationInfo) => TypeDiagnostics.this.global.Type
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.Tree,That]
-1 times = 0ms
-
-
-
-MatchTranslation.this.global.gen.global.Tree => ?{def DOT: ?}
-
-MatchTranslation.this.global.gen.global.Tree => ?{def DOT: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Symbol],Erasure.this.global.Apply,List[Erasure.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Symbol],Erasure.this.global.Apply,List[Erasure.this.global.Tree]]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.io.Writer
-
-(=> (Nothing, Nothing)) => java.io.Writer
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[Implicits.this.SearchResult],Implicits.this.SearchResult,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[Implicits.this.SearchResult],Implicits.this.SearchResult,That]
-1 times = 0ms
-
-
-
-SyntheticMethods.this.global.definitions.Any_equals.type => ?{def ->: ?}
-
-SyntheticMethods.this.global.definitions.Any_equals.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Array[Short]) => Array[Int]
-
-(=> Array[Short]) => Array[Int]
-6 times = 0ms
-
-
-
-MatchCodeGen.this.global.Apply => ?{def APPLY: ?}
-
-MatchCodeGen.this.global.Apply => ?{def APPLY: ?}
-1 times = 0ms
-
-
-
-String('undetParam added: %s') => ?{def format: ?}
-
-String('undetParam added: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-s0.type => ?{def drop: ?}
-
-s0.type => ?{def drop: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Contexts.this.global.Name
-
-((Nothing, Nothing, Nothing)) => Contexts.this.global.Name
-1 times = 0ms
-
-
-
-Fields.this.global.AnnotationInfo => Fields.this.global.Type
-
-Fields.this.global.AnnotationInfo => Fields.this.global.Type
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Enclosures.this.universe.PackageDef]
-
-scala.reflect.ClassTag[Enclosures.this.universe.PackageDef]
-1 times = 5ms
-
-
-
-(=> Unit) => RefChecks.this.global.Type
-
-(=> Unit) => RefChecks.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[T],T,That]
-
-scala.collection.generic.CanBuildFrom[List[T],T,That]
-1 times = 1ms
-
-
-
-(=> Array[Double]) => Array[AnyRef]
-
-(=> Array[Double]) => Array[AnyRef]
-3 times = 0ms
-
-
-
-util.Properties.ScalaCompilerVersion.type => ?{def ->: ?}
-
-util.Properties.ScalaCompilerVersion.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-prefixParts.type => ?{def isEmpty: ?}
-
-prefixParts.type => ?{def isEmpty: ?}
-1 times = 2ms
-
-
-
-BCodeHelpers.this.global.nme.value.type => ?{def ->: ?}
-
-BCodeHelpers.this.global.nme.value.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Unit => java.util.Map[_ <: K, _ <: V]
-
-Unit => java.util.Map[_ <: K, _ <: V]
-1 times = 0ms
-
-
-
-List[Erasure.this.global.Tree] => ?{def ::=: ?}
-
-List[Erasure.this.global.Tree] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-List[Any] => scala.collection.GenTraversableOnce[B]
-
-List[Any] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-(=> Unit) => java.io.InputStream
-
-(=> Unit) => java.io.InputStream
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Any, String)],String,That]
-
-scala.collection.generic.CanBuildFrom[List[(Any, String)],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[SymbolicXMLBuilder.this.global.Tree],SymbolicXMLBuilder.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[Seq[SymbolicXMLBuilder.this.global.Tree],SymbolicXMLBuilder.this.global.Tree,That]
-1 times = 0ms
-
-
-
-(String, Seq[java.nio.file.Path]) <:< (String, Seq[java.nio.file.Path])
-
-(String, Seq[java.nio.file.Path]) <:< (String, Seq[java.nio.file.Path])
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => String
-
-((Nothing, Nothing, Nothing)) => String
-10 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type)],String,That]
-
-scala.collection.generic.CanBuildFrom[List[(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type)],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],scala.tools.asm.tree.MethodNode,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],scala.tools.asm.tree.MethodNode,That]
-1 times = 0ms
-
-
-
-((Nothing, Unit, Unit)) => Macros.this.global.FlagSet
-
-((Nothing, Unit, Unit)) => Macros.this.global.FlagSet
-1 times = 0ms
-
-
-
-String('tpe %s is an unresolved spliceable type') => ?{def format: ?}
-
-String('tpe %s is an unresolved spliceable type') => ?{def format: ?}
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[TreeAndTypeAnalysis.this.global.Symbol]],List[TreeAndTypeAnalysis.this.global.Symbol],That]
-
-scala.collection.generic.CanBuildFrom[List[List[TreeAndTypeAnalysis.this.global.Symbol]],List[TreeAndTypeAnalysis.this.global.Symbol],That]
-1 times = 0ms
-
-
-
-samNameDesc.type => ?{def span: ?}
-
-samNameDesc.type => ?{def span: ?}
-1 times = 0ms
-
-
-
-Char => ?{def isLetter: ?}
-
-Char => ?{def isLetter: ?}
-1 times = 0ms
-
-
-
-clazz.NameType => ?{def +: ?}
-
-clazz.NameType => ?{def +: ?}
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => scala.tools.nsc.GenericRunnerSettings
-
-(=> Any => Nothing) => scala.tools.nsc.GenericRunnerSettings
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Int],Byte,Array[Byte]]
-
-scala.collection.generic.CanBuildFrom[Array[Int],Byte,Array[Byte]]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[Byte]
-
-scala.reflect.ClassTag[Byte]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Int],Byte,Array[Byte]]->scala.reflect.ClassTag[Byte]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[(MatchOptimization.this.global.Symbol, List[SwitchEmission.this.TreeMaker])],Option[MatchOptimization.this.global.CaseDef],That]
-
-scala.collection.generic.CanBuildFrom[List[(MatchOptimization.this.global.Symbol, List[SwitchEmission.this.TreeMaker])],Option[MatchOptimization.this.global.CaseDef],That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(scala.reflect.internal.util.Position, (String, String))],(scala.reflect.internal.util.Position, String),List[(Global.this.Position, String)]]
-
-scala.collection.generic.CanBuildFrom[List[(scala.reflect.internal.util.Position, (String, String))],(scala.reflect.internal.util.Position, String),List[(Global.this.Position, String)]]
-2 times = 1ms
-
-
-
-vdef.name.type => ?{def dropLocal: ?}
-
-vdef.name.type => ?{def dropLocal: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => BCodeHelpers.this.global.AnnotationInfo
-
-((Nothing, Nothing)) => BCodeHelpers.this.global.AnnotationInfo
-1 times = 0ms
-
-
-
-Option[(scala.tools.nsc.util.ClassPath, scala.tools.nsc.util.ClassPath)] => scala.collection.GenTraversableOnce[?]
-
-Option[(scala.tools.nsc.util.ClassPath, scala.tools.nsc.util.ClassPath)] => scala.collection.GenTraversableOnce[?]
-1 times = 1ms
-
-
-
-(Any => Nothing) => String
-
-(Any => Nothing) => String
-3 times = 0ms
-
-
-
-scala.reflect.ClassTag[Erasure.this.global.TypeParamVarargsAttachment]
-
-scala.reflect.ClassTag[Erasure.this.global.TypeParamVarargsAttachment]
-1 times = 1ms
-
-
-
-matchEnd.type => ?{def APPLY: ?}
-
-matchEnd.type => ?{def APPLY: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => scala.tools.nsc.Settings
-
-(=> (Nothing, Nothing, Nothing)) => scala.tools.nsc.Settings
-1 times = 0ms
-
-
-
-(=> Seq[org.apache.tools.ant.types.Commandline.Argument]) => ?{def :+=: ?}
-
-(=> Seq[org.apache.tools.ant.types.Commandline.Argument]) => ?{def :+=: ?}
-1 times = 0ms
-
-
-
-Array[String] => ?{def foldLeft: ?}
-
-Array[String] => ?{def foldLeft: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.TypeTree,List[Typers.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.TypeTree,List[Typers.this.global.Tree]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Symbol],Constructors.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Symbol],Constructors.this.global.Tree,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Symbol],Erasure.this.global.Ident,That]
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Symbol],Erasure.this.global.Ident,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(MatchAnalyzer.this.Sym, Boolean)],MatchAnalyzer.this.Const,Seq[MatchAnalyzer.this.Const]]
-
-scala.collection.generic.CanBuildFrom[Seq[(MatchAnalyzer.this.Sym, Boolean)],MatchAnalyzer.this.Const,Seq[MatchAnalyzer.this.Const]]
-2 times = 1ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Typers.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Typers.this.global.Symbol
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[T]],List[T],List[List[T]]]
-
-scala.collection.generic.CanBuildFrom[List[List[T]],List[T],List[List[T]]]
-2 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Symbol],BCodeHelpers.this.global.Symbol,List[BCodeHelpers.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Symbol],BCodeHelpers.this.global.Symbol,List[BCodeHelpers.this.global.Symbol]]
-1 times = 0ms
-
-
-
-tpname.type => ?{def ->: ?}
-
-tpname.type => ?{def ->: ?}
-1 times = 2ms
-
-
-
-String('methodName') => ?{def ->: ?}
-
-String('methodName') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.OptimizerWarning,Inliner.this.postProcessor.inlinerHeuristics.postProcessor.callGraph.Callee] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.OptimizerWarning,Inliner.this.postProcessor.inlinerHeuristics.postProcessor.callGraph.Callee] => ?{def get: ?}
-1 times = 0ms
-
-
-
-(=> scala.reflect.io.Path) => tools.nsc.io.File
-
-(=> scala.reflect.io.Path) => tools.nsc.io.File
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.treeInfo.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.treeInfo.global.Tree,That]
-1 times = 0ms
-
-
-
-(=> SpecializeTypes.this.global.Tree) => SpecializeTypes.this.global.Type
-
-(=> SpecializeTypes.this.global.Tree) => SpecializeTypes.this.global.Type
-1 times = 0ms
-
-
-
-packageDirName.type => ?{def split(x$1: ? >: Char('/')): Seq[String]}
-
-packageDirName.type => ?{def split(x$1: ? >: Char('/')): Seq[String]}
-1 times = 0ms
-
-
-
-String => ?{def format: ?}
-
-String => ?{def format: ?}
-3 times = 0ms
-
-
-
-String => ?{def contains(x$1: ? >: Char): Boolean}
-
-String => ?{def contains(x$1: ? >: Char): Boolean}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.tools.asm.Handle]
-
-scala.reflect.ClassTag[scala.tools.asm.Handle]
-2 times = 2ms
-
-
-
-argPos.type => ?{def indexWhere: ?}
-
-argPos.type => ?{def indexWhere: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[java.util.jar.JarEntry],(String, Option[String]),That]
-
-scala.collection.generic.CanBuildFrom[Iterable[java.util.jar.JarEntry],(String, Option[String]),That]
-1 times = 0ms
-
-
-
-calleeParamTypes.type => ?{def isEmpty: ?}
-
-calleeParamTypes.type => ?{def isEmpty: ?}
-1 times = 0ms
-
-
-
-String('alias for \'%s\'') => ?{def format: ?}
-
-String('alias for '%s'') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Development.this.id.type => ?{def compare: ?}
-
-Development.this.id.type => ?{def compare: ?}
-1 times = 0ms
-
-
-
-Option[List[scala.tools.nsc.SubComponent]] => scala.collection.GenTraversableOnce[?]
-
-Option[List[scala.tools.nsc.SubComponent]] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[tools.nsc.backend.jvm.BTypes.InternalName,BackendUtils.this.postProcessor.bTypes.coreBTypes.bTypes.MethodNameAndType],(tools.nsc.backend.jvm.BTypes.InternalName, String),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[tools.nsc.backend.jvm.BTypes.InternalName,BackendUtils.this.postProcessor.bTypes.coreBTypes.bTypes.MethodNameAndType],(tools.nsc.backend.jvm.BTypes.InternalName, String),That]
-1 times = 0ms
-
-
-
-List[Validators.this.global.Symbol] => Validators.this.global.Type
-
-List[Validators.this.global.Symbol] => Validators.this.global.Type
-1 times = 0ms
-
-
-
-(=> Unit) => JavaParsers.this.global.Type
-
-(=> Unit) => JavaParsers.this.global.Type
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Tree],MatchApproximation.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Tree],MatchApproximation.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-String => ?{def r: ?}
-
-String => ?{def r: ?}
-3 times = 1ms
-
-
-
-Array[Short] => Array[CNF.this.Clause]
-
-Array[Short] => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-(CNF.this.Sym, Int) <:< (CNF.this.Sym, Int)
-
-(CNF.this.Sym, Int) <:< (CNF.this.Sym, Int)
-1 times = 0ms
-
-
-
-Traversable[scala.tools.nsc.util.ClassPath] => scala.collection.GenTraversableOnce[B]
-
-Traversable[scala.tools.nsc.util.ClassPath] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-String('\\$\\{\\s*(.*?)\\s*\\}') => ?{def r: ?}
-
-String('\$\{\s*(.*?)\s*\}') => ?{def r: ?}
-1 times = 0ms
-
-
-
-Ordering[String]
-
-Ordering[String]
-2 times = 2ms
-
-
-
-scala.reflect.ClassTag[Erasure.this.OriginalTreeAttachment]
-
-scala.reflect.ClassTag[Erasure.this.OriginalTreeAttachment]
-1 times = 1ms
-
-
-
-((Nothing, Nothing, Nothing)) => Double
-
-((Nothing, Nothing, Nothing)) => Double
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Int],scala.tools.asm.tree.AbstractInsnNode,Set[scala.tools.asm.tree.AbstractInsnNode]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Int],scala.tools.asm.tree.AbstractInsnNode,Set[scala.tools.asm.tree.AbstractInsnNode]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Typers.this.global.Type]],Typers.this.global.Type,List[Typers.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[List[Typers.this.global.Type]],Typers.this.global.Type,List[Typers.this.global.Type]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => scala.tools.nsc.typechecker.Analyzer.packageObjects.global.Symbol
-
-((Nothing, Nothing)) => scala.tools.nsc.typechecker.Analyzer.packageObjects.global.Symbol
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.typechecker.Fingerprint],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.typechecker.Fingerprint],Int,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[MatchApproximator.this.TreeMaker]],List[MatchApproximator.this.Test],That]
-
-scala.collection.generic.CanBuildFrom[List[List[MatchApproximator.this.TreeMaker]],List[MatchApproximator.this.Test],That]
-1 times = 0ms
-
-
-
-(=> String) => Long
-
-(=> String) => Long
-13 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Duplicators.this.global.Ident],Duplicators.this.global.Symbol,List[Duplicators.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[Duplicators.this.global.Ident],Duplicators.this.global.Symbol,List[Duplicators.this.global.Symbol]]
-1 times = 0ms
-
-
-
-Unit => java.io.InputStream
-
-Unit => java.io.InputStream
-1 times = 0ms
-
-
-
-argsArray.type => ?{def indices: ?}
-
-argsArray.type => ?{def indices: ?}
-1 times = 2ms
-
-
-
-((Nothing, Nothing)) => BCodeSkelBuilder.this.global.Symbol
-
-((Nothing, Nothing)) => BCodeSkelBuilder.this.global.Symbol
-2 times = 0ms
-
-
-
-((BTypesFromSymbols.this.global.Position, String)) => String
-
-((BTypesFromSymbols.this.global.Position, String)) => String
-3 times = 0ms
-
-
-
-scala.reflect.ClassTag[StackTraceElement]
-
-scala.reflect.ClassTag[StackTraceElement]
-1 times = 0ms
-
-
-
-(=> List[Typers.this.global.Symbol]) => ?{def ++=: ?}
-
-(=> List[Typers.this.global.Symbol]) => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-maybeOK.type => ?{def filter: ?}
-
-maybeOK.type => ?{def filter: ?}
-1 times = 0ms
-
-
-
-scala.collection.TraversableOnce[B] => Traversable[?B]
-
-scala.collection.TraversableOnce[B] => Traversable[?B]
-1 times = 0ms
-
-
-
-((Nothing, Unit, Any => Nothing)) => CompilerCommand.this.Setting => Boolean
-
-((Nothing, Unit, Any => Nothing)) => CompilerCommand.this.Setting => Boolean
-3 times = 0ms
-
-
-
-(=> Namers.this.global.AnnotationInfo) => Namers.this.global.Type
-
-(=> Namers.this.global.AnnotationInfo) => Namers.this.global.Type
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Implicits.this.ImplicitInfo
-
-((Nothing, Nothing, Nothing)) => Implicits.this.ImplicitInfo
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Type],Erasure.this.global.Type,List[Erasure.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Type],Erasure.this.global.Type,List[Erasure.this.global.Type]]
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.AnyRefTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.AnyRefTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TseitinSolution$3],Solver.this.Solution,List[Solver.this.Solution]]
-
-scala.collection.generic.CanBuildFrom[List[TseitinSolution$3],Solver.this.Solution,List[Solver.this.Solution]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => scala.reflect.io.AbstractFile
-
-((Nothing, Nothing)) => scala.reflect.io.AbstractFile
-3 times = 14ms
-
-
-
-((Nothing, Nothing, Nothing)) => Long
-
-((Nothing, Nothing, Nothing)) => Long
-2 times = 0ms
-
-
-
-GenSymbols.this.SymbolTable => ?{def +=: ?}
-
-GenSymbols.this.SymbolTable => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeCheckers.this.global.DefTree],String,That]
-
-scala.collection.generic.CanBuildFrom[List[TreeCheckers.this.global.DefTree],String,That]
-1 times = 0ms
-
-
-
-(=> List[Namers.this.global.Symbol]) => Namers.this.global.Type
-
-(=> List[Namers.this.global.Symbol]) => Namers.this.global.Type
-1 times = 0ms
-
-
-
-List[MatchTreeMaking.this.global.Tree] => scala.collection.IterableLike[El2,Repr2]
-
-List[MatchTreeMaking.this.global.Tree] => scala.collection.IterableLike[El2,Repr2]
-1 times = 0ms
-
-
-
-((Nothing, (Any, Any) => Nothing)) => Array[Long]
-
-((Nothing, (Any, Any) => Nothing)) => Array[Long]
-1 times = 0ms
-
-
-
-x$2.type => ?{def getValue: ?}
-
-x$2.type => ?{def getValue: ?}
-1 times = 0ms
-
-
-
-Array[Byte] => ?{def slice: ?}
-
-Array[Byte] => ?{def slice: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],Implicits.this.global.Type,List[Implicits.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],Implicits.this.global.Type,List[Implicits.this.global.Type]]
-3 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.util.Try[scala.tools.nsc.plugins.Plugin.AnyClass]],Class[_],That]
-
-scala.collection.generic.CanBuildFrom[List[scala.util.Try[scala.tools.nsc.plugins.Plugin.AnyClass]],Class[_],That]
-1 times = 0ms
-
-
-
-TypeDiagnostics.this.global.Scope => TypeDiagnostics.this.global.Type
-
-TypeDiagnostics.this.global.Scope => TypeDiagnostics.this.global.Type
-2 times = 1ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Reshape.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => Reshape.this.global.Symbol
-4 times = 0ms
-
-
-
-arr.type => ?{def toList: ?}
-
-arr.type => ?{def toList: ?}
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],Infer.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Int],Infer.this.global.Type,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => List[MatchCodeGen.this.global.Tree]
-
-((Nothing, Nothing)) => List[MatchCodeGen.this.global.Tree]
-1 times = 0ms
-
-
-
-Array[String] => ?{def toSeq: ?}
-
-Array[String] => ?{def toSeq: ?}
-1 times = 1ms
-
-
-
-scala.collection.immutable.Set[Typers.this.global.Symbol] => ?{def +=: ?}
-
-scala.collection.immutable.Set[Typers.this.global.Symbol] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: scala.tools.nsc.backend.jvm.analysis.NullnessValue]
-
-((Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: scala.tools.nsc.backend.jvm.analysis.NullnessValue]
-2 times = 0ms
-
-
-
-(=> Array[Int]) => Array[CNF.this.Clause]
-
-(=> Array[Int]) => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-Scanners.this.global.nme.PACKAGEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.PACKAGEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[String],String,List[String]]
-6 times = 3ms
-
-
-
-((Nothing, Nothing, Nothing)) => DocComments.this.Symbol
-
-((Nothing, Nothing, Nothing)) => DocComments.this.Symbol
-1 times = 0ms
-
-
-
-String('PCData') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('PCData') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-x$5.type => ?{def asScala: ?}
-
-x$5.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.ValDef,List[Parsers.this.global.ValDef]]
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.ValDef,List[Parsers.this.global.ValDef]]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[BoxUnbox.this.BoxConsumer]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[BoxUnbox.this.BoxConsumer]) => ?{def +=: ?}
-2 times = 0ms
-
-
-
-String('%s - %s') => ?{def format: ?}
-
-String('%s - %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-UnCurry.this.global.Apply => ?{def OBJ_EQ: ?}
-
-UnCurry.this.global.Apply => ?{def OBJ_EQ: ?}
-1 times = 0ms
-
-
-
-Global.this.constructors.type => ?{def ->: ?}
-
-Global.this.constructors.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[Mixin.this.global.Symbol] => ?{def +=: ?}
-
-scala.collection.immutable.Set[Mixin.this.global.Symbol] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Unapplies.this.global.TypeDef],Unapplies.this.global.TypeDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Unapplies.this.global.TypeDef],Unapplies.this.global.TypeDef,That]
-1 times = 0ms
-
-
-
-Option[(SymbolTrackers.this.global.Symbol, Long)] => scala.collection.GenTraversableOnce[?]
-
-Option[(SymbolTrackers.this.global.Symbol, Long)] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[((Int, Array[Byte]), Int)],scala.tools.nsc.util.ShowPickled.PickleBufferEntry,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[((Int, Array[Byte]), Int)],scala.tools.nsc.util.ShowPickled.PickleBufferEntry,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[CleanUp.this.global.Tree],CleanUp.this.global.Type,Any]
-
-scala.collection.generic.CanBuildFrom[List[CleanUp.this.global.Tree],CleanUp.this.global.Type,Any]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => BCodeBodyBuilder.this.global.Symbol
-
-((Nothing, Nothing)) => BCodeBodyBuilder.this.global.Symbol
-2 times = 0ms
-
-
-
-(=> Unit) => Reifiers.this.global.Type
-
-(=> Unit) => Reifiers.this.global.Type
-1 times = 0ms
-
-
-
-Boolean(true) => Printers.this.BooleanFlag
-
-Boolean(true) => Printers.this.BooleanFlag
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],TreeGen.this.global.Bind,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],TreeGen.this.global.Bind,That]
-1 times = 1ms
-
-
-
-List[TypeDiagnostics.this.global.Type] => scala.collection.TraversableLike[El1,Repr1]
-
-List[TypeDiagnostics.this.global.Type] => scala.collection.TraversableLike[El1,Repr1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.Tree,List[Reshape.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.Tree,List[Reshape.this.global.Tree]]
-1 times = 2ms
-
-
-
-(=> Array[Char]) => Array[Int]
-
-(=> Array[Char]) => Array[Int]
-6 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => TypingTransformers.this.global.Symbol
-
-(=> (Nothing, Nothing)) => TypingTransformers.this.global.Symbol
-1 times = 0ms
-
-
-
-Int => ?{def min: ?}
-
-Int => ?{def min: ?}
-3 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.analyzer.global.Type,List[Interface.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.analyzer.global.Type,List[Interface.this.global.Type]]
-1 times = 0ms
-
-
-
-Int(45) => ?{def ->: ?}
-
-Int(45) => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[reflect.runtime.universe.Type],String,That]
-
-scala.collection.generic.CanBuildFrom[List[reflect.runtime.universe.Type],String,That]
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BTypes.this.ClassInfo] => ?{def orThrow: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BTypes.this.ClassInfo] => ?{def orThrow: ?}
-2 times = 1ms
-
-
-
-segments.type => ?{def init: ?}
-
-segments.type => ?{def init: ?}
-1 times = 1ms
-
-
-
-String('undetParam inferred: %s as %s') => ?{def format: ?}
-
-String('undetParam inferred: %s as %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],List[SpecializeTypes.this.global.Type],List[List[SpecializeTypes.this.global.Type]]]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],List[SpecializeTypes.this.global.Type],List[List[SpecializeTypes.this.global.Type]]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => NodePrinters.this.global.Tree
-
-((Nothing, Nothing)) => NodePrinters.this.global.Tree
-3 times = 0ms
-
-
-
-(=> Namers.this.global.Tree) => Namers.this.global.Type
-
-(=> Namers.this.global.Tree) => Namers.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.asm.Type],(scala.tools.asm.Type, Int),List[(scala.tools.asm.Type, Int)]]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.asm.Type],(scala.tools.asm.Type, Int),List[(scala.tools.asm.Type, Int)]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[reflect.runtime.universe.TypeRef]
-
-scala.reflect.ClassTag[reflect.runtime.universe.TypeRef]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(Int, Int),List[(Int, Int)]]
-
-scala.collection.generic.CanBuildFrom[List[String],(Int, Int),List[(Int, Int)]]
-1 times = 0ms
-
-
-
-Namers.this.global.AnnotationInfo => Namers.this.global.Type
-
-Namers.this.global.AnnotationInfo => Namers.this.global.Type
-1 times = 0ms
-
-
-
-s.type => ?{def head: ?}
-
-s.type => ?{def head: ?}
-1 times = 0ms
-
-
-
-String => ?{def filterNot: ?}
-
-String => ?{def filterNot: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => ClassfileParser.this.symbolTable.AnnotationInfo
-
-((Nothing, Nothing, Nothing)) => ClassfileParser.this.symbolTable.AnnotationInfo
-1 times = 0ms
-
-
-
-((() => Nothing, () => Nothing)) => Iterator[Char]
-
-((() => Nothing, () => Nothing)) => Iterator[Char]
-1 times = 0ms
-
-
-
-Int(32768) => scala.tools.nsc.typechecker.ContextMode
-
-Int(32768) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-(=> Unit) => java.nio.CharBuffer
-
-(=> Unit) => java.nio.CharBuffer
-2 times = 0ms
-
-
-
-Int(4) => scala.tools.nsc.typechecker.ContextMode
-
-Int(4) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Extractors.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Extractors.this.global.Symbol
-12 times = 1ms
-
-
-
-JavaScanners.this.global.javanme.STATICkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.STATICkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => DefaultMacroCompiler.this.global.Tree
-
-(=> (Nothing, Nothing)) => DefaultMacroCompiler.this.global.Tree
-1 times = 0ms
-
-
-
-Array[String] => ?{def toList: ?}
-
-Array[String] => ?{def toList: ?}
-5 times = 5ms
-
-
-
-(=> (Nothing, Nothing)) => Array[java.net.URL]
-
-(=> (Nothing, Nothing)) => Array[java.net.URL]
-1 times = 0ms
-
-
-
-args.type => ?{def indexOf: ?}
-
-args.type => ?{def indexOf: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.FALSEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.FALSEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[PropositionalLogic.this.Prop],PropositionalLogic.this.Prop,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[PropositionalLogic.this.Prop],PropositionalLogic.this.Prop,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Internals.this.global.Symbol
-
-(=> (Nothing, Nothing)) => Internals.this.global.Symbol
-1 times = 0ms
-
-
-
-String('PROGRAM') => ?{def ->: ?}
-
-String('PROGRAM') => ?{def ->: ?}
-1 times = 1ms
-
-
-
-Array[Int] => Array[Class[_]]
-
-Array[Int] => Array[Class[_]]
-3 times = 0ms
-
-
-
-Int => String
-
-Int => String
-12 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.runtime.BoxesRunTime]
-
-scala.reflect.ClassTag[scala.runtime.BoxesRunTime]
-1 times = 1ms
-
-
-
-RefChecks.this.global.definitions.JavaRepeatedParamClass.type => ?{def ->: ?}
-
-RefChecks.this.global.definitions.JavaRepeatedParamClass.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('investigate a wildcard type such as `_ %s %s`. (SLS 3.2.10)') => ?{def format: ?}
-
-String('investigate a wildcard type such as `_ %s %s`. (SLS 3.2.10)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[Inliner.this.postProcessor.callGraph.ArgInfo],(Int, Inliner.this.postProcessor.callGraph.ArgInfo),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[Inliner.this.postProcessor.callGraph.ArgInfo],(Int, Inliner.this.postProcessor.callGraph.ArgInfo),That]
-1 times = 1ms
-
-
-
-scala.collection.immutable.Set[TypeDiagnostics.this.TypeDiag] => scala.collection.GenTraversableOnce[B]
-
-scala.collection.immutable.Set[TypeDiagnostics.this.TypeDiag] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-String('boundSym: %s of type %s') => ?{def format: ?}
-
-String('boundSym: %s of type %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Option[Erasure.this.global.Type] => scala.collection.GenTraversableOnce[?]
-
-Option[Erasure.this.global.Type] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-Option[scala.tools.nsc.util.ClassPath] => scala.collection.GenTraversableOnce[?]
-
-Option[scala.tools.nsc.util.ClassPath] => scala.collection.GenTraversableOnce[?]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]],scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])],List[scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]]]
-
-scala.collection.generic.CanBuildFrom[List[scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]],scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])],List[scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]]]
-1 times = 0ms
-
-
-
-String(': %s is a subclass of %s, but method parameter types must match exactly.') => ?{def format: ?}
-
-String(': %s is a subclass of %s, but method parameter types must match exactly.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Unit => CharSequence
-
-Unit => CharSequence
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.ImplicitInfo],(Implicits.this.SearchResult, List[Implicits.this.global.TypeConstraint]),That]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.ImplicitInfo],(Implicits.this.SearchResult, List[Implicits.this.global.TypeConstraint]),That]
-1 times = 0ms
-
-
-
-List[MatchOptimizer.this.Tree] => scala.collection.GenTraversableOnce[B]
-
-List[MatchOptimizer.this.Tree] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-Int(40) => ?{def ->: ?}
-
-Int(40) => ?{def ->: ?}
-1 times = 0ms
-
-
-
-CompilerCommand.this.settings.BooleanSetting => Boolean
-
-CompilerCommand.this.settings.BooleanSetting => Boolean
-7 times = 1ms
-
-
-
-(=> List[String]) => ?{def ++=: ?}
-
-(=> List[String]) => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-Unit => JavaParsers.this.global.Type
-
-Unit => JavaParsers.this.global.Type
-3 times = 0ms
-
-
-
-Char => ?{def asDigit: ?}
-
-Char => ?{def asDigit: ?}
-2 times = 0ms
-
-
-
-scala.math.Ordering[SymbolTrackers.this.global.Symbol]
-
-scala.math.Ordering[SymbolTrackers.this.global.Symbol]
-1 times = 0ms
-
-
-
-String('Modifiers\\((\\d+)[lL], TypeName\\(\'(.*?)\'\\), List\\((.*?)\\)\\)') => ?{def r: ?}
-
-String('Modifiers\((\d+)[lL], TypeName\('(.*?)'\), List\((.*?)\)\)') => ?{def r: ?}
-1 times = 0ms
-
-
-
-Unit => Extractors.this.global.Type
-
-Unit => Extractors.this.global.Type
-1 times = 0ms
-
-
-
-String('symbol package') => ?{def ->: ?}
-
-String('symbol package') => ?{def ->: ?}
-1 times = 3ms
-
-
-
-Char('/') => String
-
-Char('/') => String
-3 times = 0ms
-
-
-
-(=> Array[Char]) => Array[CNF.this.Clause]
-
-(=> Array[Char]) => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Placeholders.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Placeholders.this.global.Symbol
-8 times = 1ms
-
-
-
-Array[Unit] => Array[Int]
-
-Array[Unit] => Array[Int]
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,That]
-
-scala.collection.generic.CanBuildFrom[List[String],String,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => MatchOptimization.this.global.Tree
-
-((Nothing, Nothing)) => MatchOptimization.this.global.Tree
-1 times = 0ms
-
-
-
-files.type => ?{def toList: ?}
-
-files.type => ?{def toList: ?}
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => Parsers.this.global.TypeBounds
-
-(=> (Nothing, Nothing)) => Parsers.this.global.TypeBounds
-1 times = 0ms
-
-
-
-Array[CNF.this.Clause] => scala.collection.TraversableOnce[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit]]
-
-Array[CNF.this.Clause] => scala.collection.TraversableOnce[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit]]
-1 times = 0ms
-
-
-
-Array[Short] => Array[Int]
-
-Array[Short] => Array[Int]
-6 times = 0ms
-
-
-
-String('nested free def: %s') => ?{def format: ?}
-
-String('nested free def: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => NamesDefaults.this.global.Symbol
-
-(=> (Nothing, Nothing)) => NamesDefaults.this.global.Symbol
-4 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.IntClass.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.IntClass.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Buffer[scala.tools.asm.tree.ParameterNode],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Buffer[scala.tools.asm.tree.ParameterNode],String,That]
-1 times = 1ms
-
-
-
-(=> Unit) => java.io.PrintWriter
-
-(=> Unit) => java.io.PrintWriter
-13 times = 0ms
-
-
-
-(=> Array[String]) => Array[Int]
-
-(=> Array[String]) => Array[Int]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(RefChecks.this.global.TermName, Iterable[RefChecks.this.global.Symbol])],RefChecks.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[(RefChecks.this.global.TermName, Iterable[RefChecks.this.global.Symbol])],RefChecks.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-(=> scala.reflect.io.Directory) => tools.nsc.io.File
-
-(=> scala.reflect.io.Directory) => tools.nsc.io.File
-1 times = 0ms
-
-
-
-String('Malformed server address: %s; exiting') => ?{def format: ?}
-
-String('Malformed server address: %s; exiting') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.TypeVar,That]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.TypeVar,That]
-1 times = 0ms
-
-
-
-f.type => ?{def isClass: ?}
-
-f.type => ?{def isClass: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.CATCHkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.CATCHkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-opt.type => ?{def ->: ?}
-
-opt.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Set[PropositionalLogic.this.Prop]
-
-((Nothing, Nothing)) => Set[PropositionalLogic.this.Prop]
-4 times = 0ms
-
-
-
-java.util.List[scala.tools.asm.tree.TryCatchBlockNode] => ?{def asScala: ?}
-
-java.util.List[scala.tools.asm.tree.TryCatchBlockNode] => ?{def asScala: ?}
-2 times = 1ms
-
-
-
-((Nothing, Unit, Unit)) => Macros.this.global.Position
-
-((Nothing, Unit, Unit)) => Macros.this.global.Position
-1 times = 0ms
-
-
-
-String(' ') => ?{def *: ?}
-
-String(' ') => ?{def *: ?}
-8 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Type],NamesDefaults.this.global.TypeTree,That]
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Type],NamesDefaults.this.global.TypeTree,That]
-1 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[Int]
-
-(=> Array[Byte]) => Array[Int]
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[CoreBTypesFromSymbols.this.bTypes.global.Symbol,CoreBTypesFromSymbols.this.bTypes.global.TermSymbol],(CoreBTypesFromSymbols.this.bTypes.global.TermSymbol, CoreBTypesFromSymbols.this.bTypes.ClassBType),Map[CoreBTypesFromSymbols.this.bTypes.global.Symbol,CoreBTypesFromSymbols.this.bTypes.ClassBType]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[CoreBTypesFromSymbols.this.bTypes.global.Symbol,CoreBTypesFromSymbols.this.bTypes.global.TermSymbol],(CoreBTypesFromSymbols.this.bTypes.global.TermSymbol, CoreBTypesFromSymbols.this.bTypes.ClassBType),Map[CoreBTypesFromSymbols.this.bTypes.global.Symbol,CoreBTypesFromSymbols.this.bTypes.ClassBType]]
-1 times = 0ms
-
-
-
-List[RefChecks.this.global.analyzer.global.Symbol] => scala.collection.GenTraversableOnce[B]
-
-List[RefChecks.this.global.analyzer.global.Symbol] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.Tree,That]
-1 times = 1ms
-
-
-
-List[Parsers.this.global.Tree] => Parsers.this.global.Tree
-
-List[Parsers.this.global.Tree] => Parsers.this.global.Tree
-3 times = 5ms
-
-
-
-JavaScanners.this.global.javanme.STRICTFPkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.STRICTFPkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],scala.tools.nsc.util.ClassPath,Seq[scala.tools.nsc.util.ClassPath]]
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],scala.tools.nsc.util.ClassPath,Seq[scala.tools.nsc.util.ClassPath]]
-1 times = 3ms
-
-
-
-String('launching implicit search for %s.%s[%s]') => ?{def format: ?}
-
-String('launching implicit search for %s.%s[%s]') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],String,That]
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.FORkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.FORkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Array[Short]) => Array[Class[_]]
-
-(=> Array[Short]) => Array[Class[_]]
-3 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => java.nio.ByteBuffer
-
-((Nothing, Nothing, Nothing)) => java.nio.ByteBuffer
-1 times = 0ms
-
-
-
-ScalaSettings.this.BooleanSetting => ?{def enablingIfNotSetByUser: ?}
-
-ScalaSettings.this.BooleanSetting => ?{def enablingIfNotSetByUser: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PropositionalLogic.this.Prop],PropositionalLogic.this.Prop,That]
-
-scala.collection.generic.CanBuildFrom[List[PropositionalLogic.this.Prop],PropositionalLogic.this.Prop,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => List[String]
-
-((Nothing, Nothing)) => List[String]
-1 times = 0ms
-
-
-
-String('defined by %s') => ?{def format: ?}
-
-String('defined by %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.LONG.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.LONG.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Reifier.this.global.Symbol],Reifier.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Reifier.this.global.Symbol],Reifier.this.global.Symbol,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[JavaParsers.this.global.Tree],JavaParsers.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[JavaParsers.this.global.Tree],JavaParsers.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[T],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[T],Int,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Checkable.this.global.Symbol, Checkable.this.global.TypeVar)],Checkable.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[(Checkable.this.global.Symbol, Checkable.this.global.TypeVar)],Checkable.this.global.Type,That]
-1 times = 0ms
-
-
-
-String(' (@ = \'%s\')') => ?{def format: ?}
-
-String(' (@ = '%s')') => ?{def format: ?}
-1 times = 0ms
-
-
-
-List[MatchTreeMaking.this.global.Symbol] => scala.collection.TraversableLike[El1,Repr1]
-
-List[MatchTreeMaking.this.global.Symbol] => scala.collection.TraversableLike[El1,Repr1]
-1 times = 0ms
-
-
-
-(=> Unit) => Contexts.this.ContextReporter
-
-(=> Unit) => Contexts.this.ContextReporter
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[CleanUp.this.global.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[CleanUp.this.global.Symbol],String,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Tree)],SpecializeTypes.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Tree)],SpecializeTypes.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[BCodeIdiomatic.this.bTypes.BType]
-
-scala.reflect.ClassTag[BCodeIdiomatic.this.bTypes.BType]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Enclosures.this.universe.analyzer.Context],Enclosures.this.universe.analyzer.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Enclosures.this.universe.analyzer.Context],Enclosures.this.universe.analyzer.global.Tree,That]
-1 times = 6ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(List[scala.reflect.io.Path], scala.util.Try[scala.tools.nsc.plugins.PluginDescription])],scala.util.Try[(scala.tools.nsc.plugins.PluginDescription, scala.reflect.internal.util.ScalaClassLoader)],PDResults]
-
-scala.collection.generic.CanBuildFrom[List[(List[scala.reflect.io.Path], scala.util.Try[scala.tools.nsc.plugins.PluginDescription])],scala.util.Try[(scala.tools.nsc.plugins.PluginDescription, scala.reflect.internal.util.ScalaClassLoader)],PDResults]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimizer.this.TreeMaker],List[MatchOptimizer.this.Tree],That]
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimizer.this.TreeMaker],List[MatchOptimizer.this.Tree],That]
-1 times = 0ms
-
-
-
-String => Scanners.this.Offset
-
-String => Scanners.this.Offset
-4 times = 0ms
-
-
-
-((Nothing, Nothing)) => Set[MatchAnalyzer.this.Prop]
-
-((Nothing, Nothing)) => Set[MatchAnalyzer.this.Prop]
-1 times = 0ms
-
-
-
-Int => ?{def +=: ?}
-
-Int => ?{def +=: ?}
-140 times = 32ms
-
-
-
-Array[java.net.URL] => Seq[java.net.URL]
-
-Array[java.net.URL] => Seq[java.net.URL]
-1 times = 1ms
-
-
-
-((Nothing, (Any, Any) => Nothing)) => Array[Double]
-
-((Nothing, (Any, Any) => Nothing)) => Array[Double]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Symbol,List[SpecializeTypes.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Symbol,List[SpecializeTypes.this.global.Symbol]]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Duplicators.this.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => Duplicators.this.global.Tree
-12 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],RefChecks.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],RefChecks.this.global.Type,That]
-1 times = 0ms
-
-
-
-scala.reflect.io.Directory => tools.nsc.io.File
-
-scala.reflect.io.Directory => tools.nsc.io.File
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => String
-
-(=> (Nothing, Nothing, Nothing)) => String
-91 times = 6ms
-
-
-
-(=> (Nothing, Nothing)) => MatchCodeGen.this.global.Symbol
-
-(=> (Nothing, Nothing)) => MatchCodeGen.this.global.Symbol
-6 times = 0ms
-
-
-
-scala.reflect.ClassTag[Namers.this.ConstructorDefaultsAttachment]
-
-scala.reflect.ClassTag[Namers.this.ConstructorDefaultsAttachment]
-3 times = 3ms
-
-
-
-List[Typers.this.global.Symbol] => ?{def ++=: ?}
-
-List[Typers.this.global.Symbol] => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.Symbol],Delambdafy.this.global.TermSymbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.Symbol],Delambdafy.this.global.TermSymbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.Tree,List[Parsers.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.Tree,List[Parsers.this.global.Tree]]
-3 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Type],Erasure.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Type],Erasure.this.global.Tree,That]
-1 times = 0ms
-
-
-
-lazyAccessor.type => ?{def ->: ?}
-
-lazyAccessor.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Int) => ?{def *=: ?}
-
-(=> Int) => ?{def *=: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => String
-
-((Nothing, Nothing)) => String
-52 times = 13ms
-
-
-
-String('typechecking macro def %s at %s') => ?{def format: ?}
-
-String('typechecking macro def %s at %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => SpecializeTypes.this.global.gen.global.Symbol
-
-((Nothing, Nothing)) => SpecializeTypes.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-Long => ?{def |=: ?}
-
-Long => ?{def |=: ?}
-6 times = 0ms
-
-
-
-Array[String] => scala.collection.GenTraversableOnce[?]
-
-Array[String] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[GenTrees.this.global.ImportSelector],GenTrees.this.global.Tree,List[GenTrees.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[GenTrees.this.global.ImportSelector],GenTrees.this.global.Tree,List[GenTrees.this.global.Tree]]
-1 times = 1ms
-
-
-
-String('incomplete option %s (requires %s)') => ?{def format: ?}
-
-String('incomplete option %s (requires %s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => MethodSynthesis.this.global.Tree
-
-(=> (Nothing, Nothing)) => MethodSynthesis.this.global.Tree
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def materializeExpr: ?}
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def materializeExpr: ?}
-1 times = 2ms
-
-
-
-(=> (Nothing, Nothing)) => java.awt.Component
-
-(=> (Nothing, Nothing)) => java.awt.Component
-3 times = 0ms
-
-
-
-(=> Unit) => Typers.this.global.Type
-
-(=> Unit) => Typers.this.global.Type
-2 times = 0ms
-
-
-
-AliasingFrame.this.aliases.type => ?{def toList: ?}
-
-AliasingFrame.this.aliases.type => ?{def toList: ?}
-1 times = 1ms
-
-
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Byte]
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Byte]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SyntheticMethods.this.global.Tree],SyntheticMethods.this.global.Tree,List[SyntheticMethods.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[SyntheticMethods.this.global.Tree],SyntheticMethods.this.global.Tree,List[SyntheticMethods.this.global.Tree]]
-1 times = 0ms
-
-
-
-t1.type => ?{def INT_-: ?}
-
-t1.type => ?{def INT_-: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Duplicators.this.global.DelambdafyTarget.type]
-
-scala.reflect.ClassTag[Duplicators.this.global.DelambdafyTarget.type]
-2 times = 1ms
-
-
-
-(=> Array[Long]) => Array[Int]
-
-(=> Array[Long]) => Array[Int]
-6 times = 0ms
-
-
-
-(=> Unit) => Double
-
-(=> Unit) => Double
-3 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.reflect.io.Path]
-
-scala.reflect.ClassTag[scala.reflect.io.Path]
-1 times = 0ms
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => ?{def ||: ?}
-
-scala.tools.nsc.Settings#BooleanSetting => ?{def ||: ?}
-17 times = 13ms
-
-
-
-Boolean => scala.reflect.internal.util.TriState
-
-Boolean => scala.reflect.internal.util.TriState
-1 times = 0ms
-
-
-
-String('-') => ?{def *: ?}
-
-String('-') => ?{def *: ?}
-1 times = 0ms
-
-
-
-String('macro classloader: initializing from -cp: %s') => ?{def format: ?}
-
-String('macro classloader: initializing from -cp: %s') => ?{def format: ?}
-1 times = 1ms
-
-
-
-((Nothing, Nothing)) => Printers.this.Symbol
-
-((Nothing, Nothing)) => Printers.this.Symbol
-4 times = 2ms
-
-
-
-Int(32) => scala.tools.nsc.typechecker.ContextMode
-
-Int(32) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[ExtensionMethods.this.global.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[ExtensionMethods.this.global.Symbol],String,That]
-1 times = 0ms
-
-
-
-Array[String] => ?{def /:: ?}
-
-Array[String] => ?{def /:: ?}
-1 times = 2ms
-
-
-
-maxName.type => ?{def min: ?}
-
-maxName.type => ?{def min: ?}
-1 times = 0ms
-
-
-
-argPos.type => ?{def contains: ?}
-
-argPos.type => ?{def contains: ?}
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => JavaParsers.this.global.TypeBounds
-
-(=> (Nothing, Nothing)) => JavaParsers.this.global.TypeBounds
-2 times = 0ms
-
-
-
-scala.concurrent.ExecutionContext
-
-scala.concurrent.ExecutionContext
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.runtime.StructuralCallSite]
-
-scala.reflect.ClassTag[scala.runtime.StructuralCallSite]
-1 times = 1ms
-
-
-
-Callsite.this.callee.type => ?{def get: ?}
-
-Callsite.this.callee.type => ?{def get: ?}
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Tree,List[Interface.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Tree,List[Interface.this.global.Tree]]
-1 times = 0ms
-
-
-
-sym.type => ?{def +: ?}
-
-sym.type => ?{def +: ?}
-2 times = 0ms
-
-
-
-String('\n** %s moved:\n** Previously:\n%s\n** Currently:\n%s') => ?{def format: ?}
-
-String('
-** %s moved:
-** Previously:
-%s
-** Currently:
-%s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-CNF.this.Cnf => scala.collection.GenTraversableOnce[?]
-
-CNF.this.Cnf => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.Symbol],List[BCodeSkelBuilder.this.global.AnnotationInfo],List[List[BCodeSkelBuilder.this.global.AnnotationInfo]]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.Symbol],List[BCodeSkelBuilder.this.global.AnnotationInfo],List[List[BCodeSkelBuilder.this.global.AnnotationInfo]]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.FreeTermSymbol],Macros.this.global.FreeSymbol{def name: Macros.this.global.Name{def newName(str: String): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def subName(from: Int,to: Int): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def companionName: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TypeName with Macros.this.global.TermName <: Macros.this.global.Name}; def next: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}}; def rawname: Macros.this.global.Name{def newName(str: String): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def subName(from: Int,to: Int): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def companionName: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TypeName with Macros.this.global.TermName <: Macros.this.global.Name}; def next: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}}; type TypeOfClonedSymbol >: Macros.this.global.TermSymbol with Macros.this.global.TypeSkolem <: Macros.this.global.Symbol{def name: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def rawname: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; type TypeOfClonedSymbol >: Macros.this.global.TermSymbol with Macros.this.global.TypeSkolem <: Macros.this.global.Symbol{type TypeOfClonedSymbol >: Macros.this.global.TermSymbol with Macros.this.global.TypeSkolem <: Macros.this.global.Symbol; type NameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; type NameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}}; type NameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name{def newName(str: String): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def subName(from: Int,to: Int): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def companionName: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TypeName with Macros.this.global.TermName <: Macros.this.global.Name}; def next: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}}},That]
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.FreeTermSymbol],Macros.this.global.FreeSymbol{def name: Macros.this.global.Name{def newName(str: String): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def subName(from: Int,to: Int): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def companionName: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TypeName with Macros.this.global.TermName <: Macros.this.global.Name}; def next: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}}; def rawname: Macros.this.global.Name{def newName(str: String): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def subName(from: Int,to: Int): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def companionName: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TypeName with Macros.this.global.TermName <: Macros.this.global.Name}; def next: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}}; type TypeOfClonedSymbol >: Macros.this.global.TermSymbol with Macros.this.global.TypeSkolem <: Macros.this.global.Symbol{def name: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def rawname: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; type TypeOfClonedSymbol >: Macros.this.global.TermSymbol with Macros.this.global.TypeSkolem <: Macros.this.global.Symbol{type TypeOfClonedSymbol >: Macros.this.global.TermSymbol with Macros.this.global.TypeSkolem <: Macros.this.global.Symbol; type NameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; type NameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}}; type NameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name{def newName(str: String): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def subName(from: Int,to: Int): Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; def companionName: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TypeName with Macros.this.global.TermName <: Macros.this.global.Name}; def next: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name{def next: Macros.this.global.Name; type ThisNameType >: Macros.this.global.TermName with Macros.this.global.TypeName <: Macros.this.global.Name}}},That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.TypeTree,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.TypeTree,That]
-1 times = 0ms
-
-
-
-scala.tools.asm.tree.analysis.Frame[scala.tools.asm.tree.analysis.SourceValue] => ?{def peekStack: ?}
-
-scala.tools.asm.tree.analysis.Frame[scala.tools.asm.tree.analysis.SourceValue] => ?{def peekStack: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => SpecializeTypes.this.global.Symbol
-
-((Nothing, Nothing, Nothing)) => SpecializeTypes.this.global.Symbol
-2 times = 0ms
-
-
-
-xs.type => ?{def mkLines: ?}
-
-xs.type => ?{def mkLines: ?}
-1 times = 0ms
-
-
-
-ContextErrors.this.Context
-
-ContextErrors.this.Context
-107 times = 10ms
-
-
-
-(=> (Nothing, Nothing)) => Namers.this.global.ClassDef
-
-(=> (Nothing, Nothing)) => Namers.this.global.ClassDef
-1 times = 0ms
-
-
-
-Map[Calculate.this.global.Symbol,Int] => ?{def +=: ?}
-
-Map[Calculate.this.global.Symbol,Int] => ?{def +=: ?}
-1 times = 5ms
-
-
-
-(=> Char('.')) => String
-
-(=> Char('.')) => String
-4 times = 0ms
-
-
-
-MatchCodeGen.this.global.Symbol => List[MatchCodeGen.this.global.Symbol]
-
-MatchCodeGen.this.global.Symbol => List[MatchCodeGen.this.global.Symbol]
-1 times = 0ms
-
-
-
-Typers.this.global.Tree => Typers.this.global.Type
-
-Typers.this.global.Tree => Typers.this.global.Type
-3 times = 0ms
-
-
-
-String => ?{def stripPrefix: ?}
-
-String => ?{def stripPrefix: ?}
-1 times = 0ms
-
-
-
-s.name.type => ?{def +: ?}
-
-s.name.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-Array[Int] => Array[CNF.this.Clause]
-
-Array[Int] => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-((Nothing, Nothing)) => Typers.this.global.Tree
-
-((Nothing, Nothing)) => Typers.this.global.Tree
-37 times = 2ms
-
-
-
-JavaScanners.this.global.javanme.SUPERkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.SUPERkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('amp') => ?{def ->: ?}
-
-String('amp') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Symbol,List[Typers.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Symbol,List[Typers.this.global.Symbol]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],Any,That]
-
-scala.collection.generic.CanBuildFrom[List[Any],Any,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Long]
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Long]
-1 times = 0ms
-
-
-
-String('Patterns for classfile names from which the inliner is allowed to pull in code.\n | * Matches classes in the empty package\n | ** All classes\n | a.C Class a.C\n | a.* Classes in package a\n | a.** Classes in a and in sub-packages of a\n | **.Util Classes named Util in any package (including the empty package)\n | a.**.*Util* Classes in a and sub-packages with Util in their name (including a.Util)\n | a.C$D The nested class D defined in class a.C\n | scala.Predef$ The scala.Predef object\n | <sources> Classes defined in source files compiled in the current compilation, either\n | passed explicitly to the compiler or picked up from the `-sourcepath`\n |\n |The setting accepts a list of patterns: `-opt-inline-from:p1:p2`. The setting can be passed\n |multiple times, the list of patterns gets extended. A leading `!` marks a pattern excluding.\n |The last matching pattern defines whether a classfile is included or excluded (default: excluded).\n |For example, `a.**:!a.b.**` includes classes in a and sub-packages, but not in a.b and sub-packages.\n |\n |Note: on the command-line you might need to quote patterns containing `*` to prevent the shell\n |from expanding it to a list of files in the current directory.') => ?{def stripMargin: ?}
-
-String('Patterns for classfile names from which the inliner is allowed to pull in code.
- | * Matches classes in the empty package
- | ** All classes
- | a.C Class a.C
- | a.* Classes in package a
- | a.** Classes in a and in sub-packages of a
- | **.Util Classes named Util in any package (including the empty package)
- | a.**.*Util* Classes in a and sub-packages with Util in their name (including a.Util)
- | a.C$D The nested class D defined in class a.C
- | scala.Predef$ The scala.Predef object
- | <sources> Classes defined in source files compiled in the current compilation, either
- | passed explicitly to the compiler or picked up from the `-sourcepath`
- |
- |The setting accepts a list of patterns: `-opt-inline-from:p1:p2`. The setting can be passed
- |multiple times, the list of patterns gets extended. A leading `!` marks a pattern excluding.
- |The last matching pattern defines whether a classfile is included or excluded (default: excluded).
- |For example, `a.**:!a.b.**` includes classes in a and sub-packages, but not in a.b and sub-packages.
- |
- |Note: on the command-line you might need to quote patterns containing `*` to prevent the shell
- |from expanding it to a list of files in the current directory.') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Tree,List[Typers.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Tree,List[Typers.this.global.Tree]]
-4 times = 1ms
-
-
-
-((Nothing, Nothing)) => ToolBoxGlobal.this.CompilationUnit
-
-((Nothing, Nothing)) => ToolBoxGlobal.this.CompilationUnit
-1 times = 0ms
-
-
-
-threaded.type => ?{def asScala: ?}
-
-threaded.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-ScalaSettings.this.BooleanSetting => ?{def andThen: ?}
-
-ScalaSettings.this.BooleanSetting => ?{def andThen: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[SpecializeTypes.this.global.ClassSymbol],SpecializeTypes.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[SpecializeTypes.this.global.ClassSymbol],SpecializeTypes.this.global.Type,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Reifiers.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Reifiers.this.global.Symbol
-4 times = 0ms
-
-
-
-(=> TypeDiagnostics.this.global.Scope) => TypeDiagnostics.this.global.Type
-
-(=> TypeDiagnostics.this.global.Scope) => TypeDiagnostics.this.global.Type
-2 times = 0ms
-
-
-
-String('This for %s, reified as freeVar') => ?{def format: ?}
-
-String('This for %s, reified as freeVar') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Extractors.this.global.Symbol
-
-((Nothing, Nothing)) => Extractors.this.global.Symbol
-1 times = 0ms
-
-
-
-NullnessFrame.this.type => ?{def stackTop: ?}
-
-NullnessFrame.this.type => ?{def stackTop: ?}
-6 times = 2ms
-
-
-
-(=> (Nothing, Nothing)) => Set[PropositionalLogic.this.Prop]
-
-(=> (Nothing, Nothing)) => Set[PropositionalLogic.this.Prop]
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.ImportSelector],Namers.this.global.Name,List[Namers.this.global.Name]]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.ImportSelector],Namers.this.global.Name,List[Namers.this.global.Name]]
-2 times = 1ms
-
-
-
-((List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-
-((List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[CNF.this.Sym,Int],(Int, CNF.this.Sym),Map[Int,CNF.this.Sym]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[CNF.this.Sym,Int],(Int, CNF.this.Sym),Map[Int,CNF.this.Sym]]
-1 times = 0ms
-
-
-
-Flatten.this.global.Tree => Flatten.this.global.Type
-
-Flatten.this.global.Tree => Flatten.this.global.Type
-1 times = 0ms
-
-
-
-String('$amp$plus') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-
-String('$amp$plus') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-1 times = 0ms
-
-
-
-invocationFrame.type => ?{def stackTop: ?}
-
-invocationFrame.type => ?{def stackTop: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => MatchOptimization.this.global.Symbol
-
-(=> (Nothing, Nothing)) => MatchOptimization.this.global.Symbol
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.INT.type),That]
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.INT.type),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Int, Int)],DocComments.this.UseCase,That]
-
-scala.collection.generic.CanBuildFrom[List[(Int, Int)],DocComments.this.UseCase,That]
-1 times = 2ms
-
-
-
-Global.this.analyzer.typerFactory.type => ?{def ->: ?}
-
-Global.this.analyzer.typerFactory.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Array[scala.reflect.io.Path] => ?{def map: ?}
-
-Array[scala.reflect.io.Path] => ?{def map: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(MatchAnalyzer.this.Var, (Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const]))],String,That]
-
-scala.collection.generic.CanBuildFrom[Seq[(MatchAnalyzer.this.Var, (Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const]))],String,That]
-1 times = 0ms
-
-
-
-name.type => ?{def getterName: ?}
-
-name.type => ?{def getterName: ?}
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[ClassLoader]
-
-scala.reflect.ClassTag[ClassLoader]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.reflect.io.AbstractFile]
-
-scala.reflect.ClassTag[scala.reflect.io.AbstractFile]
-3 times = 3ms
-
-
-
-(=> Array[Double]) => Array[Class[_]]
-
-(=> Array[Double]) => Array[Class[_]]
-3 times = 0ms
-
-
-
-((Nothing, Nothing)) => => String
-
-((Nothing, Nothing)) => => String
-12 times = 2ms
-
-
-
-(=> Macros.this.global.Scope) => Macros.this.global.Type
-
-(=> Macros.this.global.Scope) => Macros.this.global.Type
-1 times = 0ms
-
-
-
-String('Compiling source file%s: %s to %s') => ?{def format: ?}
-
-String('Compiling source file%s: %s to %s') => ?{def format: ?}
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],String,That]
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],String,That]
-1 times = 0ms
-
-
-
-_1.s.type => Boolean
-
-_1.s.type => Boolean
-1 times = 0ms
-
-
-
-Option[String] => scala.collection.GenTraversableOnce[?]
-
-Option[String] => scala.collection.GenTraversableOnce[?]
-2 times = 0ms
-
-
-
-String('internal error: %s (%s, %s) is not supported') => ?{def format: ?}
-
-String('internal error: %s (%s, %s) is not supported') => ?{def format: ?}
-3 times = 1ms
-
-
-
-List[TreeBrowsers.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-
-List[TreeBrowsers.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Map[Int,scala.tools.asm.Type] => ?{def +=: ?}
-
-scala.collection.immutable.Map[Int,scala.tools.asm.Type] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-String('PrefixedAttribute') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('PrefixedAttribute') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[T],(T, T),Seq[(T, T)]]
-
-scala.collection.generic.CanBuildFrom[Seq[T],(T, T),Seq[(T, T)]]
-1 times = 0ms
-
-
-
-frame.type => ?{def getValue: ?}
-
-frame.type => ?{def getValue: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.SuperArgsAttachment]
-
-scala.reflect.ClassTag[StdAttachments.this.SuperArgsAttachment]
-1 times = 0ms
-
-
-
-Array[Double] => Array[CNF.this.Clause]
-
-Array[Double] => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-(=> List[TreeCheckers.this.global.DefTree]) => ?{def ::=: ?}
-
-(=> List[TreeCheckers.this.global.DefTree]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-jvmargs.type => ?{def toList: ?}
-
-jvmargs.type => ?{def toList: ?}
-1 times = 1ms
-
-
-
-Unit => Typers.this.ContextReporter
-
-Unit => Typers.this.ContextReporter
-1 times = 0ms
-
-
-
-Array[Long] => Long
-
-Array[Long] => Long
-2 times = 0ms
-
-
-
-Array[StackTraceElement] => ?{def mkString: ?}
-
-Array[StackTraceElement] => ?{def mkString: ?}
-1 times = 0ms
-
-
-
-MatchTranslation.this.global.Tree => ?{def DOT: ?}
-
-MatchTranslation.this.global.Tree => ?{def DOT: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.INTkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.INTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-desc.type => ?{def last: ?}
-
-desc.type => ?{def last: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.reflect.TypeVariable[Class[_$1]]],String,That]
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.reflect.TypeVariable[Class[_$1]]],String,That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[String]
-
-scala.reflect.ClassTag[String]
-6 times = 9ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.reflect.TypeVariable[Class[_$1]]],String,That]->scala.reflect.ClassTag[String]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.ClassBType),That]
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.ClassBType),That]
-1 times = 0ms
-
-
-
-includedFiles.type => ?{def nonEmpty: ?}
-
-includedFiles.type => ?{def nonEmpty: ?}
-1 times = 0ms
-
-
-
-otpe.type => ?{def +: ?}
-
-otpe.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Reshape.this.global.CompoundTypeTreeOriginalAttachment]
-
-scala.reflect.ClassTag[Reshape.this.global.CompoundTypeTreeOriginalAttachment]
-1 times = 2ms
-
-
-
-Array[BCodeSkelBuilder.this.bTypes.BType] => Array[String]
-
-Array[BCodeSkelBuilder.this.bTypes.BType] => Array[String]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Typers.this.global.Tree
-
-((Nothing, Nothing, Nothing)) => Typers.this.global.Tree
-40 times = 6ms
-
-
-
-scala.collection.immutable.Set[Reifier.this.global.Symbol] => ?{def ++=: ?}
-
-scala.collection.immutable.Set[Reifier.this.global.Symbol] => ?{def ++=: ?}
-3 times = 0ms
-
-
-
-(=> Validators.this.global.Scope) => Validators.this.global.Type
-
-(=> Validators.this.global.Scope) => Validators.this.global.Type
-1 times = 0ms
-
-
-
-i.type => ?{def toInt: ?}
-
-i.type => ?{def toInt: ?}
-1 times = 0ms
-
-
-
-Int(2048) => scala.tools.nsc.typechecker.ContextMode
-
-Int(2048) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-Unit => Reifiers.this.global.Type
-
-Unit => Reifiers.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.analyzer.global.Type],(RefChecks.this.global.analyzer.global.Type, RefChecks.this.global.Type),That]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.analyzer.global.Type],(RefChecks.this.global.analyzer.global.Type, RefChecks.this.global.Type),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.ValDef,List[SpecializeTypes.this.global.ValDef]]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.ValDef,List[SpecializeTypes.this.global.ValDef]]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => DocComments.this.Symbol
-
-(=> (Nothing, Nothing)) => DocComments.this.Symbol
-1 times = 0ms
-
-
-
-(=> SpecializeTypes.this.global.Scope) => SpecializeTypes.this.global.Type
-
-(=> SpecializeTypes.this.global.Scope) => SpecializeTypes.this.global.Type
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => java.nio.ByteBuffer
-
-(=> (Nothing, Nothing, Nothing)) => java.nio.ByteBuffer
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.Tree],Reifiers.this.ApplyHole,That]
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.Tree],Reifiers.this.ApplyHole,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Nothing],DependencyGraph.this.Edge,That]
-
-scala.collection.generic.CanBuildFrom[List[Nothing],DependencyGraph.this.Edge,That]
-1 times = 1ms
-
-
-
-(=> List[TreeCheckers.this.global.MemberDef]) => ?{def ::=: ?}
-
-(=> List[TreeCheckers.this.global.MemberDef]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scalaFiles.type => ?{def ++: ?}
-
-scalaFiles.type => ?{def ++: ?}
-1 times = 1ms
-
-
-
-Array[String] => Array[Int]
-
-Array[String] => Array[Int]
-1 times = 0ms
-
-
-
-(=> Flatten.this.global.Tree) => Flatten.this.global.Type
-
-(=> Flatten.this.global.Tree) => Flatten.this.global.Type
-1 times = 0ms
-
-
-
-StdOpts.this.SelfUpdate.name.type => ?{def --|: ?}
-
-StdOpts.this.SelfUpdate.name.type => ?{def --|: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[scala.reflect.io.Path]],(List[scala.reflect.io.Path], scala.util.Try[scala.tools.nsc.plugins.PluginDescription]),That]
-
-scala.collection.generic.CanBuildFrom[List[List[scala.reflect.io.Path]],(List[scala.reflect.io.Path], scala.util.Try[scala.tools.nsc.plugins.PluginDescription]),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Symbol],BTypesFromSymbols.this.ClassBType,That]
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Symbol],BTypesFromSymbols.this.ClassBType,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Symbol],List[BCodeHelpers.this.global.AnnotationInfo],List[List[BCodeHelpers.this.global.AnnotationInfo]]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Symbol],List[BCodeHelpers.this.global.AnnotationInfo],List[List[BCodeHelpers.this.global.AnnotationInfo]]]
-1 times = 0ms
-
-
-
-(=> Erasure.this.global.Scope) => Erasure.this.global.Type
-
-(=> Erasure.this.global.Scope) => Erasure.this.global.Type
-4 times = 0ms
-
-
-
-Unit => Namers.this.global.Type
-
-Unit => Namers.this.global.Type
-3 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.ValDef],TreeGen.this.global.Symbol,List[TreeGen.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.ValDef],TreeGen.this.global.Symbol,List[TreeGen.this.global.Symbol]]
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Map[String,String],(String, String),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Map[String,String],(String, String),That]
-1 times = 2ms
-
-
-
-String('No %s available for %s') => ?{def format: ?}
-
-String('No %s available for %s') => ?{def format: ?}
-1 times = 4ms
-
-
-
-labelSym.type => ?{def ->: ?}
-
-labelSym.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Int) => ?{def &=: ?}
-
-(=> Int) => ?{def &=: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.CaseDef],MatchTranslation.this.global.CaseDef,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.CaseDef],MatchTranslation.this.global.CaseDef,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[SymbolicXMLBuilder.this.global.Tree],SymbolicXMLBuilder.this.global.Apply,That]
-
-scala.collection.generic.CanBuildFrom[Seq[SymbolicXMLBuilder.this.global.Tree],SymbolicXMLBuilder.this.global.Apply,That]
-1 times = 0ms
-
-
-
-String('PCData') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-
-String('PCData') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[s.IntSetting],String,That]
-
-scala.collection.generic.CanBuildFrom[List[s.IntSetting],String,That]
-1 times = 1ms
-
-
-
-Global.this.uncurry.type => ?{def ->: ?}
-
-Global.this.uncurry.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Long => Long
-
-Long => Long
-1 times = 0ms
-
-
-
-String('EntityRef') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('EntityRef') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-(=> SymbolTables.this.SymbolTable) => ?{def +=: ?}
-
-(=> SymbolTables.this.SymbolTable) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-(=> List[Infer.this.global.Symbol]) => Infer.this.global.Type
-
-(=> List[Infer.this.global.Symbol]) => Infer.this.global.Type
-3 times = 0ms
-
-
-
-String('bin') => scala.reflect.io.Path
-
-String('bin') => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-Int => ?{def -=: ?}
-
-Int => ?{def -=: ?}
-29 times = 9ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Tree],MatchApproximation.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Tree],MatchApproximation.this.global.Tree,That]
-1 times = 0ms
-
-
-
-List[LambdaLift.this.global.Symbol] => LambdaLift.this.global.Type
-
-List[LambdaLift.this.global.Symbol] => LambdaLift.this.global.Type
-1 times = 0ms
-
-
-
-String('Null') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-
-String('Null') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-1 times = 0ms
-
-
-
-clauses.type => ?{def find: ?}
-
-clauses.type => ?{def find: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximator.this.Test],MatchApproximator.this.Prop,Iterable[MatchApproximator.this.Prop]]
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximator.this.Test],MatchApproximator.this.Prop,Iterable[MatchApproximator.this.Prop]]
-1 times = 0ms
-
-
-
-Option[Comparable[_ >: java.io.File with String <: java.io.Serializable] with java.io.Serializable] => scala.collection.GenTraversableOnce[B]
-
-Option[Comparable[_ >: java.io.File with String <: java.io.Serializable] with java.io.Serializable] => scala.collection.GenTraversableOnce[B]
-1 times = 4ms
-
-
-
-callee.type => ?{def get: ?}
-
-callee.type => ?{def get: ?}
-1 times = 0ms
-
-
-
-file.type => ?{def isJarOrZip: ?}
-
-file.type => ?{def isJarOrZip: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(EtaExpansion.this.global.ValDef, Boolean)],EtaExpansion.this.global.gen.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[(EtaExpansion.this.global.ValDef, Boolean)],EtaExpansion.this.global.gen.global.Tree,That]
-1 times = 0ms
-
-
-
-(=> Array[Float]) => Array[CNF.this.Clause]
-
-(=> Array[Float]) => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-String => ?{def forall: ?}
-
-String => ?{def forall: ?}
-1 times = 0ms
-
-
-
-String('(\\S+)') => ?{def r: ?}
-
-String('(\S+)') => ?{def r: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Tree],BCodeHelpers.this.global.Symbol,List[BCodeHelpers.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Tree],BCodeHelpers.this.global.Symbol,List[BCodeHelpers.this.global.Symbol]]
-1 times = 0ms
-
-
-
-settings.BooleanSetting => Boolean
-
-settings.BooleanSetting => Boolean
-1 times = 0ms
-
-
-
-annotss.type => ?{def foreach: ?}
-
-annotss.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(TreeCheckers.this.global.MemberDef, Int)],(Any, String),That]
-
-scala.collection.generic.CanBuildFrom[List[(TreeCheckers.this.global.MemberDef, Int)],(Any, String),That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Namers.this.global.FlagSet
-
-(=> (Nothing, Nothing)) => Namers.this.global.FlagSet
-1 times = 0ms
-
-
-
-Typers.this.global.TermName => ?{def stripSuffix: ?}
-
-Typers.this.global.TermName => ?{def stripSuffix: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Float
-
-(=> (Nothing, Nothing, Nothing)) => Float
-2 times = 0ms
-
-
-
-Unit => java.nio.CharBuffer
-
-Unit => java.nio.CharBuffer
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[scala.reflect.io.AbstractFile],String,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[scala.reflect.io.AbstractFile],String,That]
-1 times = 0ms
-
-
-
-SyntheticMethods.this.global.definitions.Any_hashCode.type => ?{def ->: ?}
-
-SyntheticMethods.this.global.definitions.Any_hashCode.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Var],String,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Var],String,That]
-1 times = 0ms
-
-
-
-types.type => ?{def indices: ?}
-
-types.type => ?{def indices: ?}
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => Extractors.this.global.Symbol
-
-(=> (Nothing, Nothing)) => Extractors.this.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.bTypes.ClassBType],tools.nsc.backend.jvm.BTypes.InternalName,That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.bTypes.ClassBType],tools.nsc.backend.jvm.BTypes.InternalName,That]
-1 times = 2ms
-
-
-
-(=> Unit) => scala.sys.process.ProcessIO
-
-(=> Unit) => scala.sys.process.ProcessIO
-2 times = 0ms
-
-
-
-((List[Nothing], List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-
-((List[Nothing], List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[String],java.io.File,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[String],java.io.File,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Symbol],(Checkable.this.global.Symbol, Checkable.this.global.TypeVar),That]
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Symbol],(Checkable.this.global.Symbol, Checkable.this.global.TypeVar),That]
-1 times = 0ms
-
-
-
-acc.NameType => ?{def localName: ?}
-
-acc.NameType => ?{def localName: ?}
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.LabelDef],(BCodeSkelBuilder.this.global.Symbol, BCodeSkelBuilder.this.global.LabelDef),That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.LabelDef],(BCodeSkelBuilder.this.global.Symbol, BCodeSkelBuilder.this.global.LabelDef),That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => StringBuilder
-
-((Nothing, Nothing)) => StringBuilder
-1 times = 0ms
-
-
-
-BCodeSkelBuilder.this.global.Symbol => PlainSkelBuilder.this.Local
-
-BCodeSkelBuilder.this.global.Symbol => PlainSkelBuilder.this.Local
-1 times = 0ms
-
-
-
-(=> Array[Double]) => Array[Int]
-
-(=> Array[Double]) => Array[Int]
-6 times = 0ms
-
-
-
-Array[Byte] => Array[Int]
-
-Array[Byte] => Array[Int]
-6 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.io.Writer
-
-((Nothing, Nothing)) => java.io.Writer
-6 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Typers.this.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => Typers.this.global.Tree
-40 times = 1ms
-
-
-
-((SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type)) => (A1, A2)
-
-((SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type)) => (A1, A2)
-1 times = 0ms
-
-
-
-handlerFrame.type => ?{def stackTop: ?}
-
-handlerFrame.type => ?{def stackTop: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => TailCalls.this.global.Tree
-
-((Nothing, Nothing)) => TailCalls.this.global.Tree
-4 times = 1ms
-
-
-
-Array[Unit] => Array[AnyRef]
-
-Array[Unit] => Array[AnyRef]
-3 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => TailCalls.this.global.Symbol
-
-(=> (Nothing, Nothing)) => TailCalls.this.global.Symbol
-2 times = 0ms
-
-
-
-args.type => ?{def mkString: ?}
-
-args.type => ?{def mkString: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Int, Int)],(String, (Int, Int)),scala.collection.GenTraversableOnce[(String, (Int, Int))]]
-
-scala.collection.generic.CanBuildFrom[List[(Int, Int)],(String, (Int, Int)),scala.collection.GenTraversableOnce[(String, (Int, Int))]]
-1 times = 0ms
-
-
-
-requests.type => ?{def foreach: ?}
-
-requests.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-
-((Nothing, Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-3 times = 1ms
-
-
-
-Scanners.this.global.nme.TRUEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.TRUEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => Constructors.this.global.Modifiers
-
-(=> Unit) => Constructors.this.global.Modifiers
-2 times = 0ms
-
-
-
-String('\nClasses which cannot access %s %s %s.') => ?{def format: ?}
-
-String('
-Classes which cannot access %s %s %s.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-getter.NameType => ?{def setterName: ?}
-
-getter.NameType => ?{def setterName: ?}
-1 times = 2ms
-
-
-
-Contexts.this.Context
-
-Contexts.this.Context
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.awt.PopupMenu
-
-(=> (Nothing, Nothing)) => java.awt.PopupMenu
-3 times = 0ms
-
-
-
-name0.type => ?{def dropLocal: ?}
-
-name0.type => ?{def dropLocal: ?}
-1 times = 0ms
-
-
-
-Flatten.this.global.AnnotationInfo => Flatten.this.global.Type
-
-Flatten.this.global.AnnotationInfo => Flatten.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.Type],BCodeSkelBuilder.this.bTypes.BType,List[BCodeSkelBuilder.this.bTypes.BType]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.Type],BCodeSkelBuilder.this.bTypes.BType,List[BCodeSkelBuilder.this.bTypes.BType]]
-1 times = 2ms
-
-
-
-List[Duplicators.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-
-List[Duplicators.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-scala.math.Ordering[(String, String)]
-
-scala.math.Ordering[(String, String)]
-1 times = 5ms
-
-
-
-scala.math.Ordering[String]
-
-scala.math.Ordering[String]
-14 times = 14ms
-
-
-
-scala.math.Ordering[(String, String)]->scala.math.Ordering[String]
-
-
-
-
-
-Scanners.this.global.nme.DEFkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.DEFkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[T]
-
-scala.reflect.ClassTag[T]
-3 times = 9ms
-
-
-
-String => ?{def lines: ?}
-
-String => ?{def lines: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.BitmapInfo],AccessorSynthesis.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.BitmapInfo],AccessorSynthesis.this.global.Tree,That]
-1 times = 0ms
-
-
-
-Array[String] => ?{def mkString: ?}
-
-Array[String] => ?{def mkString: ?}
-1 times = 1ms
-
-
-
-MatchTranslation.this.global.Tree => ?{def ANY_!=: ?}
-
-MatchTranslation.this.global.Tree => ?{def ANY_!=: ?}
-1 times = 0ms
-
-
-
-((List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-
-((List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-1 times = 0ms
-
-
-
-Namers.this.global.Tree => Namers.this.global.Type
-
-Namers.this.global.Tree => Namers.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[((Holes.this.global.Type, scala.reflect.quasiquotes.Rank), Int)],Holes.this.global.ValDef,List[Holes.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[((Holes.this.global.Type, scala.reflect.quasiquotes.Rank), Int)],Holes.this.global.ValDef,List[Holes.this.global.Tree]]
-1 times = 2ms
-
-
-
-((Nothing, Nothing)) => javax.swing.text.Document
-
-((Nothing, Nothing)) => javax.swing.text.Document
-2 times = 3ms
-
-
-
-((Nothing, Nothing)) => DocComments.this.Symbol
-
-((Nothing, Nothing)) => DocComments.this.Symbol
-1 times = 0ms
-
-
-
-List[Infer.this.global.Symbol] => scala.collection.TraversableLike[El1,Repr1]
-
-List[Infer.this.global.Symbol] => scala.collection.TraversableLike[El1,Repr1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.ValDef],ContextErrors.this.global.TermName,List[ContextErrors.this.global.analyzer.global.Name]]
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.ValDef],ContextErrors.this.global.TermName,List[ContextErrors.this.global.analyzer.global.Name]]
-1 times = 0ms
-
-
-
-(=> Scanners.this.Offset) => ?{def +=: ?}
-
-(=> Scanners.this.Offset) => ?{def +=: ?}
-4 times = 0ms
-
-
-
-(=> MatchCodeGen.this.global.Symbol) => List[MatchCodeGen.this.global.Symbol]
-
-(=> MatchCodeGen.this.global.Symbol) => List[MatchCodeGen.this.global.Symbol]
-1 times = 0ms
-
-
-
-Char('$') => CharSequence
-
-Char('$') => CharSequence
-1 times = 0ms
-
-
-
-frames.type => ?{def size: ?}
-
-frames.type => ?{def size: ?}
-4 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.ValDef],Constructors.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.ValDef],Constructors.this.global.Symbol,That]
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => JavaParsers.this.global.FlagSet
-
-(=> (Nothing, Nothing)) => JavaParsers.this.global.FlagSet
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => org.apache.tools.ant.Project
-
-(=> (Nothing, Nothing)) => org.apache.tools.ant.Project
-2 times = 0ms
-
-
-
-String('scala.runtime.') => ?{def ->: ?}
-
-String('scala.runtime.') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => (CompilationUnits.this.Tree => CompilationUnits.this.Tree)
-
-(=> Unit) => (CompilationUnits.this.Tree => CompilationUnits.this.Tree)
-1 times = 0ms
-
-
-
-f.type => ?{def isPackage: ?}
-
-f.type => ?{def isPackage: ?}
-1 times = 1ms
-
-
-
-Array[Solver.this.Clause] => Traversable[Traversable[?]]
-
-Array[Solver.this.Clause] => Traversable[Traversable[?]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],List[scala.reflect.io.Path],That]
-
-scala.collection.generic.CanBuildFrom[List[String],List[scala.reflect.io.Path],That]
-1 times = 0ms
-
-
-
-scala.reflect.internal.util.FakePos => ?{def +: ?}
-
-scala.reflect.internal.util.FakePos => ?{def +: ?}
-1 times = 0ms
-
-
-
-s.type => ?{def take: ?}
-
-s.type => ?{def take: ?}
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Global.this.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Global.this.Symbol],String,That]
-1 times = 1ms
-
-
-
-Double => JavaScanner.this.ScanPosition
-
-Double => JavaScanner.this.ScanPosition
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],TypeDiagnostics.this.global.TermName,Set[TypeDiagnostics.this.global.TermName]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],TypeDiagnostics.this.global.TermName,Set[TypeDiagnostics.this.global.TermName]]
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.GOTOkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.GOTOkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.IntTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.IntTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => TreeDSL.this.global.Tree
-
-(=> (Nothing, Nothing)) => TreeDSL.this.global.Tree
-1 times = 0ms
-
-
-
-String('isBlackbox') => ?{def ->: ?}
-
-String('isBlackbox') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.Tree,That]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Map[scala.tools.asm.tree.AbstractInsnNode,List[scala.tools.asm.tree.AbstractInsnNode]]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Map[scala.tools.asm.tree.AbstractInsnNode,List[scala.tools.asm.tree.AbstractInsnNode]]) => ?{def +=: ?}
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[Char]
-
-scala.reflect.ClassTag[Char]
-2 times = 1ms
-
-
-
-Some[Reshape.this.global.DefDef] => scala.collection.GenTraversableOnce[?]
-
-Some[Reshape.this.global.DefDef] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-callsite.callee.type => ?{def get: ?}
-
-callsite.callee.type => ?{def get: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Global.this.CompilationUnit],scala.tools.nsc.Global.Run.trackerFactory.SymbolTracker,That]
-
-scala.collection.generic.CanBuildFrom[List[Global.this.CompilationUnit],scala.tools.nsc.Global.Run.trackerFactory.SymbolTracker,That]
-1 times = 1ms
-
-
-
-(=> List[scala.tools.nsc.typechecker.TypersTracking.typingStack.Frame]) => ?{def ::=: ?}
-
-(=> List[scala.tools.nsc.typechecker.TypersTracking.typingStack.Frame]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(String, tools.nsc.backend.jvm.BTypes.MethodInlineInfo) <:< (T, U)
-
-(String, tools.nsc.backend.jvm.BTypes.MethodInlineInfo) <:< (T, U)
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Printers.this.Symbol
-
-(=> (Nothing, Nothing)) => Printers.this.Symbol
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Typers.this.global.Type, Typers.this.global.Symbol)],List[Typers.this.global.Type],That]
-
-scala.collection.generic.CanBuildFrom[List[(Typers.this.global.Type, Typers.this.global.Symbol)],List[Typers.this.global.Type],That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Any => Nothing)) => List[String]
-
-(=> (Nothing, Any => Nothing)) => List[String]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Symbol],(SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Symbol],(SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol),That]
-1 times = 0ms
-
-
-
-(=> Unit) => Boolean
-
-(=> Unit) => Boolean
-51 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[TreesAndTypesDomain.this.Const],TreesAndTypesDomain.this.Sym,Set[TreesAndTypesDomain.this.Sym]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[TreesAndTypesDomain.this.Const],TreesAndTypesDomain.this.Sym,Set[TreesAndTypesDomain.this.Sym]]
-1 times = 0ms
-
-
-
-(=> Char('/')) => String
-
-(=> Char('/')) => String
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[String]],String,That]
-
-scala.collection.generic.CanBuildFrom[List[List[String]],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.internal.util.SourceFile],scala.reflect.internal.util.SourceFile,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.internal.util.SourceFile],scala.reflect.internal.util.SourceFile,That]
-1 times = 0ms
-
-
-
-args.type => ?{def par: ?}
-
-args.type => ?{def par: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Parsers.this.global.Symbol
-
-((Nothing, Nothing)) => Parsers.this.global.Symbol
-1 times = 0ms
-
-
-
-(=> Double) => JavaScanner.this.ScanPosition
-
-(=> Double) => JavaScanner.this.ScanPosition
-1 times = 0ms
-
-
-
-String('failed to typecheck the materialized tag: %n%s') => ?{def format: ?}
-
-String('failed to typecheck the materialized tag: %n%s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],String,That]
-1 times = 1ms
-
-
-
-String('tvars') => ?{def ->: ?}
-
-String('tvars') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(Any => Nothing) => MethodSynthesis.this.global.Type
-
-(Any => Nothing) => MethodSynthesis.this.global.Type
-1 times = 0ms
-
-
-
-(=> Unit) => SymbolicXMLBuilder.this.global.Type
-
-(=> Unit) => SymbolicXMLBuilder.this.global.Type
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.TRAITkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.TRAITkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> LambdaLift.this.global.AnnotationInfo) => LambdaLift.this.global.Type
-
-(=> LambdaLift.this.global.AnnotationInfo) => LambdaLift.this.global.Type
-1 times = 0ms
-
-
-
-String => scala.reflect.io.AbstractFile
-
-String => scala.reflect.io.AbstractFile
-4 times = 4ms
-
-
-
-x$5.type => ?{def ->: ?}
-
-x$5.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => BCodeSyncAndTry.this.global.Tree
-
-(=> (Nothing, Nothing)) => BCodeSyncAndTry.this.global.Tree
-5 times = 0ms
-
-
-
-String('attribute %s may only be defined once') => ?{def format: ?}
-
-String('attribute %s may only be defined once') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => TreeBuilder.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => TreeBuilder.this.global.Symbol
-10 times = 0ms
-
-
-
-String('metalevel breach in %s: %s') => ?{def format: ?}
-
-String('metalevel breach in %s: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => TreeBuilder.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => TreeBuilder.this.global.Symbol
-10 times = 3ms
-
-
-
-((Nothing, Nothing, Nothing)) => SyntheticMethods.this.global.Symbol
-
-((Nothing, Nothing, Nothing)) => SyntheticMethods.this.global.Symbol
-6 times = 0ms
-
-
-
-((Nothing, Nothing)) => RefChecks.this.global.analyzer.global.Symbol
-
-((Nothing, Nothing)) => RefChecks.this.global.analyzer.global.Symbol
-1 times = 0ms
-
-
-
-scala.math.Ordering[Typers.this.global.Symbol#NameType]
-
-scala.math.Ordering[Typers.this.global.Symbol#NameType]
-1 times = 0ms
-
-
-
-Boolean => ?{def ||=: ?}
-
-Boolean => ?{def ||=: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Parsers.this.global.Tree
-
-((Nothing, Nothing)) => Parsers.this.global.Tree
-3 times = 0ms
-
-
-
-SyntheticMethods.this.global.Tree => ?{def DOT: ?}
-
-SyntheticMethods.this.global.Tree => ?{def DOT: ?}
-1 times = 0ms
-
-
-
-Constructors.this.global.Symbol => ?{def ->: ?}
-
-Constructors.this.global.Symbol => ?{def ->: ?}
-2 times = 1ms
-
-
-
-frame.type => ?{def stackTop: ?}
-
-frame.type => ?{def stackTop: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.gen.global.Symbol],BCodeSkelBuilder.this.global.gen.global.RefTree,That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.gen.global.Symbol],BCodeSkelBuilder.this.global.gen.global.RefTree,That]
-1 times = 0ms
-
-
-
-frame.type => ?{def peekStack: ?}
-
-frame.type => ?{def peekStack: ?}
-7 times = 2ms
-
-
-
-share.type => ?{def isEmpty: ?}
-
-share.type => ?{def isEmpty: ?}
-1 times = 0ms
-
-
-
-String => ?{def compare: ?}
-
-String => ?{def compare: ?}
-1 times = 0ms
-
-
-
-GenTrees.this.global.Symbol => ?{def metalevel: ?}
-
-GenTrees.this.global.Symbol => ?{def metalevel: ?}
-1 times = 1ms
-
-
-
-(=> Int) => ?{def -=: ?}
-
-(=> Int) => ?{def -=: ?}
-29 times = 2ms
-
-
-
-String('specialized overload for %s in %s') => ?{def format: ?}
-
-String('specialized overload for %s in %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => PatternTypers.this.global.Tree
-
-((Nothing, Nothing, Nothing)) => PatternTypers.this.global.Tree
-1 times = 0ms
-
-
-
-(=> List[Duplicators.this.global.Symbol]) => Duplicators.this.global.Type
-
-(=> List[Duplicators.this.global.Symbol]) => Duplicators.this.global.Type
-8 times = 0ms
-
-
-
-((Nothing, Nothing)) => JavaParsers.this.global.Symbol
-
-((Nothing, Nothing)) => JavaParsers.this.global.Symbol
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Trees.this.Type],Trees.this.TypeTree,List[Trees.this.gen.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Trees.this.Type],Trees.this.TypeTree,List[Trees.this.gen.global.Tree]]
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BCodeSkelBuilder.this.bTypes.ClassInfo] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BCodeSkelBuilder.this.bTypes.ClassInfo] => ?{def get: ?}
-2 times = 1ms
-
-
-
-String('internal\\.reificationSupport\\.FlagsRepr\\((\\d+)[lL]\\)') => ?{def r: ?}
-
-String('internal\.reificationSupport\.FlagsRepr\((\d+)[lL]\)') => ?{def r: ?}
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.OptimizerWarning,(scala.tools.asm.tree.MethodNode, tools.nsc.backend.jvm.BTypes.InternalName)] => ?{def withFilter: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.OptimizerWarning,(scala.tools.asm.tree.MethodNode, tools.nsc.backend.jvm.BTypes.InternalName)] => ?{def withFilter: ?}
-4 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Tree],ExtensionMethods.this.global.analyzer.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Tree],ExtensionMethods.this.global.analyzer.global.Tree,That]
-1 times = 0ms
-
-
-
-rtpe.type => ?{def +: ?}
-
-rtpe.type => ?{def +: ?}
-1 times = 1ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.LongClass.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.LongClass.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.CONSTkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.CONSTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit]]
-
-scala.reflect.ClassTag[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit]]
-6 times = 5ms
-
-
-
-Scanners.this.global.nme.THISkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.THISkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeInfo.this.global.Tree],TreeInfo.this.global.Tree,List[TreeInfo.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[TreeInfo.this.global.Tree],TreeInfo.this.global.Tree,List[TreeInfo.this.global.Tree]]
-1 times = 0ms
-
-
-
-String('illegal combination of modifiers: %s and %s for: %s') => ?{def format: ?}
-
-String('illegal combination of modifiers: %s and %s for: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Int => ?{def until: ?}
-
-Int => ?{def until: ?}
-4 times = 2ms
-
-
-
-Scanners.this.global.nme.TRYkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.TRYkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[TreeMakers.this.TreeMaker]],TreeMakers.this.Casegen => MatchTreeMaking.this.global.Tree,List[TreeMakers.this.Casegen => MatchTreeMaking.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[List[TreeMakers.this.TreeMaker]],TreeMakers.this.Casegen => MatchTreeMaking.this.global.Tree,List[TreeMakers.this.Casegen => MatchTreeMaking.this.global.Tree]]
-1 times = 0ms
-
-
-
-String => ?{def apply: ?}
-
-String => ?{def apply: ?}
-18 times = 3ms
-
-
-
-s.type => ?{def ->: ?}
-
-s.type => ?{def ->: ?}
-1 times = 5ms
-
-
-
-sys.Prop.Creator[String]
-
-sys.Prop.Creator[String]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Reshape.this.global.FlagSet
-
-((Nothing, Nothing, Nothing)) => Reshape.this.global.FlagSet
-2 times = 0ms
-
-
-
-Option[(Int, Inliner.this.postProcessor.callGraph.ArgInfo)] => scala.collection.GenTraversableOnce[?]
-
-Option[(Int, Inliner.this.postProcessor.callGraph.ArgInfo)] => scala.collection.GenTraversableOnce[?]
-2 times = 0ms
-
-
-
-NullnessFrame.this.type => ?{def setValue: ?}
-
-NullnessFrame.this.type => ?{def setValue: ?}
-1 times = 0ms
-
-
-
-(=> List[Macros.this.global.Symbol]) => Macros.this.global.Type
-
-(=> List[Macros.this.global.Symbol]) => Macros.this.global.Type
-1 times = 0ms
-
-
-
-PatternMatchingStats.this.Counter => Ordered[PatternMatchingStats.this.Counter]
-
-PatternMatchingStats.this.Counter => Ordered[PatternMatchingStats.this.Counter]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.VARkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.VARkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-fmt.type => ?{def format: ?}
-
-fmt.type => ?{def format: ?}
-3 times = 1ms
-
-
-
-String('call site') => ?{def ->: ?}
-
-String('call site') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Type],Checkable.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Type],Checkable.this.global.Type,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[scala.tools.asm.Type],CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.BType,That]
-
-scala.collection.generic.CanBuildFrom[Array[scala.tools.asm.Type],CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.BType,That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.BType]
-
-scala.reflect.ClassTag[CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.BType]
-3 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[scala.tools.asm.Type],CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.BType,That]->scala.reflect.ClassTag[CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.BType]
-
-
-
-
-
-String => ?{def init: ?}
-
-String => ?{def init: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],String,That]
-
-scala.collection.generic.CanBuildFrom[Array[String],String,That]
-1 times = 13ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],String,That]->scala.reflect.ClassTag[String]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Symbol],BCodeBodyBuilder.this.bTypes.BType,List[BCodeBodyBuilder.this.bTypes.BType]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Symbol],BCodeBodyBuilder.this.bTypes.BType,List[BCodeBodyBuilder.this.bTypes.BType]]
-2 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => JavaParsers.this.global.Tree
-
-(=> (Nothing, Nothing)) => JavaParsers.this.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Type],BTypesFromSymbols.this.ClassBType,That]
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Type],BTypesFromSymbols.this.ClassBType,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[ClosureOptimizer.this.postProcessor.callGraph.ArgInfo],(Int, ClosureOptimizer.this.postProcessor.callGraph.ArgInfo),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[ClosureOptimizer.this.postProcessor.callGraph.ArgInfo],(Int, ClosureOptimizer.this.postProcessor.callGraph.ArgInfo),That]
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[Enclosures.this.universe.Template]
-
-scala.reflect.ClassTag[Enclosures.this.universe.Template]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Trees.this.Tree],Trees.this.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Trees.this.Tree],Trees.this.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Any],Int,That]
-
-scala.collection.generic.CanBuildFrom[Seq[Any],Int,That]
-1 times = 0ms
-
-
-
-(=> Unit) => Internals.this.universe.analyzer.ContextReporter
-
-(=> Unit) => Internals.this.universe.analyzer.ContextReporter
-1 times = 0ms
-
-
-
-String('scala/Tuple[12]\\$mc[IJDCZ]{1,2}\\$sp') => ?{def r: ?}
-
-String('scala/Tuple[12]\$mc[IJDCZ]{1,2}\$sp') => ?{def r: ?}
-1 times = 0ms
-
-
-
-sym.NameType => ?{def +: ?}
-
-sym.NameType => ?{def +: ?}
-2 times = 0ms
-
-
-
-List[TailCalls.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-
-List[TailCalls.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-String('seeing private member %s, currentClass: %s, owner: %s, isAccessible: %b, isLocalName: %b') => ?{def format: ?}
-
-String('seeing private member %s, currentClass: %s, owner: %s, isAccessible: %b, isLocalName: %b') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> TypeNode.this.type) => ?{def typeName_=: ?}
-
-(=> TypeNode.this.type) => ?{def typeName_=: ?}
-1 times = 0ms
-
-
-
-(=> relativePath.type) => ?{def split(x$1: ? >: Char('/')): Seq[String]}
-
-(=> relativePath.type) => ?{def split(x$1: ? >: Char('/')): Seq[String]}
-1 times = 0ms
-
-
-
-scala.tools.asm.tree.MethodNode => ?{def foreachInsn: ?}
-
-scala.tools.asm.tree.MethodNode => ?{def foreachInsn: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type),That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type),That]
-1 times = 0ms
-
-
-
-java.util.List[java.lang.management.GarbageCollectorMXBean] => ?{def asScala: ?}
-
-java.util.List[java.lang.management.GarbageCollectorMXBean] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Symbol],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Symbol],String,List[String]]
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.NullTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.NullTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[scala.tools.asm.Type],scala.tools.asm.Type,That]
-
-scala.collection.generic.CanBuildFrom[Array[scala.tools.asm.Type],scala.tools.asm.Type,That]
-1 times = 4ms
-
-
-
-scala.reflect.ClassTag[scala.tools.asm.Type]
-
-scala.reflect.ClassTag[scala.tools.asm.Type]
-2 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[scala.tools.asm.Type],scala.tools.asm.Type,That]->scala.reflect.ClassTag[scala.tools.asm.Type]
-
-
-
-
-
-java.util.Iterator[scala.tools.asm.tree.TryCatchBlockNode] => ?{def asScala: ?}
-
-java.util.Iterator[scala.tools.asm.tree.TryCatchBlockNode] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.MacroExpansionAttachment]
-
-scala.reflect.ClassTag[StdAttachments.this.MacroExpansionAttachment]
-4 times = 3ms
-
-
-
-Int(101) => ?{def ->: ?}
-
-Int(101) => ?{def ->: ?}
-2 times = 2ms
-
-
-
-Scanners.this.global.nme.NEWkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.NEWkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> String) => Int
-
-(=> String) => Int
-270 times = 13ms
-
-
-
-txt.type => ?{def foreach: ?}
-
-txt.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.MacrosEnabled.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.MacrosEnabled.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(String, Any)],String,That]
-
-scala.collection.generic.CanBuildFrom[Seq[(String, Any)],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[_1],MatchTreeMaking.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[_1],MatchTreeMaking.this.global.Symbol,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Set[Macros.this.global.Symbol],Int,scala.collection.mutable.Set[Int]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Set[Macros.this.global.Symbol],Int,scala.collection.mutable.Set[Int]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Void]
-
-scala.reflect.ClassTag[Void]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Seq[WorkScheduler.this.Action],T,Seq[T]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Seq[WorkScheduler.this.Action],T,Seq[T]]
-1 times = 0ms
-
-
-
-String('Text') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-
-String('Text') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.Symbol,List[Infer.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.Symbol,List[Infer.this.global.Symbol]]
-2 times = 0ms
-
-
-
-parts.type => ?{def init: ?}
-
-parts.type => ?{def init: ?}
-1 times = 2ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => EtaExpansion.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => EtaExpansion.this.global.Symbol
-4 times = 0ms
-
-
-
-Int(1) => ?{def until: ?}
-
-Int(1) => ?{def until: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: ?V]
-
-((Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: ?V]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Array[Byte]
-
-(=> (Nothing, Nothing, Nothing)) => Array[Byte]
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Implicits.this.SearchResult, List[Implicits.this.global.TypeConstraint])],(Implicits.this.SearchResult, List[Implicits.this.global.TypeConstraint]),List[(Implicits.this.SearchResult, List[Implicits.this.global.TypeConstraint])]]
-
-scala.collection.generic.CanBuildFrom[List[(Implicits.this.SearchResult, List[Implicits.this.global.TypeConstraint])],(Implicits.this.SearchResult, List[Implicits.this.global.TypeConstraint]),List[(Implicits.this.SearchResult, List[Implicits.this.global.TypeConstraint])]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => TypingTransformers.this.global.Symbol
-
-((Nothing, Nothing)) => TypingTransformers.this.global.Symbol
-1 times = 2ms
-
-
-
-((Nothing, Nothing)) => List[RefChecks.this.global.Type]
-
-((Nothing, Nothing)) => List[RefChecks.this.global.Type]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.util.Collection[_ <: scala.tools.asm.tree.TryCatchBlockNode]
-
-((Nothing, Nothing)) => java.util.Collection[_ <: scala.tools.asm.tree.TryCatchBlockNode]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Reshape.this.global.Tree
-
-(=> (Nothing, Nothing)) => Reshape.this.global.Tree
-1 times = 0ms
-
-
-
-Unit => String
-
-Unit => String
-23 times = 1ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-4 times = 0ms
-
-
-
-code.type => ?{def indices: ?}
-
-code.type => ?{def indices: ?}
-2 times = 5ms
-
-
-
-String('library') => scala.reflect.io.Path
-
-String('library') => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[SymbolTables.this.ReifyAliasAttachment]
-
-scala.reflect.ClassTag[SymbolTables.this.ReifyAliasAttachment]
-2 times = 3ms
-
-
-
-String('List\\[List\\[.*?\\].*?\\]') => ?{def r: ?}
-
-String('List\[List\[.*?\].*?\]') => ?{def r: ?}
-1 times = 0ms
-
-
-
-String('Set %s to private[%s]') => ?{def format: ?}
-
-String('Set %s to private[%s]') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Unit => Contexts.this.ContextReporter
-
-Unit => Contexts.this.ContextReporter
-1 times = 0ms
-
-
-
-Option[NamesDefaults.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-
-Option[NamesDefaults.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.internal.util.SourceFile],Global.this.CompilationUnit,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.internal.util.SourceFile],Global.this.CompilationUnit,That]
-1 times = 0ms
-
-
-
-xs.type => ?{def forall: ?}
-
-xs.type => ?{def forall: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Validators.this.global.Symbol]],String,That]
-
-scala.collection.generic.CanBuildFrom[List[List[Validators.this.global.Symbol]],String,That]
-1 times = 2ms
-
-
-
-s.type => ?{def find: ?}
-
-s.type => ?{def find: ?}
-1 times = 0ms
-
-
-
-Array[StackTraceElement] => ?{def take: ?}
-
-Array[StackTraceElement] => ?{def take: ?}
-2 times = 1ms
-
-
-
-Long => ?{def +=: ?}
-
-Long => ?{def +=: ?}
-1 times = 0ms
-
-
-
-(=> MultiChoiceSetting.this.domain.ValueSet) => ?{def +=: ?}
-
-(=> MultiChoiceSetting.this.domain.ValueSet) => ?{def +=: ?}
-4 times = 0ms
-
-
-
-(=> List[() => Unit]) => ?{def ::=: ?}
-
-(=> List[() => Unit]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Char]
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Char]
-1 times = 0ms
-
-
-
-(=> scala.collection.TraversableOnce[B]) => Traversable[?B]
-
-(=> scala.collection.TraversableOnce[B]) => Traversable[?B]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[T],(T, NamesDefaults.this.global.Symbol),That]
-
-scala.collection.generic.CanBuildFrom[List[T],(T, NamesDefaults.this.global.Symbol),That]
-1 times = 0ms
-
-
-
-i.type => ?{def min: ?}
-
-i.type => ?{def min: ?}
-1 times = 0ms
-
-
-
-Global.this.erasure.type => ?{def ->: ?}
-
-Global.this.erasure.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Holes.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => Holes.this.global.Symbol
-6 times = 5ms
-
-
-
-Duplicators.this.global.Tree => Duplicators.this.global.Type
-
-Duplicators.this.global.Tree => Duplicators.this.global.Type
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Map[Reifiers.this.global.Name,Set[Reifiers.this.global.TermName]],Iterator[Reifiers.this.global.Apply],That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Map[Reifiers.this.global.Name,Set[Reifiers.this.global.TermName]],Iterator[Reifiers.this.global.Apply],That]
-1 times = 20ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Int],Int,Set[Int]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[Int],Int,Set[Int]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Unapplies.this.global.FlagSet
-
-((Nothing, Nothing)) => Unapplies.this.global.FlagSet
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.macros.contexts.Context],scala.reflect.internal.util.Position,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.macros.contexts.Context],scala.reflect.internal.util.Position,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[JavaParsers.this.global.TypeDef],JavaParsers.this.global.Ident,List[JavaParsers.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[JavaParsers.this.global.TypeDef],JavaParsers.this.global.Ident,List[JavaParsers.this.global.Tree]]
-1 times = 0ms
-
-
-
-List[Typers.this.global.treeInfo.global.Tree] => scala.collection.GenTraversableOnce[B]
-
-List[Typers.this.global.treeInfo.global.Tree] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],Validators.this.global.Type,List[Validators.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],Validators.this.global.Type,List[Validators.this.global.Type]]
-2 times = 4ms
-
-
-
-String('reifying symbol %s for tree %s') => ?{def format: ?}
-
-String('reifying symbol %s for tree %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => JavaParsers.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => JavaParsers.this.global.Symbol
-12 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],String,List[String]]
-1 times = 0ms
-
-
-
-scala.reflect.OptManifest[scala.tools.nsc.io.Directory]
-
-scala.reflect.OptManifest[scala.tools.nsc.io.Directory]
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.TypeDef],Validators.this.global.Symbol,List[Validators.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.TypeDef],Validators.this.global.Symbol,List[Validators.this.global.Symbol]]
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[UnCurry.this.VarargsSymbolAttachment]
-
-scala.reflect.ClassTag[UnCurry.this.VarargsSymbolAttachment]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Int, Int)],String,That]
-
-scala.collection.generic.CanBuildFrom[List[(Int, Int)],String,That]
-1 times = 0ms
-
-
-
-Array[Byte] => Array[Class[_]]
-
-Array[Byte] => Array[Class[_]]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],SymbolTables.this.global.TermName,That]
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],SymbolTables.this.global.TermName,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],java.net.URL,List[java.net.URL]]
-
-scala.collection.generic.CanBuildFrom[List[String],java.net.URL,List[java.net.URL]]
-1 times = 0ms
-
-
-
-(=> Int) => ?{def |=: ?}
-
-(=> Int) => ?{def |=: ?}
-8 times = 0ms
-
-
-
-(=> Unit) => String
-
-(=> Unit) => String
-37 times = 3ms
-
-
-
-(=> Long) => JavaScanner.this.ScanPosition
-
-(=> Long) => JavaScanner.this.ScanPosition
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[NamesDefaults.this.global.Tree]
-
-scala.reflect.ClassTag[NamesDefaults.this.global.Tree]
-2 times = 0ms
-
-
-
-String('resetting visibility of field: %s => %s') => ?{def format: ?}
-
-String('resetting visibility of field: %s => %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-String('extra specialized mixins for %s: %s') => ?{def format: ?}
-
-String('extra specialized mixins for %s: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.MethodType]
-
-scala.reflect.ClassTag[java.lang.invoke.MethodType]
-1 times = 1ms
-
-
-
-scala.tools.asm.tree.analysis.Analyzer[scala.tools.asm.tree.analysis.BasicValue] => scala.tools.asm.tree.analysis.Analyzer[V]
-
-scala.tools.asm.tree.analysis.Analyzer[scala.tools.asm.tree.analysis.BasicValue] => scala.tools.asm.tree.analysis.Analyzer[V]
-1 times = 0ms
-
-
-
-Unit => Double
-
-Unit => Double
-3 times = 0ms
-
-
-
-Int(4096) => scala.tools.nsc.typechecker.ContextMode
-
-Int(4096) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-String('NamespaceBinding') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('NamespaceBinding') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Double]
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Double]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Comparable[_ >: java.io.File with String <: java.io.Serializable] with java.io.Serializable],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Comparable[_ >: java.io.File with String <: java.io.Serializable] with java.io.Serializable],String,That]
-1 times = 2ms
-
-
-
-(=> Array[Float]) => Array[Class[_]]
-
-(=> Array[Float]) => Array[Class[_]]
-3 times = 0ms
-
-
-
-Array[Float] => Array[AnyRef]
-
-Array[Float] => Array[AnyRef]
-3 times = 0ms
-
-
-
-String('@param') => ?{def ->: ?}
-
-String('@param') => ?{def ->: ?}
-1 times = 1ms
-
-
-
-String('Expanded \'%s\' to \'%s\' in %s') => ?{def format: ?}
-
-String('Expanded '%s' to '%s' in %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-defines.type => ?{def toList: ?}
-
-defines.type => ?{def toList: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => TreeBuilder.this.global.Type
-
-(=> Unit) => TreeBuilder.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[MultiChoiceSetting.this.domain.ValueSet,MultiChoiceSetting.this.domain.Value,MultiChoiceSetting.this.domain.ValueSet]
-
-scala.collection.generic.CanBuildFrom[MultiChoiceSetting.this.domain.ValueSet,MultiChoiceSetting.this.domain.Value,MultiChoiceSetting.this.domain.ValueSet]
-1 times = 3ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.UNIT.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.UNIT.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Boolean
-
-((Nothing, Nothing, Nothing)) => Boolean
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[Array[scala.tools.asm.Handle]]
-
-scala.reflect.ClassTag[Array[scala.tools.asm.Handle]]
-1 times = 1ms
-
-
-
-String('context.outer.enclClass.owner') => ?{def ->: ?}
-
-String('context.outer.enclClass.owner') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-parts.type => ?{def last: ?}
-
-parts.type => ?{def last: ?}
-1 times = 2ms
-
-
-
-Int(1) => ?{def max: ?}
-
-Int(1) => ?{def max: ?}
-1 times = 0ms
-
-
-
-Array[scala.tools.asm.Type] => ?{def map: ?}
-
-Array[scala.tools.asm.Type] => ?{def map: ?}
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[SymbolTables.this.global.Symbol],SymbolTables.this.global.TermName,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[SymbolTables.this.global.Symbol],SymbolTables.this.global.TermName,That]
-1 times = 4ms
-
-
-
-(=> (Nothing, Nothing)) => UnCurry.this.global.analyzer.global.Symbol
-
-(=> (Nothing, Nothing)) => UnCurry.this.global.analyzer.global.Symbol
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => SymbolicXMLBuilder.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => SymbolicXMLBuilder.this.global.Symbol
-8 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Symbol#NameType],(Interface.this.global.Symbol#NameType, Interface.this.global.Tree),That]
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Symbol#NameType],(Interface.this.global.Symbol#NameType, Interface.this.global.Tree),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Tree],SpecializeTypes.this.global.analyzer.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Tree],SpecializeTypes.this.global.analyzer.global.Tree,That]
-1 times = 0ms
-
-
-
-((List[Nothing], List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type])
-
-((List[Nothing], List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type])
-1 times = 0ms
-
-
-
-Implicits.this.InfoMap
-
-Implicits.this.InfoMap
-16 times = 3ms
-
-
-
-(=> List[Fields.this.global.Symbol]) => Fields.this.global.Type
-
-(=> List[Fields.this.global.Symbol]) => Fields.this.global.Type
-1 times = 0ms
-
-
-
-String('\n |tp = %s\n |tp.typeSymbol = %s\n |tp.typeSymbol.owner = %s\n |tp.typeSymbolDirect = %s\n |tp.typeSymbolDirect.owner = %s\n ') => ?{def stripMargin: ?}
-
-String('
- |tp = %s
- |tp.typeSymbol = %s
- |tp.typeSymbol.owner = %s
- |tp.typeSymbolDirect = %s
- |tp.typeSymbolDirect.owner = %s
- ') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-String => scala.collection.GenTraversableOnce[?]
-
-String => scala.collection.GenTraversableOnce[?]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Erasure.this.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => Erasure.this.global.Tree
-2 times = 0ms
-
-
-
-(=> List[Erasure.this.global.Tree]) => ?{def ::=: ?}
-
-(=> List[Erasure.this.global.Tree]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-MultiStringSetting.this.T => ?{def ++=: ?}
-
-MultiStringSetting.this.T => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.Type,That]
-1 times = 0ms
-
-
-
-String('_\\d\\d?') => ?{def r: ?}
-
-String('_\d\d?') => ?{def r: ?}
-1 times = 0ms
-
-
-
-Seq[scala.tools.nsc.classpath.PackageEntry] => scala.collection.GenTraversableOnce[B]
-
-Seq[scala.tools.nsc.classpath.PackageEntry] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-SpecializeTypes.this.global.Tree => SpecializeTypes.this.global.Type
-
-SpecializeTypes.this.global.Tree => SpecializeTypes.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSyncAndTry.this.global.CaseDef],Product with Serializable with SyncAndTryBuilder.this.EHClause,List[SyncAndTryBuilder.this.EHClause]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeSyncAndTry.this.global.CaseDef],Product with Serializable with SyncAndTryBuilder.this.EHClause,List[SyncAndTryBuilder.this.EHClause]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[() => Typers.this.global.gen.global.Tree],Typers.this.global.gen.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[() => Typers.this.global.gen.global.Tree],Typers.this.global.gen.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Namers.this.ClassForCaseCompanionAttachment]
-
-scala.reflect.ClassTag[Namers.this.ClassForCaseCompanionAttachment]
-3 times = 3ms
-
-
-
-JavaScanners.this.global.javanme.ASSERTkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.ASSERTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Char('$') => String
-
-Char('$') => String
-1 times = 0ms
-
-
-
-String => ?{def takeRight: ?}
-
-String => ?{def takeRight: ?}
-1 times = 0ms
-
-
-
-TypeAdaptingTransformer.this.global.gen.global.RefTree => ?{def APPLY: ?}
-
-TypeAdaptingTransformer.this.global.gen.global.RefTree => ?{def APPLY: ?}
-1 times = 0ms
-
-
-
-Unit => (Typers.this.global.Tree => Typers.this.global.Tree)
-
-Unit => (Typers.this.global.Tree => Typers.this.global.Tree)
-1 times = 0ms
-
-
-
-index.type => ?{def ->: ?}
-
-index.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.WildcardType.type,List[Infer.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.WildcardType.type,List[Infer.this.global.Type]]
-1 times = 0ms
-
-
-
-Array[String] => Array[scala.tools.asm.Label]
-
-Array[String] => Array[scala.tools.asm.Label]
-1 times = 0ms
-
-
-
-String('case %s has case ancestor %s, but case-to-case inheritance is prohibited. To overcome this limitation, use extractors to pattern match on non-leaf nodes.') => ?{def format: ?}
-
-String('case %s has case ancestor %s, but case-to-case inheritance is prohibited. To overcome this limitation, use extractors to pattern match on non-leaf nodes.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Unit)) => Typers.this.global.Symbol
-
-((Nothing, Unit)) => Typers.this.global.Symbol
-1 times = 0ms
-
-
-
-Array[Char] => Array[Int]
-
-Array[Char] => Array[Int]
-6 times = 0ms
-
-
-
-(=> List[ClassfileParser.this.symbolTable.Type]) => ?{def ::=: ?}
-
-(=> List[ClassfileParser.this.symbolTable.Type]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-String('\'\'\\') => ?{def contains(x$1: ? >: Char): Boolean}
-
-String('''\') => ?{def contains(x$1: ? >: Char): Boolean}
-1 times = 1ms
-
-
-
-(=> (Nothing, Unit)) => Printers.this.Name
-
-(=> (Nothing, Unit)) => Printers.this.Name
-1 times = 0ms
-
-
-
-Global.this.specializeTypes.type => ?{def ->: ?}
-
-Global.this.specializeTypes.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Unit => Internals.this.universe.analyzer.ContextReporter
-
-Unit => Internals.this.universe.analyzer.ContextReporter
-1 times = 5ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,Option[BackendUtils.this.postProcessor.bTypes.InnerClassEntry]] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,Option[BackendUtils.this.postProcessor.bTypes.InnerClassEntry]] => ?{def get: ?}
-1 times = 0ms
-
-
-
-MatchTreeMaking.this.global.gen.global.RefTree => ?{def OBJ_EQ: ?}
-
-MatchTreeMaking.this.global.gen.global.RefTree => ?{def OBJ_EQ: ?}
-1 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.SHORT.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.SHORT.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[MatchAnalyzer.this.Prop],MatchAnalyzer.this.Prop,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[MatchAnalyzer.this.Prop],MatchAnalyzer.this.Prop,That]
-1 times = 1ms
-
-
-
-((Nothing, Nothing)) => Typers.this.global.statistics.Counter
-
-((Nothing, Nothing)) => Typers.this.global.statistics.Counter
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.gen.global.ValDef],BCodeSkelBuilder.this.global.gen.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.gen.global.ValDef],BCodeSkelBuilder.this.global.gen.global.Symbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[MatchTranslation.this.global.CaseDef]],MatchTranslation.this.global.CaseDef,That]
-
-scala.collection.generic.CanBuildFrom[List[List[MatchTranslation.this.global.CaseDef]],MatchTranslation.this.global.CaseDef,That]
-1 times = 0ms
-
-
-
-CleanUp.this.CODE.SelectStart => CleanUp.this.global.Tree
-
-CleanUp.this.CODE.SelectStart => CleanUp.this.global.Tree
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Type,List[SpecializeTypes.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Type,List[SpecializeTypes.this.global.Type]]
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.macros.contexts.Context{val universe: Macros.this.global.type}],scala.reflect.internal.util.Position,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.macros.contexts.Context{val universe: Macros.this.global.type}],scala.reflect.internal.util.Position,That]
-1 times = 7ms
-
-
-
-(=> Map[Calculate.this.global.Symbol,Int]) => ?{def +=: ?}
-
-(=> Map[Calculate.this.global.Symbol,Int]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-String('%s is param accessor? %b') => ?{def format: ?}
-
-String('%s is param accessor? %b') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ToolBoxGlobal.this.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ToolBoxGlobal.this.Symbol
-2 times = 0ms
-
-
-
-Unit => RefChecks.this.global.Type
-
-Unit => RefChecks.this.global.Type
-1 times = 0ms
-
-
-
-String('), ') => ?{def :/:: ?}
-
-String('), ') => ?{def :/:: ?}
-3 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Typers.this.global.constfold.global.Tree
-
-(=> (Nothing, Nothing)) => Typers.this.global.constfold.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],java.io.File,Array[java.io.File]]
-
-scala.collection.generic.CanBuildFrom[Array[String],java.io.File,Array[java.io.File]]
-2 times = 3ms
-
-
-
-scala.reflect.ClassTag[java.io.File]
-
-scala.reflect.ClassTag[java.io.File]
-3 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],java.io.File,Array[java.io.File]]->scala.reflect.ClassTag[java.io.File]
-
-
-
-
-
-scala.tools.nsc.Global.<refinement>.type => ?{def ->: ?}
-
-scala.tools.nsc.Global.<refinement>.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[CompilerCommand.this.Setting],String,That]
-
-scala.collection.generic.CanBuildFrom[List[CompilerCommand.this.Setting],String,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => ExplicitOuter.this.global.Symbol
-
-(=> (Nothing, Nothing)) => ExplicitOuter.this.global.Symbol
-2 times = 0ms
-
-
-
-Int => JavaScanners.this.global.Position
-
-Int => JavaScanners.this.global.Position
-2 times = 0ms
-
-
-
-((Nothing, (Any, Any) => Nothing)) => Array[Object]
-
-((Nothing, (Any, Any) => Nothing)) => Array[Object]
-1 times = 0ms
-
-
-
-Array[String] => Seq[String]
-
-Array[String] => Seq[String]
-6 times = 2ms
-
-
-
-k.NameType => ?{def +: ?}
-
-k.NameType => ?{def +: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Parsers.this.global.CompilationUnit
-
-(=> (Nothing, Nothing)) => Parsers.this.global.CompilationUnit
-3 times = 0ms
-
-
-
-(=> (List[Nothing], List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-
-(=> (List[Nothing], List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Typers.this.global.statistics.Counter
-
-(=> (Nothing, Nothing)) => Typers.this.global.statistics.Counter
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.ARROWkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.ARROWkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Unit, Unit)) => NodePrinters.this.global.Name
-
-(=> (Nothing, Unit, Unit)) => NodePrinters.this.global.Name
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => CleanUp.this.global.Symbol
-
-((Nothing, Nothing)) => CleanUp.this.global.Symbol
-6 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Parsers.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Parsers.this.global.Symbol
-14 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashSet[scala.tools.nsc.SubComponent],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashSet[scala.tools.nsc.SubComponent],String,That]
-1 times = 1ms
-
-
-
-Array[Float] => Array[Int]
-
-Array[Float] => Array[Int]
-6 times = 0ms
-
-
-
-(=> Float) => JavaScanner.this.ScanPosition
-
-(=> Float) => JavaScanner.this.ScanPosition
-1 times = 0ms
-
-
-
-call.type => ?{def ->: ?}
-
-call.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-TypeDiagnostics.this.global.AnnotationInfo => TypeDiagnostics.this.global.Type
-
-TypeDiagnostics.this.global.AnnotationInfo => TypeDiagnostics.this.global.Type
-2 times = 0ms
-
-
-
-scala.collection.immutable.Map[BCodeSyncAndTry.this.global.Symbol,scala.tools.asm.Label] => ?{def -=: ?}
-
-scala.collection.immutable.Map[BCodeSyncAndTry.this.global.Symbol,scala.tools.asm.Label] => ?{def -=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Type],BTypesFromSymbols.this.global.Symbol,List[BTypesFromSymbols.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Type],BTypesFromSymbols.this.global.Symbol,List[BTypesFromSymbols.this.global.Symbol]]
-1 times = 0ms
-
-
-
-Parsers.this.Offset => ?{def max: ?}
-
-Parsers.this.Offset => ?{def max: ?}
-3 times = 1ms
-
-
-
-(Int, JavaScanners.this.global.Name) <:< (T, U)
-
-(Int, JavaScanners.this.global.Name) <:< (T, U)
-1 times = 0ms
-
-
-
-ContextErrors.this.global.Type => ?{def +: ?}
-
-ContextErrors.this.global.Type => ?{def +: ?}
-3 times = 0ms
-
-
-
-consumerFrame.type => ?{def stackTop: ?}
-
-consumerFrame.type => ?{def stackTop: ?}
-1 times = 0ms
-
-
-
-(=> String) => scala.reflect.io.Directory
-
-(=> String) => scala.reflect.io.Directory
-13 times = 0ms
-
-
-
-Array[scala.tools.asm.Type] => scala.collection.GenTraversableOnce[?]
-
-Array[scala.tools.asm.Type] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MethodSynthesis.this.global.Symbol],MethodSynthesis.this.global.Ident,List[MethodSynthesis.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[MethodSynthesis.this.global.Symbol],MethodSynthesis.this.global.Ident,List[MethodSynthesis.this.global.Tree]]
-1 times = 0ms
-
-
-
-String => ?{def reverse: ?}
-
-String => ?{def reverse: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.SWITCHkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.SWITCHkw.type => ?{def ->: ?}
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Tree],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Tree],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Tree],(ContextErrors.this.global.Tree, ContextErrors.this.global.Tree),That]
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Tree],(ContextErrors.this.global.Tree, ContextErrors.this.global.Tree),That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Float
-
-((Nothing, Nothing, Nothing)) => Float
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(MatchAnalyzer.this.Var, List[MatchAnalyzer.this.Sym])],List[scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]],That]
-
-scala.collection.generic.CanBuildFrom[List[(MatchAnalyzer.this.Var, List[MatchAnalyzer.this.Sym])],List[scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]],That]
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.TRANSIENTkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.TRANSIENTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.tools.nsc.profile.ProfileCounters => ?{def +=: ?}
-
-scala.tools.nsc.profile.ProfileCounters => ?{def +=: ?}
-3 times = 0ms
-
-
-
-Double => ?{def formatted: ?}
-
-Double => ?{def formatted: ?}
-1 times = 0ms
-
-
-
-Int(65536) => scala.tools.nsc.typechecker.ContextMode
-
-Int(65536) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.ValDef],BCodeSkelBuilder.this.global.Symbol,List[BCodeSkelBuilder.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.ValDef],BCodeSkelBuilder.this.global.Symbol,List[BCodeSkelBuilder.this.global.Symbol]]
-1 times = 0ms
-
-
-
-(Any => Nothing) => SpecializeTypes.this.global.Tree
-
-(Any => Nothing) => SpecializeTypes.this.global.Tree
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(scala.tools.asm.Type, Int)],scala.tools.asm.tree.VarInsnNode,List[scala.tools.asm.tree.AbstractInsnNode]]
-
-scala.collection.generic.CanBuildFrom[List[(scala.tools.asm.Type, Int)],scala.tools.asm.tree.VarInsnNode,List[scala.tools.asm.tree.AbstractInsnNode]]
-2 times = 1ms
-
-
-
-rest.type => ?{def nonEmpty: ?}
-
-rest.type => ?{def nonEmpty: ?}
-1 times = 0ms
-
-
-
-((Nothing, Unit, Any => Nothing)) => OfflineCompilerCommand.this.Setting => Boolean
-
-((Nothing, Unit, Any => Nothing)) => OfflineCompilerCommand.this.Setting => Boolean
-1 times = 0ms
-
-
-
-Array[Double] => Array[Int]
-
-Array[Double] => Array[Int]
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(scala.tools.nsc.io.AbstractFile, scala.tools.nsc.io.AbstractFile)],scala.reflect.io.AbstractFile,List[scala.tools.nsc.io.AbstractFile]]
-
-scala.collection.generic.CanBuildFrom[List[(scala.tools.nsc.io.AbstractFile, scala.tools.nsc.io.AbstractFile)],scala.reflect.io.AbstractFile,List[scala.tools.nsc.io.AbstractFile]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],Option[MatchAnalyzer.this.CounterExample],That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],Option[MatchAnalyzer.this.CounterExample],That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, String)],String,That]
-
-scala.collection.generic.CanBuildFrom[List[(String, String)],String,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, String)],(String, String),That]
-
-scala.collection.generic.CanBuildFrom[List[(String, String)],(String, String),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Infer.this.global.Type, Infer.this.global.Symbol, Infer.this.global.KindErrors)],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[(Infer.this.global.Type, Infer.this.global.Symbol, Infer.this.global.KindErrors)],String,List[String]]
-1 times = 0ms
-
-
-
-Unit => MethodSynthesis.this.global.Type
-
-Unit => MethodSynthesis.this.global.Type
-3 times = 0ms
-
-
-
-scala.reflect.api.Universe#TypeTag[java.util.Formattable]
-
-scala.reflect.api.Universe#TypeTag[java.util.Formattable]
-1 times = 0ms
-
-
-
-String('pre') => ?{def ->: ?}
-
-String('pre') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.MacroExpanderAttachment]
-
-scala.reflect.ClassTag[StdAttachments.this.MacroExpanderAttachment]
-3 times = 4ms
-
-
-
-(=> (Nothing, Nothing)) => SuperAccessors.this.global.Symbol
-
-(=> (Nothing, Nothing)) => SuperAccessors.this.global.Symbol
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => SpecializeTypes.this.global.Tree
-
-(=> (Nothing, Nothing)) => SpecializeTypes.this.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[(String, String)],String,Set[String]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[(String, String)],String,Set[String]]
-1 times = 0ms
-
-
-
-String('[') => ?{def *: ?}
-
-String('[') => ?{def *: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(scala.tools.asm.Type, Int)],scala.tools.asm.tree.AbstractInsnNode,That]
-
-scala.collection.generic.CanBuildFrom[List[(scala.tools.asm.Type, Int)],scala.tools.asm.tree.AbstractInsnNode,That]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[Mixin.this.global.Symbol]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[Mixin.this.global.Symbol]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[ContextErrors.this.global.Symbol]],String,That]
-
-scala.collection.generic.CanBuildFrom[List[List[ContextErrors.this.global.Symbol]],String,That]
-1 times = 0ms
-
-
-
-cbuf.type => ?{def slice: ?}
-
-cbuf.type => ?{def slice: ?}
-1 times = 6ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Symbol],(BCodeHelpers.this.global.Symbol, BCodeHelpers.this.global.Symbol, BCodeHelpers.this.global.Symbol),That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Symbol],(BCodeHelpers.this.global.Symbol, BCodeHelpers.this.global.Symbol, BCodeHelpers.this.global.Symbol),That]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Map[SuperAccessors.this.global.Symbol,SuperAccessors.this.global.analyzer.Typer]) => ?{def -=: ?}
-
-(=> scala.collection.immutable.Map[SuperAccessors.this.global.Symbol,SuperAccessors.this.global.analyzer.Typer]) => ?{def -=: ?}
-1 times = 0ms
-
-
-
-Evals.this.evalMirror.type => ?{def mkToolBox: ?}
-
-Evals.this.evalMirror.type => ?{def mkToolBox: ?}
-1 times = 6ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Parsers.this.Offset
-
-(=> (Nothing, Nothing, Nothing)) => Parsers.this.Offset
-10 times = 0ms
-
-
-
-String('scala.collection.immutable.') => ?{def ->: ?}
-
-String('scala.collection.immutable.') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(scala.tools.asm.tree.LabelNode, scala.tools.asm.tree.LabelNode) <:< (scala.tools.asm.tree.LabelNode, scala.tools.asm.tree.LabelNode)
-
-(scala.tools.asm.tree.LabelNode, scala.tools.asm.tree.LabelNode) <:< (scala.tools.asm.tree.LabelNode, scala.tools.asm.tree.LabelNode)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.reflect.io.AbstractFile],scala.tools.nsc.classpath.PackageEntryImpl,Seq[scala.tools.nsc.classpath.PackageEntry]]
-
-scala.collection.generic.CanBuildFrom[Seq[scala.reflect.io.AbstractFile],scala.tools.nsc.classpath.PackageEntryImpl,Seq[scala.tools.nsc.classpath.PackageEntry]]
-1 times = 0ms
-
-
-
-Unit => scala.sys.process.ProcessIO
-
-Unit => scala.sys.process.ProcessIO
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MethodSynthesis.this.global.CaseDef],MethodSynthesis.this.global.CaseDef,That]
-
-scala.collection.generic.CanBuildFrom[List[MethodSynthesis.this.global.CaseDef],MethodSynthesis.this.global.CaseDef,That]
-1 times = 0ms
-
-
-
-Unit => Throwable
-
-Unit => Throwable
-18 times = 67ms
-
-
-
-java.util.jar.Attributes.Name.MAIN_CLASS.type => ?{def ->: ?}
-
-java.util.jar.Attributes.Name.MAIN_CLASS.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => TailCalls.this.global.Symbol
-
-((Nothing, Nothing)) => TailCalls.this.global.Symbol
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.TypeDef,List[Namers.this.global.TypeDef]]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.TypeDef,List[Namers.this.global.TypeDef]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.Symbol],Namers.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.Symbol],Namers.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-x$4.type => ?{def toImplicitCandidate: ?}
-
-x$4.type => ?{def toImplicitCandidate: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => java.io.FileFilter
-
-(=> Unit) => java.io.FileFilter
-1 times = 0ms
-
-
-
-String('New session: total memory = %s, max memory = %s, free memory = %s') => ?{def format: ?}
-
-String('New session: total memory = %s, max memory = %s, free memory = %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => MatchOptimization.this.global.Tree
-
-(=> (Nothing, Nothing)) => MatchOptimization.this.global.Tree
-1 times = 0ms
-
-
-
-Global.this.tailCalls.type => ?{def ->: ?}
-
-Global.this.tailCalls.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => SpecializeTypes.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing)) => SpecializeTypes.this.global.Symbol
-2 times = 0ms
-
-
-
-closureInit.lambdaMetaFactoryCall.indy.type => ?{def ->: ?}
-
-closureInit.lambdaMetaFactoryCall.indy.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],String,That]
-1 times = 0ms
-
-
-
-x.type => ?{def ->: ?}
-
-x.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => ExplicitOuter.this.global.Symbol
-
-((Nothing, Nothing)) => ExplicitOuter.this.global.Symbol
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],scala.tools.nsc.util.ClassPath,List[scala.tools.nsc.util.ClassPath]]
-
-scala.collection.generic.CanBuildFrom[List[String],scala.tools.nsc.util.ClassPath,List[scala.tools.nsc.util.ClassPath]]
-2 times = 1ms
-
-
-
-what.type => ?{def +: ?}
-
-what.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[Typers.this.global.Symbol]) => ?{def ++=: ?}
-
-(=> scala.collection.immutable.Set[Typers.this.global.Symbol]) => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-Boolean => ?{def |=: ?}
-
-Boolean => ?{def |=: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.SEALEDkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.SEALEDkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.AnnotationInfo],BTypesFromSymbols.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.AnnotationInfo],BTypesFromSymbols.this.global.Type,That]
-1 times = 0ms
-
-
-
-(BCodeSkelBuilder.this.global.Symbol, BCodeSkelBuilder.this.global.LabelDef) <:< (BCodeSkelBuilder.this.global.Symbol, BCodeSkelBuilder.this.global.LabelDef)
-
-(BCodeSkelBuilder.this.global.Symbol, BCodeSkelBuilder.this.global.LabelDef) <:< (BCodeSkelBuilder.this.global.Symbol, BCodeSkelBuilder.this.global.LabelDef)
-1 times = 0ms
-
-
-
-Boolean => ?{def &=: ?}
-
-Boolean => ?{def &=: ?}
-2 times = 0ms
-
-
-
-(=> Typers.this.global.Tree) => Typers.this.global.Type
-
-(=> Typers.this.global.Tree) => Typers.this.global.Type
-3 times = 0ms
-
-
-
-(=> Array[BCodeBodyBuilder.this.bTypes.BType]) => Array[scala.tools.asm.Label]
-
-(=> Array[BCodeBodyBuilder.this.bTypes.BType]) => Array[scala.tools.asm.Label]
-1 times = 0ms
-
-
-
-String('lt') => ?{def ->: ?}
-
-String('lt') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],(Typers.this.global.TermName, Typers.this.global.Tree),That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],(Typers.this.global.TermName, Typers.this.global.Tree),That]
-1 times = 0ms
-
-
-
-String('\n |_@@PROGRAM@@()\n |{\n | local cur opts base\n | COMPREPLY=()\n | cur=\'${COMP_WORDS[COMP_CWORD]}\'\n | opts=\'@@ALLOPTIONS@@\'\n |\n | COMPREPLY=($(compgen -W \'${opts}\' -- ${cur}))\n | _filedir\n | return 0\n |} && complete -F _@@PROGRAM@@ @@PROGRAM@@\n ') => ?{def stripMargin: ?}
-
-String('
- |_@@PROGRAM@@()
- |{
- | local cur opts base
- | COMPREPLY=()
- | cur='${COMP_WORDS[COMP_CWORD]}'
- | opts='@@ALLOPTIONS@@'
- |
- | COMPREPLY=($(compgen -W '${opts}' -- ${cur}))
- | _filedir
- | return 0
- |} && complete -F _@@PROGRAM@@ @@PROGRAM@@
- ') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-String('.') => ?{def *: ?}
-
-String('.') => ?{def *: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],(DocComments.this.Symbol, String, DocComments.this.Position),That]
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],(DocComments.this.Symbol, String, DocComments.this.Position),That]
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BackendUtils.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.ClassInfo] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BackendUtils.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.ClassInfo] => ?{def get: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Mixin.this.global.Type],Mixin.this.global.TypeTree,That]
-
-scala.collection.generic.CanBuildFrom[List[Mixin.this.global.Type],Mixin.this.global.TypeTree,That]
-1 times = 0ms
-
-
-
-List[(Contexts.this.global.Symbol, Contexts.this.global.Type)] => ?{def ::=: ?}
-
-List[(Contexts.this.global.Symbol, Contexts.this.global.Type)] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-String('\n |-- Notes on option parsing --\n |Boolean settings are always false unless set.\n |Where multiple values are accepted, they should be comma-separated.\n | example: -Xplugin:option1,option2\n |<phases> means one or a comma-separated list of:\n | (partial) phase names, phase ids, phase id ranges, or the string \'all\'.\n | example: -Xprint:all prints all phases.\n | example: -Xprint:expl,24-26 prints phases explicitouter, closelim, dce, jvm.\n | example: -Xprint:-4 prints only the phases up to typer.\n |\n ') => ?{def stripMargin: ?}
-
-String('
- |-- Notes on option parsing --
- |Boolean settings are always false unless set.
- |Where multiple values are accepted, they should be comma-separated.
- | example: -Xplugin:option1,option2
- |<phases> means one or a comma-separated list of:
- | (partial) phase names, phase ids, phase id ranges, or the string 'all'.
- | example: -Xprint:all prints all phases.
- | example: -Xprint:expl,24-26 prints phases explicitouter, closelim, dce, jvm.
- | example: -Xprint:-4 prints only the phases up to typer.
- |
- ') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],String,That]
-1 times = 2ms
-
-
-
-Some[SpecializeTypes.this.global.Symbol] => scala.collection.GenTraversableOnce[?]
-
-Some[SpecializeTypes.this.global.Symbol] => scala.collection.GenTraversableOnce[?]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.ValDef],Typers.this.global.ValDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.ValDef],Typers.this.global.ValDef,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Double
-
-(=> (Nothing, Nothing, Nothing)) => Double
-2 times = 0ms
-
-
-
-(=> Array[Float]) => Array[Int]
-
-(=> Array[Float]) => Array[Int]
-6 times = 0ms
-
-
-
-((Nothing, Nothing)) => MatchCodeGen.this.global.Symbol
-
-((Nothing, Nothing)) => MatchCodeGen.this.global.Symbol
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Tree,To2]
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Tree,To2]
-1 times = 0ms
-
-
-
-s.type => ?{def last: ?}
-
-s.type => ?{def last: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.COLONkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.COLONkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[SwitchEmission.this.TreeMaker]],(MatchOptimization.this.global.Symbol, List[SwitchEmission.this.TreeMaker]),List[(MatchOptimization.this.global.Symbol, List[SwitchEmission.this.TreeMaker])]]
-
-scala.collection.generic.CanBuildFrom[List[List[SwitchEmission.this.TreeMaker]],(MatchOptimization.this.global.Symbol, List[SwitchEmission.this.TreeMaker]),List[(MatchOptimization.this.global.Symbol, List[SwitchEmission.this.TreeMaker])]]
-1 times = 0ms
-
-
-
-String => Int
-
-String => Int
-270 times = 16ms
-
-
-
-Int => scala.reflect.internal.util.Position
-
-Int => scala.reflect.internal.util.Position
-4 times = 2ms
-
-
-
-JavaScanners.this.global.javanme.FINALLYkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.FINALLYkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Mixin.this.global.ValDef],Mixin.this.global.Ident,That]
-
-scala.collection.generic.CanBuildFrom[List[Mixin.this.global.ValDef],Mixin.this.global.Ident,That]
-1 times = 0ms
-
-
-
-Scanners.this.Offset => ?{def -=: ?}
-
-Scanners.this.Offset => ?{def -=: ?}
-1 times = 0ms
-
-
-
-String('%d scala and %d java source files') => ?{def format: ?}
-
-String('%d scala and %d java source files') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => JavaParsers.this.global.TypeBounds
-
-((Nothing, Nothing)) => JavaParsers.this.global.TypeBounds
-2 times = 0ms
-
-
-
-String('Text') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('Text') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-scala.collection.immutable.Stream[ExtensionMethods.this.global.TermName] => ?{def #::: ?}
-
-scala.collection.immutable.Stream[ExtensionMethods.this.global.TermName] => ?{def #::: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Macros.this.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => Macros.this.global.Tree
-2 times = 0ms
-
-
-
-(=> List[SpecializeTypes.this.global.Type]) => ?{def ::=: ?}
-
-(=> List[SpecializeTypes.this.global.Type]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-((Infer.this.global.Symbol, Infer.this.global.Type)) => (Infer.this.global.Symbol, Infer.this.global.Type)
-
-((Infer.this.global.Symbol, Infer.this.global.Type)) => (Infer.this.global.Symbol, Infer.this.global.Type)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.TypeConstraint,That]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.TypeConstraint,That]
-1 times = 0ms
-
-
-
-(=> Infer.this.global.Tree) => Infer.this.global.Type
-
-(=> Infer.this.global.Tree) => Infer.this.global.Type
-3 times = 0ms
-
-
-
-String('proxy %s from %s has logical enclosure %s') => ?{def format: ?}
-
-String('proxy %s from %s has logical enclosure %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[s.ChoiceSetting],String,That]
-
-scala.collection.generic.CanBuildFrom[List[s.ChoiceSetting],String,That]
-1 times = 0ms
-
-
-
-(=> LambdaLift.this.global.Scope) => LambdaLift.this.global.Type
-
-(=> LambdaLift.this.global.Scope) => LambdaLift.this.global.Type
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => List[Implicits.this.global.Type]
-
-((Nothing, Nothing)) => List[Implicits.this.global.Type]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => SpecializeTypes.this.global.Tree
-
-(=> Any => Nothing) => SpecializeTypes.this.global.Tree
-6 times = 0ms
-
-
-
-(=> (Nothing, Unit, Unit)) => Contexts.this.global.Name
-
-(=> (Nothing, Unit, Unit)) => Contexts.this.global.Name
-1 times = 0ms
-
-
-
-((Typers.this.global.Tree, Typers.this.global.Type)) => (A1, A2)
-
-((Typers.this.global.Tree, Typers.this.global.Type)) => (A1, A2)
-1 times = 0ms
-
-
-
-Global.this.refChecks.type => ?{def ->: ?}
-
-Global.this.refChecks.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-condSym.type => ?{def ===: ?}
-
-condSym.type => ?{def ===: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.transform.UnCurry.UnCurryTransformer.dependentParamTypeErasure.ParamTransform],UnCurry.this.global.ValDef,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.transform.UnCurry.UnCurryTransformer.dependentParamTypeErasure.ParamTransform],UnCurry.this.global.ValDef,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[Byte]
-
-((Nothing, Nothing)) => Array[Byte]
-3 times = 0ms
-
-
-
-Int(43) => ?{def ->: ?}
-
-Int(43) => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[TypeDiagnostics.this.global.Symbol] => TypeDiagnostics.this.global.Type
-
-List[TypeDiagnostics.this.global.Symbol] => TypeDiagnostics.this.global.Type
-2 times = 0ms
-
-
-
-clauses.type => ?{def exists: ?}
-
-clauses.type => ?{def exists: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Type],BCodeHelpers.this.bTypes.BType,List[BCodeHelpers.this.bTypes.BType]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.Type],BCodeHelpers.this.bTypes.BType,List[BCodeHelpers.this.bTypes.BType]]
-1 times = 0ms
-
-
-
-x$7.type => ?{def isDigit: ?}
-
-x$7.type => ?{def isDigit: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(scala.reflect.io.File, scala.util.Try[scala.tools.nsc.plugins.PluginDescription])],scala.util.Success[(scala.tools.nsc.plugins.PluginDescription, scala.reflect.internal.util.ScalaClassLoader)],That]
-
-scala.collection.generic.CanBuildFrom[List[(scala.reflect.io.File, scala.util.Try[scala.tools.nsc.plugins.PluginDescription])],scala.util.Success[(scala.tools.nsc.plugins.PluginDescription, scala.reflect.internal.util.ScalaClassLoader)],That]
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BTypesFromSymbols.this.ClassBType] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BTypesFromSymbols.this.ClassBType] => ?{def get: ?}
-1 times = 0ms
-
-
-
-symDefs.type => ?{def map: ?}
-
-symDefs.type => ?{def map: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Array[Float]
-
-(=> (Nothing, Nothing)) => Array[Float]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Delambdafy.this.LambdaMetaFactoryCapable]
-
-scala.reflect.ClassTag[Delambdafy.this.LambdaMetaFactoryCapable]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.TypeName,That]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.TypeName,That]
-1 times = 0ms
-
-
-
-owner.type => ?{def +: ?}
-
-owner.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.DefDef,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.DefDef,That]
-1 times = 0ms
-
-
-
-indy.type => ?{def ->: ?}
-
-indy.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('%s is no name') => ?{def format: ?}
-
-String('%s is no name') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[TypeAdaptingTransformer.this.global.specializeTypes.SpecializedSuperConstructorCallArgument.type]
-
-scala.reflect.ClassTag[TypeAdaptingTransformer.this.global.specializeTypes.SpecializedSuperConstructorCallArgument.type]
-1 times = 3ms
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.nsc.Settings
-
-(=> (Nothing, Nothing)) => scala.tools.nsc.Settings
-11 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreesAndTypesDomain.this.Sym],(TreesAndTypesDomain.this.Sym, List[TreesAndTypesDomain.this.Sym], List[TreesAndTypesDomain.this.Sym]),List[(TreesAndTypesDomain.this.Sym, List[TreesAndTypesDomain.this.Sym], List[TreesAndTypesDomain.this.Sym])]]
-
-scala.collection.generic.CanBuildFrom[List[TreesAndTypesDomain.this.Sym],(TreesAndTypesDomain.this.Sym, List[TreesAndTypesDomain.this.Sym], List[TreesAndTypesDomain.this.Sym]),List[(TreesAndTypesDomain.this.Sym, List[TreesAndTypesDomain.this.Sym], List[TreesAndTypesDomain.this.Sym])]]
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.CLASSkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.CLASSkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.CHAR.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.CHAR.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Double => Scanners.this.Offset
-
-Double => Scanners.this.Offset
-11 times = 1ms
-
-
-
-JavaScanners.this.global.javanme.SHORTkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.SHORTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('labeldef %s(%s) = ') => ?{def format: ?}
-
-String('labeldef %s(%s) = ') => ?{def format: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.IMPORTkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.IMPORTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String => scala.reflect.io.Directory
-
-String => scala.reflect.io.Directory
-13 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Fields.this.global.Symbol],List[Fields.this.global.Symbol],That]
-
-scala.collection.generic.CanBuildFrom[List[Fields.this.global.Symbol],List[Fields.this.global.Symbol],That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => SpecializeTypes.this.global.Symbol
-
-(=> (Nothing, Nothing)) => SpecializeTypes.this.global.Symbol
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.LinkedHashSet[ToolBoxImpl.this.frontEnd.Info],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.LinkedHashSet[ToolBoxImpl.this.frontEnd.Info],String,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.asm.Type],(scala.tools.asm.Type, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.asm.Type],(scala.tools.asm.Type, Int),That]
-1 times = 0ms
-
-
-
-java.util.List[scala.tools.asm.tree.InnerClassNode] => ?{def asScala: ?}
-
-java.util.List[scala.tools.asm.tree.InnerClassNode] => ?{def asScala: ?}
-2 times = 1ms
-
-
-
-(=> List[SpecializeTypes.this.Overload]) => ?{def ::=: ?}
-
-(=> List[SpecializeTypes.this.Overload]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> MultiChoiceSetting.this.domain.ValueSet) => ?{def -=: ?}
-
-(=> MultiChoiceSetting.this.domain.ValueSet) => ?{def -=: ?}
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => scala.tools.nsc.Settings
-
-((Nothing, Nothing, Nothing)) => scala.tools.nsc.Settings
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Ident],BCodeBodyBuilder.this.global.Symbol,List[BCodeBodyBuilder.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Ident],BCodeBodyBuilder.this.global.Symbol,List[BCodeBodyBuilder.this.global.Symbol]]
-1 times = 0ms
-
-
-
-String => ?{def asLines: ?}
-
-String => ?{def asLines: ?}
-4 times = 0ms
-
-
-
-(=> List[T]) => ?{def +:=: ?}
-
-(=> List[T]) => ?{def +:=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(RefChecks.this.global.Symbol, List[RefChecks.this.global.Symbol])],String,That]
-
-scala.collection.generic.CanBuildFrom[List[(RefChecks.this.global.Symbol, List[RefChecks.this.global.Symbol])],String,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => TypingTransformers.this.global.analyzer.global.Symbol
-
-(=> (Nothing, Nothing)) => TypingTransformers.this.global.analyzer.global.Symbol
-1 times = 0ms
-
-
-
-(=> Fields.this.global.Scope) => Fields.this.global.Type
-
-(=> Fields.this.global.Scope) => Fields.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.MethodNode],Inliner.this.postProcessor.inlinerHeuristics.InlineRequest,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.MethodNode],Inliner.this.postProcessor.inlinerHeuristics.InlineRequest,That]
-1 times = 0ms
-
-
-
-(=> Array[Short]) => Array[AnyRef]
-
-(=> Array[Short]) => Array[AnyRef]
-3 times = 0ms
-
-
-
-Unit => SymbolicXMLBuilder.this.global.Type
-
-Unit => SymbolicXMLBuilder.this.global.Type
-1 times = 0ms
-
-
-
-String('typing (implicit views = %s, macros = %s): ') => ?{def format: ?}
-
-String('typing (implicit views = %s, macros = %s): ') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Global.this.analyzer.packageObjects.type => ?{def ->: ?}
-
-Global.this.analyzer.packageObjects.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Type],ContextErrors.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Type],ContextErrors.this.global.Type,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => StringBuffer
-
-((Nothing, Nothing)) => StringBuffer
-1 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.BYTE.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.BYTE.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Printers.this.Tree],Printers.this.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Printers.this.Tree],Printers.this.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeCheckers.this.global.Tree],String,That]
-
-scala.collection.generic.CanBuildFrom[List[TreeCheckers.this.global.Tree],String,That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.LambdaMetafactory]
-
-scala.reflect.ClassTag[java.lang.invoke.LambdaMetafactory]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.TypeEnv),SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.ClassDef,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.TypeEnv),SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.ClassDef,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Implicits.this.global.gen.global.Symbol
-
-(=> (Nothing, Nothing)) => Implicits.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-(=> (Nothing, Unit, Any => Nothing)) => (OfflineCompilerCommand.this.Setting => Boolean)
-
-(=> (Nothing, Unit, Any => Nothing)) => (OfflineCompilerCommand.this.Setting => Boolean)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[java.nio.file.Path],java.nio.file.Path,That]
-
-scala.collection.generic.CanBuildFrom[Seq[java.nio.file.Path],java.nio.file.Path,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SymbolTrackers.this.global.Symbol],(SymbolTrackers.this.global.Symbol, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[SymbolTrackers.this.global.Symbol],(SymbolTrackers.this.global.Symbol, Int),That]
-1 times = 0ms
-
-
-
-(SymbolTrackers.this.global.Symbol, Long) <:< (SymbolTrackers.this.global.Symbol, Long)
-
-(SymbolTrackers.this.global.Symbol, Long) <:< (SymbolTrackers.this.global.Symbol, Long)
-1 times = 0ms
-
-
-
-String('NodeBuffer') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('NodeBuffer') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-(=> Array[Float]) => Array[AnyRef]
-
-(=> Array[Float]) => Array[AnyRef]
-3 times = 0ms
-
-
-
-Unit => scala.io.Codec
-
-Unit => scala.io.Codec
-2 times = 0ms
-
-
-
-String('specialized override of %s by %s%s') => ?{def format: ?}
-
-String('specialized override of %s by %s%s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(Mixin.this.global.Symbol, List[Mixin.this.global.Symbol]) <:< (T, U)
-
-(Mixin.this.global.Symbol, List[Mixin.this.global.Symbol]) <:< (T, U)
-1 times = 0ms
-
-
-
-Array[java.lang.reflect.Type] => ?{def toList: ?}
-
-Array[java.lang.reflect.Type] => ?{def toList: ?}
-1 times = 0ms
-
-
-
-v.type => ?{def +: ?}
-
-v.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.PUBLICkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.PUBLICkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[Infer.this.global.Symbol] => ?{def ::=: ?}
-
-List[Infer.this.global.Symbol] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, String),List[(String, String)]]
-
-scala.collection.generic.CanBuildFrom[List[String],(String, String),List[(String, String)]]
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => List[Typers.this.global.Type]
-
-(=> (Nothing, Nothing)) => List[Typers.this.global.Type]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Symbol],ExtensionMethods.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Symbol],ExtensionMethods.this.global.Type,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.util.Collection[_ <: scala.tools.asm.tree.TryCatchBlockNode]
-
-(=> (Nothing, Nothing)) => java.util.Collection[_ <: scala.tools.asm.tree.TryCatchBlockNode]
-1 times = 0ms
-
-
-
-String('override case field accessor %s -> %s') => ?{def format: ?}
-
-String('override case field accessor %s -> %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Option[scala.tools.nsc.transform.patmat.Lit] => scala.collection.GenTraversableOnce[?]
-
-Option[scala.tools.nsc.transform.patmat.Lit] => scala.collection.GenTraversableOnce[?]
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => SpecializeTypes.this.global.Tree
-
-((Nothing, Nothing)) => SpecializeTypes.this.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type)],SpecializeTypes.this.global.Type,List[SpecializeTypes.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type)],SpecializeTypes.this.global.Type,List[SpecializeTypes.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],context.WeakTypeTag[Nothing],That]
-
-scala.collection.generic.CanBuildFrom[List[Int],context.WeakTypeTag[Nothing],That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.net.URI
-
-((Nothing, Nothing)) => java.net.URI
-11 times = 1ms
-
-
-
-scala.collection.immutable.Map[scala.tools.asm.tree.AbstractInsnNode,scala.tools.asm.tree.AbstractInsnNode] => ?{def +=: ?}
-
-scala.collection.immutable.Map[scala.tools.asm.tree.AbstractInsnNode,scala.tools.asm.tree.AbstractInsnNode] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-arg.type => ?{def stripPrefix: ?}
-
-arg.type => ?{def stripPrefix: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Symbol,List[Interface.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Symbol,List[Interface.this.global.Symbol]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[LambdaLifter.this.SymSet],LambdaLift.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[LambdaLifter.this.SymSet],LambdaLift.this.global.Symbol,That]
-1 times = 2ms
-
-
-
-Option[Parsers.this.global.Tree] => Traversable[=?Parsers.this.global.Tree]
-
-Option[Parsers.this.global.Tree] => Traversable[=?Parsers.this.global.Tree]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TypersTracking.this.global.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[TypersTracking.this.global.Symbol],String,That]
-1 times = 0ms
-
-
-
-String => ?{def take: ?}
-
-String => ?{def take: ?}
-4 times = 3ms
-
-
-
-MatchCodeGen.this.CODE.SelectStart => MatchCodeGen.this.global.analyzer.global.Tree
-
-MatchCodeGen.this.CODE.SelectStart => MatchCodeGen.this.global.analyzer.global.Tree
-1 times = 0ms
-
-
-
-String('$tmpscope') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-
-String('$tmpscope') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => SyntheticMethods.this.global.Symbol
-
-((Nothing, Nothing)) => SyntheticMethods.this.global.Symbol
-6 times = 2ms
-
-
-
-String('classes') => scala.reflect.io.Path
-
-String('classes') => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Equals],Equals,That]
-
-scala.collection.generic.CanBuildFrom[List[Equals],Equals,That]
-1 times = 0ms
-
-
-
-String('.') => scala.reflect.io.Path
-
-String('.') => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-String => scala.text.Document
-
-String => scala.text.Document
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],scala.reflect.internal.Variance,List[scala.tools.nsc.Variance]]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],scala.reflect.internal.Variance,List[scala.tools.nsc.Variance]]
-1 times = 0ms
-
-
-
-(=> Unit) => Reshape.this.global.Type
-
-(=> Unit) => Reshape.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchCodeGen.this.global.Tree],MatchCodeGen.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchCodeGen.this.global.Tree],MatchCodeGen.this.global.Tree,That]
-1 times = 0ms
-
-
-
-prefixParts.type => ?{def head: ?}
-
-prefixParts.type => ?{def head: ?}
-1 times = 2ms
-
-
-
-Int => ?{def |=: ?}
-
-Int => ?{def |=: ?}
-8 times = 0ms
-
-
-
-Scanners.this.global.nme.EXTENDSkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.EXTENDSkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Array[String] => ?{def drop: ?}
-
-Array[String] => ?{def drop: ?}
-2 times = 5ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Holes.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Holes.this.global.Symbol
-6 times = 1ms
-
-
-
-((Nothing, Nothing)) => BCodeBodyBuilder.this.global.Tree
-
-((Nothing, Nothing)) => BCodeBodyBuilder.this.global.Tree
-41 times = 8ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.reflect.io.Path],java.net.URL,That]
-
-scala.collection.generic.CanBuildFrom[Seq[scala.reflect.io.Path],java.net.URL,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],scala.reflect.io.Path,That]
-
-scala.collection.generic.CanBuildFrom[List[String],scala.reflect.io.Path,That]
-1 times = 1ms
-
-
-
-String('[[syntax trees at end of %25s]]') => ?{def format: ?}
-
-String('[[syntax trees at end of %25s]]') => ?{def format: ?}
-1 times = 0ms
-
-
-
-String('%10.2fMB') => ?{def format: ?}
-
-String('%10.2fMB') => ?{def format: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.IMPLEMENTSkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.IMPLEMENTSkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.SYNCHRONIZEDkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.SYNCHRONIZEDkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-alts.type => ?{def +: ?}
-
-alts.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-List[CleanUp.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-
-List[CleanUp.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-(SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol) <:< (T, U)
-
-(SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol) <:< (T, U)
-1 times = 0ms
-
-
-
-(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type) <:< (SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type)
-
-(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type) <:< (SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[CommonSubconditionElimination.this.Test],CommonSubconditionElimination.this.TreeMaker,That]
-
-scala.collection.generic.CanBuildFrom[List[CommonSubconditionElimination.this.Test],CommonSubconditionElimination.this.TreeMaker,That]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Stream[ExtensionMethods.this.global.TermName]) => ?{def #::: ?}
-
-(=> scala.collection.immutable.Stream[ExtensionMethods.this.global.TermName]) => ?{def #::: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[BoxUnbox.this.postProcessor.bTypes.coreBTypes.bTypes.ClassBType],tools.nsc.backend.jvm.BTypes.InternalName,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[BoxUnbox.this.postProcessor.bTypes.coreBTypes.bTypes.ClassBType],tools.nsc.backend.jvm.BTypes.InternalName,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(Int, scala.tools.asm.Type),Vector[(Int, scala.tools.asm.Type)]]
-
-scala.collection.generic.CanBuildFrom[Nothing,(Int, scala.tools.asm.Type),Vector[(Int, scala.tools.asm.Type)]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[RefChecks.this.global.analyzer.global.Symbol]],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[List[RefChecks.this.global.analyzer.global.Symbol]],Int,That]
-1 times = 0ms
-
-
-
-(=> GenTrees.this.SymbolTable) => ?{def ++=: ?}
-
-(=> GenTrees.this.SymbolTable) => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.ReifyBindingAttachment]
-
-scala.reflect.ClassTag[StdAttachments.this.ReifyBindingAttachment]
-1 times = 5ms
-
-
-
-Array[Int] => ?{def flatMap: ?}
-
-Array[Int] => ?{def flatMap: ?}
-1 times = 1ms
-
-
-
-Unit => TreeBuilder.this.global.Type
-
-Unit => TreeBuilder.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.LinkedHashMap[Infer.this.global.Symbol,Option[Infer.this.global.Type]],(Infer.this.global.Symbol, Infer.this.global.Type),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.LinkedHashMap[Infer.this.global.Symbol,Option[Infer.this.global.Type]],(Infer.this.global.Symbol, Infer.this.global.Type),That]
-1 times = 2ms
-
-
-
-JavaScanners.this.global.javanme.CATCHkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.CATCHkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[StructuredTypeStrings.this.TypeNode],String,That]
-
-scala.collection.generic.CanBuildFrom[List[StructuredTypeStrings.this.TypeNode],String,That]
-1 times = 0ms
-
-
-
-String => ?{def split(x$1: ? >: Char(',')): ?}
-
-String => ?{def split(x$1: ? >: Char(',')): ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.MemberDef with Serializable{def name: Parsers.this.global.Name{def next: Parsers.this.global.Name; type ThisNameType >: Parsers.this.global.TypeName with Parsers.this.global.TermName <: Parsers.this.global.Name}},List[Parsers.this.global.MemberDef]]
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.MemberDef with Serializable{def name: Parsers.this.global.Name{def next: Parsers.this.global.Name; type ThisNameType >: Parsers.this.global.TypeName with Parsers.this.global.TermName <: Parsers.this.global.Name}},List[Parsers.this.global.MemberDef]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Reshape.this.global.Name, Reshape.this.global.ClassfileAnnotArg)],Reshape.this.global.AssignOrNamedArg,That]
-
-scala.collection.generic.CanBuildFrom[List[(Reshape.this.global.Name, Reshape.this.global.ClassfileAnnotArg)],Reshape.this.global.AssignOrNamedArg,That]
-1 times = 1ms
-
-
-
-Array[Double] => Array[Class[_]]
-
-Array[Double] => Array[Class[_]]
-3 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.THISkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.THISkw.type => ?{def ->: ?}
-1 times = 4ms
-
-
-
-String('symbol owners') => ?{def ->: ?}
-
-String('symbol owners') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeBuilder.this.global.Tree],TreeBuilder.this.global.Tree,List[TreeBuilder.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[TreeBuilder.this.global.Tree],TreeBuilder.this.global.Tree,List[TreeBuilder.this.global.Tree]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Symbol],NamesDefaults.this.global.NamedType,That]
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Symbol],NamesDefaults.this.global.NamedType,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],MatchTranslation.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],MatchTranslation.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Typers.this.global.QualTypeSymAttachment]
-
-scala.reflect.ClassTag[Typers.this.global.QualTypeSymAttachment]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[TreeMakers.this.TreeMaker]],List[TreeMakers.this.TreeMaker],That]
-
-scala.collection.generic.CanBuildFrom[List[List[TreeMakers.this.TreeMaker]],List[TreeMakers.this.TreeMaker],That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.Type],Delambdafy.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.Type],Delambdafy.this.global.Type,That]
-1 times = 0ms
-
-
-
-TypersStats.this.StackableTimer => Ordered[TypersStats.this.StackableTimer]
-
-TypersStats.this.StackableTimer => Ordered[TypersStats.this.StackableTimer]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Symbol],BTypesFromSymbols.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Symbol],BTypesFromSymbols.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[global.analyzer.global.Tree],global.ClassDef,That]
-
-scala.collection.generic.CanBuildFrom[List[global.analyzer.global.Tree],global.ClassDef,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],Implicits.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],Implicits.this.global.Tree,That]
-1 times = 0ms
-
-
-
-MatchCodeGen.this.global.gen.global.RefTree => ?{def DOT: ?}
-
-MatchCodeGen.this.global.gen.global.RefTree => ?{def DOT: ?}
-1 times = 0ms
-
-
-
-scala.math.Ordering[T]
-
-scala.math.Ordering[T]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],Reifiers.this.global.Tree,List[ApplyReifier.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Any],Reifiers.this.global.Tree,List[ApplyReifier.this.global.Tree]]
-1 times = 2ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => GenSymbols.this.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => GenSymbols.this.global.Tree
-1 times = 0ms
-
-
-
-Unit => java.io.FileFilter
-
-Unit => java.io.FileFilter
-1 times = 0ms
-
-
-
-args.type => ?{def toList: ?}
-
-args.type => ?{def toList: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PureCodegen.this.Casegen => MatchCodeGen.this.global.Tree],MatchCodeGen.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[PureCodegen.this.Casegen => MatchCodeGen.this.global.Tree],MatchCodeGen.this.global.Tree,That]
-1 times = 0ms
-
-
-
-String => ?{def dropRight: ?}
-
-String => ?{def dropRight: ?}
-2 times = 0ms
-
-
-
-String => ?{def replaceAllLiterally: ?}
-
-String => ?{def replaceAllLiterally: ?}
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => SuperAccessors.this.global.Symbol
-
-((Nothing, Nothing)) => SuperAccessors.this.global.Symbol
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => SpecializeTypes.this.TypeEnv
-
-(=> (Nothing, Nothing)) => SpecializeTypes.this.TypeEnv
-16 times = 0ms
-
-
-
-Unit => (AnyRef => Int)
-
-Unit => (AnyRef => Int)
-1 times = 0ms
-
-
-
-s.type => ?{def init: ?}
-
-s.type => ?{def init: ?}
-1 times = 0ms
-
-
-
-(=> Array[Boolean]) => Array[Class[_]]
-
-(=> Array[Boolean]) => Array[Class[_]]
-3 times = 0ms
-
-
-
-(=> Unit) => SymbolTables.this.global.Type
-
-(=> Unit) => SymbolTables.this.global.Type
-2 times = 0ms
-
-
-
-Unit => scala.sys.process.ProcessLogger
-
-Unit => scala.sys.process.ProcessLogger
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.io.AbstractFile],scala.reflect.internal.util.BatchSourceFile,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.io.AbstractFile],scala.reflect.internal.util.BatchSourceFile,That]
-1 times = 1ms
-
-
-
-String('HIklMSLNpzZsQBbhAaCYyjmdeRTrDFc') => ?{def contains(x$1: ? >: Char): ?}
-
-String('HIklMSLNpzZsQBbhAaCYyjmdeRTrDFc') => ?{def contains(x$1: ? >: Char): ?}
-1 times = 0ms
-
-
-
-(=> Array[Unit]) => Array[Class[_]]
-
-(=> Array[Unit]) => Array[Class[_]]
-3 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => JavaParsers.this.global.Symbol
-
-(=> (Nothing, Nothing)) => JavaParsers.this.global.Symbol
-2 times = 0ms
-
-
-
-String('argument file %s could not be found') => ?{def format: ?}
-
-String('argument file %s could not be found') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.SubComponent],String,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.SubComponent],String,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Typers.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing)) => Typers.this.global.Symbol
-2 times = 0ms
-
-
-
-(=> List[Parsers.this.OpInfo]) => ?{def ::=: ?}
-
-(=> List[Parsers.this.OpInfo]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-((Nothing, Any => Nothing)) => List[String]
-
-((Nothing, Any => Nothing)) => List[String]
-1 times = 0ms
-
-
-
-List[Erasure.this.global.Symbol] => Erasure.this.global.Type
-
-List[Erasure.this.global.Symbol] => Erasure.this.global.Type
-4 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-
-(=> (Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-3 times = 0ms
-
-
-
-Scanners.this.global.nme.ELSEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.ELSEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('%s %s %s%s, but ') => ?{def format: ?}
-
-String('%s %s %s%s, but ') => ?{def format: ?}
-1 times = 0ms
-
-
-
-List[() => Unit] => ?{def ::=: ?}
-
-List[() => Unit] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-Char('.') => String
-
-Char('.') => String
-4 times = 1ms
-
-
-
-(=> (List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-
-(=> (List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PatternExpansion.this.global.Symbol],PatternExpansion.this.global.Type,List[PatternExpansion.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[PatternExpansion.this.global.Symbol],PatternExpansion.this.global.Type,List[PatternExpansion.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[tools.nsc.io.File]
-
-scala.reflect.ClassTag[tools.nsc.io.File]
-1 times = 0ms
-
-
-
-Int(105) => ?{def ->: ?}
-
-Int(105) => ?{def ->: ?}
-2 times = 1ms
-
-
-
-Array[Boolean] => Array[CNF.this.Clause]
-
-Array[Boolean] => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Int],scala.tools.asm.tree.AbstractInsnNode,That]
-
-scala.collection.generic.CanBuildFrom[Seq[Int],scala.tools.asm.tree.AbstractInsnNode,That]
-1 times = 0ms
-
-
-
-since.type => ?{def nonEmpty: ?}
-
-since.type => ?{def nonEmpty: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.TypeDef],ExtensionMethods.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.TypeDef],ExtensionMethods.this.global.Symbol,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Symbol],NamesDefaults.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Symbol],NamesDefaults.this.global.Tree,That]
-1 times = 0ms
-
-
-
-List[Flatten.this.global.Symbol] => Flatten.this.global.Type
-
-List[Flatten.this.global.Symbol] => Flatten.this.global.Type
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => => String
-
-(=> (Nothing, Nothing)) => => String
-12 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PatternExpansion.this.global.Type],PatternExpansion.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[PatternExpansion.this.global.Type],PatternExpansion.this.global.Type,That]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.VALkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.VALkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.TypeDef],SpecializeTypes.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.TypeDef],SpecializeTypes.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Delambdafy.this.global.analyzer.global.Tree
-
-((Nothing, Nothing)) => Delambdafy.this.global.analyzer.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],Typers.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],Typers.this.global.Type,That]
-1 times = 0ms
-
-
-
-((List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-
-((List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-1 times = 0ms
-
-
-
-(=> Boolean) => ?{def ||=: ?}
-
-(=> Boolean) => ?{def ||=: ?}
-1 times = 0ms
-
-
-
-(=> Erasure.this.global.AnnotationInfo) => Erasure.this.global.Type
-
-(=> Erasure.this.global.AnnotationInfo) => Erasure.this.global.Type
-4 times = 0ms
-
-
-
-MultiChoiceSetting.this.domain.ValueSet => ?{def -=: ?}
-
-MultiChoiceSetting.this.domain.ValueSet => ?{def -=: ?}
-2 times = 0ms
-
-
-
-Context.this.type => ?{def reporter_=: ?}
-
-Context.this.type => ?{def reporter_=: ?}
-3 times = 0ms
-
-
-
-(=> String) => scala.reflect.io.File
-
-(=> String) => scala.reflect.io.File
-14 times = 0ms
-
-
-
-(SymbolTrackers.this.global.Symbol, scala.collection.immutable.Set[SymbolTrackers.this.global.Tree]) <:< (SymbolTrackers.this.global.Symbol, Set[SymbolTrackers.this.global.Tree])
-
-(SymbolTrackers.this.global.Symbol, scala.collection.immutable.Set[SymbolTrackers.this.global.Tree]) <:< (SymbolTrackers.this.global.Symbol, Set[SymbolTrackers.this.global.Tree])
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(Int, CNF.this.Sym)],String,That]
-
-scala.collection.generic.CanBuildFrom[Seq[(Int, CNF.this.Sym)],String,That]
-1 times = 0ms
-
-
-
-Ordering[scala.tools.nsc.util.ClassPath]
-
-Ordering[scala.tools.nsc.util.ClassPath]
-1 times = 1ms
-
-
-
-scala.collection.immutable.Map[scala.tools.asm.tree.MethodInsnNode,CallGraph.this.Callsite] => ?{def +=: ?}
-
-scala.collection.immutable.Map[scala.tools.asm.tree.MethodInsnNode,CallGraph.this.Callsite] => ?{def +=: ?}
-1 times = 1ms
-
-
-
-(=> SpecializeTypes.this.global.AnnotationInfo) => SpecializeTypes.this.global.Type
-
-(=> SpecializeTypes.this.global.AnnotationInfo) => SpecializeTypes.this.global.Type
-1 times = 0ms
-
-
-
-AliasingFrame.this.type => ?{def peekStack: ?}
-
-AliasingFrame.this.type => ?{def peekStack: ?}
-1 times = 0ms
-
-
-
-List[SpecializeTypes.this.Overload] => ?{def ::=: ?}
-
-List[SpecializeTypes.this.Overload] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => StringBuilder
-
-(=> (Nothing, Nothing, Nothing)) => StringBuilder
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Int, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType with Product with Serializable)],(Int, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType with Product with Serializable),That]
-
-scala.collection.generic.CanBuildFrom[List[(Int, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType with Product with Serializable)],(Int, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType with Product with Serializable),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],SymbolicXMLBuilder.this.global.Tree,List[SymbolicXMLBuilder.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[String],SymbolicXMLBuilder.this.global.Tree,List[SymbolicXMLBuilder.this.global.Tree]]
-1 times = 0ms
-
-
-
-expandee.type => ?{def ->: ?}
-
-expandee.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String(' ') => ?{def *: ?}
-
-String(' ') => ?{def *: ?}
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Tree],MatchTranslator.this.BoundTree,List[MatchTranslator.this.BoundTree]]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Tree],MatchTranslator.this.BoundTree,List[MatchTranslator.this.BoundTree]]
-1 times = 0ms
-
-
-
-Seq[org.apache.tools.ant.types.Commandline.Argument] => ?{def :+=: ?}
-
-Seq[org.apache.tools.ant.types.Commandline.Argument] => ?{def :+=: ?}
-1 times = 0ms
-
-
-
-Array[Byte] => Array[AnyRef]
-
-Array[Byte] => Array[AnyRef]
-3 times = 0ms
-
-
-
-arg.type => ?{def ->: ?}
-
-arg.type => ?{def ->: ?}
-2 times = 1ms
-
-
-
-((Nothing, Nothing)) => Constructors.this.global.Tree
-
-((Nothing, Nothing)) => Constructors.this.global.Tree
-1 times = 0ms
-
-
-
-(=> scala.tools.nsc.profile.ProfileCounters) => ?{def +=: ?}
-
-(=> scala.tools.nsc.profile.ProfileCounters) => ?{def +=: ?}
-3 times = 0ms
-
-
-
-(=> Char(' ')) => String
-
-(=> Char(' ')) => String
-1 times = 0ms
-
-
-
-String('Group') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('Group') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => EtaExpansion.this.global.gen.global.ValDef
-
-((Nothing, Nothing)) => EtaExpansion.this.global.gen.global.ValDef
-1 times = 0ms
-
-
-
-childSection.type => ?{def replaceAllLiterally: ?}
-
-childSection.type => ?{def replaceAllLiterally: ?}
-1 times = 0ms
-
-
-
-MatchTreeMaking.this.global.Select => ?{def OBJ_EQ: ?}
-
-MatchTreeMaking.this.global.Select => ?{def OBJ_EQ: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Parsers.this.global.BackquotedIdentifierAttachment.type]
-
-scala.reflect.ClassTag[Parsers.this.global.BackquotedIdentifierAttachment.type]
-2 times = 3ms
-
-
-
-scala.reflect.ClassTag[NamesDefaults.this.global.Type]
-
-scala.reflect.ClassTag[NamesDefaults.this.global.Type]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => String
-
-(=> (Nothing, Nothing)) => String
-52 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Tree],AnyRef,That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Tree],AnyRef,That]
-1 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.FLOAT.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.FLOAT.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.Set[ss.Setting],List[String],That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.Set[ss.Setting],List[String],That]
-1 times = 1ms
-
-
-
-(=> Array[Unit]) => Array[AnyRef]
-
-(=> Array[Unit]) => Array[AnyRef]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[CNF.this.Prop],scala.tools.nsc.transform.patmat.Lit,Set[scala.tools.nsc.transform.patmat.Lit]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[CNF.this.Prop],scala.tools.nsc.transform.patmat.Lit,Set[scala.tools.nsc.transform.patmat.Lit]]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Int
-
-(=> (Nothing, Nothing)) => Int
-42 times = 3ms
-
-
-
-Null <:< Reshape.this.global.ValDef
-
-Null <:< Reshape.this.global.ValDef
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.io.File
-
-((Nothing, Nothing)) => java.io.File
-7 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[DirectoryLookup.this.F],FileEntryType,Seq[FileEntryType]]
-
-scala.collection.generic.CanBuildFrom[Array[DirectoryLookup.this.F],FileEntryType,Seq[FileEntryType]]
-1 times = 0ms
-
-
-
-DummyImplicit
-
-DummyImplicit
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[DirectoryLookup.this.F],FileEntryType,Seq[FileEntryType]]->DummyImplicit
-
-
-
-
-
-String('Compile succeeded with %d warning%s; see the compiler output for details.') => ?{def format: ?}
-
-String('Compile succeeded with %d warning%s; see the compiler output for details.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-x$21.NameType => ?{def getterName: ?}
-
-x$21.NameType => ?{def getterName: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.Name,List[Parsers.this.global.analyzer.global.Name]]
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.Name,List[Parsers.this.global.analyzer.global.Name]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit],Int,scala.collection.GenTraversableOnce[Int]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit],Int,scala.collection.GenTraversableOnce[Int]]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => CleanUp.this.global.Symbol
-
-(=> (Nothing, Nothing)) => CleanUp.this.global.Symbol
-6 times = 0ms
-
-
-
-x$6.type => ?{def toInt: ?}
-
-x$6.type => ?{def toInt: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Symbol],String,That]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Map[BCodeSkelBuilder.this.global.Symbol,scala.tools.asm.Label] => ?{def +=: ?}
-
-scala.collection.immutable.Map[BCodeSkelBuilder.this.global.Symbol,scala.tools.asm.Label] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[_],Macros.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[_],Macros.this.global.Tree,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Parsers.this.global.TypeBounds
-
-((Nothing, Nothing)) => Parsers.this.global.TypeBounds
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.awt.PopupMenu
-
-((Nothing, Nothing)) => java.awt.PopupMenu
-3 times = 1ms
-
-
-
-x$5.NameType => ?{def +: ?}
-
-x$5.NameType => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],Char,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],Char,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Array[Byte]
-
-(=> (Nothing, Nothing)) => Array[Byte]
-3 times = 0ms
-
-
-
-String('.-:') => ?{def contains(x$1: ? >: Char): Boolean}
-
-String('.-:') => ?{def contains(x$1: ? >: Char): Boolean}
-1 times = 0ms
-
-
-
-origSym.type => ?{def ->: ?}
-
-origSym.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-nextFrame.type => ?{def stackTop: ?}
-
-nextFrame.type => ?{def stackTop: ?}
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def interpolate: ?}
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def interpolate: ?}
-1 times = 2ms
-
-
-
-(=> Array[Int]) => Array[Class[_]]
-
-(=> Array[Int]) => Array[Class[_]]
-3 times = 0ms
-
-
-
-scala.reflect.ClassTag[Enclosures.this.universe.ImplDef]
-
-scala.reflect.ClassTag[Enclosures.this.universe.ImplDef]
-2 times = 3ms
-
-
-
-(=> Unit) => (Typers.this.global.Tree => Typers.this.global.Tree)
-
-(=> Unit) => (Typers.this.global.Tree => Typers.this.global.Tree)
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.runtime.Null$]
-
-scala.reflect.ClassTag[scala.runtime.Null$]
-1 times = 1ms
-
-
-
-TypeNode.this.type => ?{def label_=: ?}
-
-TypeNode.this.type => ?{def label_=: ?}
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Fields.this.global.Symbol
-
-(=> (Nothing, Nothing)) => Fields.this.global.Symbol
-2 times = 0ms
-
-
-
-Int(41) => ?{def ->: ?}
-
-Int(41) => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(tools.nsc.backend.jvm.BTypes.InternalName, CoreBTypesFromSymbols.this.bTypes.MethodNameAndType),Map[tools.nsc.backend.jvm.BTypes.InternalName,CoreBTypesFromSymbols.this.bTypes.MethodNameAndType]]
-
-scala.collection.generic.CanBuildFrom[Nothing,(tools.nsc.backend.jvm.BTypes.InternalName, CoreBTypesFromSymbols.this.bTypes.MethodNameAndType),Map[tools.nsc.backend.jvm.BTypes.InternalName,CoreBTypesFromSymbols.this.bTypes.MethodNameAndType]]
-5 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.explicitOuter.global.Tree],LambdaLift.this.global.Tree,List[LambdaLift.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.explicitOuter.global.Tree],LambdaLift.this.global.Tree,List[LambdaLift.this.global.Tree]]
-1 times = 0ms
-
-
-
-Flatten.this.global.Scope => Flatten.this.global.Type
-
-Flatten.this.global.Scope => Flatten.this.global.Type
-1 times = 1ms
-
-
-
-s.type => ?{def capitalize: ?}
-
-s.type => ?{def capitalize: ?}
-1 times = 0ms
-
-
-
-request.callsite.callee.type => ?{def get: ?}
-
-request.callsite.callee.type => ?{def get: ?}
-1 times = 1ms
-
-
-
-(=> Unit) => java.io.PrintStream
-
-(=> Unit) => java.io.PrintStream
-13 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PatternTypers.this.global.Symbol],PatternTypers.this.global.Type,List[PatternTypers.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[PatternTypers.this.global.Symbol],PatternTypers.this.global.Type,List[PatternTypers.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTrackers.this.global.Symbol, Int)],String,That]
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTrackers.this.global.Symbol, Int)],String,That]
-1 times = 0ms
-
-
-
-Erasure.this.global.Scope => Erasure.this.global.Type
-
-Erasure.this.global.Scope => Erasure.this.global.Type
-4 times = 1ms
-
-
-
-(=> Array[Int]) => Array[AnyRef]
-
-(=> Array[Int]) => Array[AnyRef]
-3 times = 0ms
-
-
-
-java.util.Map[String,String] => ?{def asScala: ?}
-
-java.util.Map[String,String] => ?{def asScala: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[Contexts.this.global.Symbol],Contexts.this.global.Symbol,Iterable[Contexts.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[Iterable[Contexts.this.global.Symbol],Contexts.this.global.Symbol,Iterable[Contexts.this.global.Symbol]]
-1 times = 0ms
-
-
-
-String => scala.tools.nsc.io.Path
-
-String => scala.tools.nsc.io.Path
-2 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.INSTANCEOFkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.INSTANCEOFkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Int, CoreBTypesFromSymbols.this.bTypes.BOOL.type)],(Int, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType with Product with Serializable),That]
-
-scala.collection.generic.CanBuildFrom[List[(Int, CoreBTypesFromSymbols.this.bTypes.BOOL.type)],(Int, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType with Product with Serializable),That]
-1 times = 0ms
-
-
-
-Global.this.fields.type => ?{def ->: ?}
-
-Global.this.fields.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Global.this.postErasure.type => ?{def ->: ?}
-
-Global.this.postErasure.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('(?i)rc(\\d*)') => ?{def r: ?}
-
-String('(?i)rc(\d*)') => ?{def r: ?}
-1 times = 0ms
-
-
-
-Int(44) => ?{def ->: ?}
-
-Int(44) => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.SuperInit.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.SuperInit.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[TypeDiagnostics.this.global.Symbol] => ?{def ::=: ?}
-
-List[TypeDiagnostics.this.global.Symbol] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Type],Macros.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Type],Macros.this.global.Type,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[NodePrinters.this.global.AnnotationInfo],String,That]
-
-scala.collection.generic.CanBuildFrom[List[NodePrinters.this.global.AnnotationInfo],String,That]
-1 times = 1ms
-
-
-
-String('calculateUndetparams: %s') => ?{def format: ?}
-
-String('calculateUndetparams: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-PathResolver.this.settings.BooleanSetting => Boolean
-
-PathResolver.this.settings.BooleanSetting => Boolean
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.ABSTRACTkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.ABSTRACTkw.type => ?{def ->: ?}
-1 times = 3ms
-
-
-
-Long => Int
-
-Long => Int
-505 times = 30ms
-
-
-
-Scanners.this.global.nme.OBJECTkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.OBJECTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Unit => java.util.jar.Manifest
-
-Unit => java.util.jar.Manifest
-1 times = 0ms
-
-
-
-scala.math.Ordering[x$47._1.NameType forSome { val x$47: (SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type) }]
-
-scala.math.Ordering[x$47._1.NameType forSome { val x$47: (SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type) }]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],(String, tools.nsc.backend.jvm.BTypes.MethodInlineInfo),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],(String, tools.nsc.backend.jvm.BTypes.MethodInlineInfo),That]
-1 times = 1ms
-
-
-
-s.type => ?{def drop: ?}
-
-s.type => ?{def drop: ?}
-1 times = 0ms
-
-
-
-tpt1.type => ?{def +: ?}
-
-tpt1.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-String => ?{def contains(x$1: ? >: Char): ?}
-
-String => ?{def contains(x$1: ? >: Char): ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[MatchApproximator.this.TreeMaker]],Product with Serializable with MatchApproximator.this.Prop,Iterable[MatchApproximator.this.Prop]]
-
-scala.collection.generic.CanBuildFrom[List[List[MatchApproximator.this.TreeMaker]],Product with Serializable with MatchApproximator.this.Prop,Iterable[MatchApproximator.this.Prop]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[MatchAnalyzer.this.Const],MatchAnalyzer.this.Const,That]
-
-scala.collection.generic.CanBuildFrom[Seq[MatchAnalyzer.this.Const],MatchAnalyzer.this.Const,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Unapplies.this.global.ValDef],Unapplies.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Unapplies.this.global.ValDef],Unapplies.this.global.Tree,That]
-1 times = 0ms
-
-
-
-pattern.type => ?{def dropRight: ?}
-
-pattern.type => ?{def dropRight: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.beans.ScalaBeanInfo]
-
-scala.reflect.ClassTag[scala.beans.ScalaBeanInfo]
-1 times = 1ms
-
-
-
-String('reconstructed args') => ?{def ->: ?}
-
-String('reconstructed args') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Erasure.this.global.AnnotationInfo => Erasure.this.global.Type
-
-Erasure.this.global.AnnotationInfo => Erasure.this.global.Type
-4 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => TreeGen.this.global.ValDef
-
-(=> (Nothing, Nothing)) => TreeGen.this.global.ValDef
-2 times = 0ms
-
-
-
-Char(' ') => String
-
-Char(' ') => String
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[TreeAndTypeAnalysis.this.global.Symbol]],List[TreeAndTypeAnalysis.this.global.Type],That]
-
-scala.collection.generic.CanBuildFrom[List[List[TreeAndTypeAnalysis.this.global.Symbol]],List[TreeAndTypeAnalysis.this.global.Type],That]
-1 times = 0ms
-
-
-
-(=> Double) => Parsers.this.Offset
-
-(=> Double) => Parsers.this.Offset
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => AccessorSynthesis.this.global.Symbol
-
-(=> (Nothing, Nothing)) => AccessorSynthesis.this.global.Symbol
-2 times = 0ms
-
-
-
-List[BCodeIdiomatic.this.global.LabelDef] => ?{def ::=: ?}
-
-List[BCodeIdiomatic.this.global.LabelDef] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(T, NamesDefaults.this.global.Symbol)],T,That]
-
-scala.collection.generic.CanBuildFrom[List[(T, NamesDefaults.this.global.Symbol)],T,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.io.OutputStream
-
-((Nothing, Nothing)) => java.io.OutputStream
-7 times = 0ms
-
-
-
-List[SpecializeTypes.this.global.Symbol] => ?{def +: ?}
-
-List[SpecializeTypes.this.global.Symbol] => ?{def +: ?}
-1 times = 0ms
-
-
-
-Int(49) => ?{def ->: ?}
-
-Int(49) => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('|/** As seen from %s, the missing signatures are as follows.\n | * For convenience, these are usable as stub implementations.\n | */\n |') => ?{def stripMargin: ?}
-
-String('|/** As seen from %s, the missing signatures are as follows.
- | * For convenience, these are usable as stub implementations.
- | */
- |') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-(=> Long) => String
-
-(=> Long) => String
-3 times = 0ms
-
-
-
-Int(256) => scala.tools.nsc.typechecker.ContextMode
-
-Int(256) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Tree,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => UnCurry.this.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => UnCurry.this.global.Tree
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Namers.this.CaseApplyDefaultGetters]
-
-scala.reflect.ClassTag[Namers.this.CaseApplyDefaultGetters]
-4 times = 4ms
-
-
-
-(=> List[TreeAndTypeAnalysis.this.global.Symbol]) => TreeAndTypeAnalysis.this.global.Type
-
-(=> List[TreeAndTypeAnalysis.this.global.Symbol]) => TreeAndTypeAnalysis.this.global.Type
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Typers.this.global.gen.global.Symbol
-
-(=> (Nothing, Nothing)) => Typers.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Metalevels.this.global.Symbol],Metalevels.this.global.TermName,That]
-
-scala.collection.generic.CanBuildFrom[List[Metalevels.this.global.Symbol],Metalevels.this.global.TermName,That]
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[MarkupParser.this.parser.symbXMLBuilder.TextAttache]
-
-scala.reflect.ClassTag[MarkupParser.this.parser.symbXMLBuilder.TextAttache]
-3 times = 4ms
-
-
-
-urls.type => ?{def mkString: ?}
-
-urls.type => ?{def mkString: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => UnCurry.this.global.Symbol
-
-(=> (Nothing, Nothing)) => UnCurry.this.global.Symbol
-4 times = 0ms
-
-
-
-String('specialize accessor in %s: %s -> %s') => ?{def format: ?}
-
-String('specialize accessor in %s: %s -> %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-includedFiles.type => ?{def filter: ?}
-
-includedFiles.type => ?{def filter: ?}
-2 times = 2ms
-
-
-
-name.type => ?{def dropLocal: ?}
-
-name.type => ?{def dropLocal: ?}
-1 times = 0ms
-
-
-
-member.type => ?{def +: ?}
-
-member.type => ?{def +: ?}
-1 times = 2ms
-
-
-
-Global.this.superAccessors.type => ?{def ->: ?}
-
-Global.this.superAccessors.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-String('reifying type %s for tree %s') => ?{def format: ?}
-
-String('reifying type %s for tree %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[String],(String, String),That]
-
-scala.collection.generic.CanBuildFrom[Seq[String],(String, String),That]
-1 times = 0ms
-
-
-
-Unit => scala.tools.asm.tree.AbstractInsnNode
-
-Unit => scala.tools.asm.tree.AbstractInsnNode
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]
-
-scala.reflect.ClassTag[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]
-1 times = 1ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.ReTyping.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.ReTyping.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Tree],RefChecks.this.global.Type,List[RefChecks.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Tree],RefChecks.this.global.Type,List[RefChecks.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.MethodHandles]
-
-scala.reflect.ClassTag[java.lang.invoke.MethodHandles]
-1 times = 1ms
-
-
-
-prefix.type => ?{def foreach: ?}
-
-prefix.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-clauses.type => ?{def foreach: ?}
-
-clauses.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.Tree],Reifiers.this.global.Tree,List[Reifiers.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.Tree],Reifiers.this.global.Tree,List[Reifiers.this.global.Tree]]
-1 times = 1ms
-
-
-
-(=> Boolean) => ?{def &&=: ?}
-
-(=> Boolean) => ?{def &&=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],org.apache.tools.ant.types.Commandline.Argument,That]
-
-scala.collection.generic.CanBuildFrom[Array[String],org.apache.tools.ant.types.Commandline.Argument,That]
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[org.apache.tools.ant.types.Commandline.Argument]
-
-scala.reflect.ClassTag[org.apache.tools.ant.types.Commandline.Argument]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],org.apache.tools.ant.types.Commandline.Argument,That]->scala.reflect.ClassTag[org.apache.tools.ant.types.Commandline.Argument]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[BCodeHelpers.this.global.AnnotationInfo]],List[BCodeHelpers.this.global.AnnotationInfo],That]
-
-scala.collection.generic.CanBuildFrom[List[List[BCodeHelpers.this.global.AnnotationInfo]],List[BCodeHelpers.this.global.AnnotationInfo],That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Array[Short]
-
-(=> (Nothing, Nothing)) => Array[Short]
-1 times = 0ms
-
-
-
-Array[Byte] => ?{def take: ?}
-
-Array[Byte] => ?{def take: ?}
-2 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],Implicits.this.global.BoundedWildcardType,List[Implicits.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],Implicits.this.global.BoundedWildcardType,List[Implicits.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ClosureOptimizer.this.Local],(ClosureOptimizer.this.Local, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[ClosureOptimizer.this.Local],(ClosureOptimizer.this.Local, Int),That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[SymbolicXMLBuilder.this.TextAttache]
-
-scala.reflect.ClassTag[SymbolicXMLBuilder.this.TextAttache]
-1 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Tree],SpecializeTypes.this.global.ClassDef,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Tree],SpecializeTypes.this.global.ClassDef,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[ZipArchiveFileLookup.this.archive.DirEntry],scala.tools.nsc.classpath.PackageEntryImpl,Seq[scala.tools.nsc.classpath.PackageEntry]]
-
-scala.collection.generic.CanBuildFrom[Seq[ZipArchiveFileLookup.this.archive.DirEntry],scala.tools.nsc.classpath.PackageEntryImpl,Seq[scala.tools.nsc.classpath.PackageEntry]]
-1 times = 0ms
-
-
-
-(=> (List[Nothing], List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type])
-
-(=> (List[Nothing], List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type])
-1 times = 0ms
-
-
-
-((Nothing, Unit, Unit)) => Macros.this.global.Name
-
-((Nothing, Unit, Unit)) => Macros.this.global.Name
-1 times = 0ms
-
-
-
-(=> List[String]) => ?{def ::=: ?}
-
-(=> List[String]) => ?{def ::=: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],(Typers.this.global.Type, Typers.this.global.Symbol),That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],(Typers.this.global.Type, Typers.this.global.Symbol),That]
-1 times = 0ms
-
-
-
-Option[ZipArchiveFileLookup.this.archive.DirEntry] => ?{def toSeq: ?}
-
-Option[ZipArchiveFileLookup.this.archive.DirEntry] => ?{def toSeq: ?}
-2 times = 1ms
-
-
-
-scala.reflect.internal.util.FreshNameCreator
-
-scala.reflect.internal.util.FreshNameCreator
-14 times = 10ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Trees.this.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Trees.this.Symbol],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],scala.reflect.io.Path,That]
-
-scala.collection.generic.CanBuildFrom[Array[String],scala.reflect.io.Path,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],scala.reflect.io.Path,That]->scala.reflect.ClassTag[scala.reflect.io.Path]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Symbol],String,That]
-1 times = 0ms
-
-
-
-String('macro expansion is delayed: %s') => ?{def format: ?}
-
-String('macro expansion is delayed: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.SUPERTYPEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.SUPERTYPEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-nextBinder.type => ?{def ===: ?}
-
-nextBinder.type => ?{def ===: ?}
-1 times = 0ms
-
-
-
-java.io.File => scala.reflect.io.Path
-
-java.io.File => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Symbol],ContextErrors.this.global.Symbol#NameType,That]
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Symbol],ContextErrors.this.global.Symbol#NameType,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Array[Double]
-
-(=> (Nothing, Nothing)) => Array[Double]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.CallSite]
-
-scala.reflect.ClassTag[java.lang.invoke.CallSite]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.NoInlineCallsiteAttachment.type]
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.NoInlineCallsiteAttachment.type]
-1 times = 1ms
-
-
-
-Unit => Array[Byte]
-
-Unit => Array[Byte]
-2 times = 0ms
-
-
-
-Array[java.lang.reflect.Constructor[_]] => ?{def filter: ?}
-
-Array[java.lang.reflect.Constructor[_]] => ?{def filter: ?}
-1 times = 2ms
-
-
-
-String => ?{def span: ?}
-
-String => ?{def span: ?}
-1 times = 0ms
-
-
-
-String('TypeTree, non-essential: %s (%s)') => ?{def format: ?}
-
-String('TypeTree, non-essential: %s (%s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Reshape.this.global.FlagSet
-
-(=> (Nothing, Nothing, Nothing)) => Reshape.this.global.FlagSet
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Constructors.this.global.Tree
-
-(=> (Nothing, Nothing)) => Constructors.this.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashSet[MutableSettings.this.Setting],MutableSettings.this.PrefixSetting,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashSet[MutableSettings.this.Setting],MutableSettings.this.PrefixSetting,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => scala.tools.asm.tree.InsnList
-
-((Nothing, Nothing)) => scala.tools.asm.tree.InsnList
-14 times = 0ms
-
-
-
-c.NameType => ?{def +: ?}
-
-c.NameType => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Scanners.this.global.Name, Int)],(Int, Scanners.this.global.Name),That]
-
-scala.collection.generic.CanBuildFrom[List[(Scanners.this.global.Name, Int)],(Int, Scanners.this.global.Name),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[TreeMakers.this.TreeMaker]],List[TreeMakers.this.TreeMaker],List[List[TreeMakers.this.TreeMaker]]]
-
-scala.collection.generic.CanBuildFrom[List[List[TreeMakers.this.TreeMaker]],List[TreeMakers.this.TreeMaker],List[List[TreeMakers.this.TreeMaker]]]
-1 times = 0ms
-
-
-
-SpecializeTypes.this.global.AnnotationInfo => SpecializeTypes.this.global.Type
-
-SpecializeTypes.this.global.AnnotationInfo => SpecializeTypes.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.ModuleDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.ModuleDef,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[BoxUnbox.this.postProcessor.bTypes.coreBTypes.bTypes.ClassBType],(tools.nsc.backend.jvm.BTypes.InternalName, scala.collection.immutable.Set[tools.nsc.backend.jvm.BTypes.InternalName]),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[BoxUnbox.this.postProcessor.bTypes.coreBTypes.bTypes.ClassBType],(tools.nsc.backend.jvm.BTypes.InternalName, scala.collection.immutable.Set[tools.nsc.backend.jvm.BTypes.InternalName]),That]
-1 times = 0ms
-
-
-
-(=> Array[String]) => Array[scala.tools.asm.Label]
-
-(=> Array[String]) => Array[scala.tools.asm.Label]
-1 times = 0ms
-
-
-
-(=> Unit) => Parsers.this.global.Type
-
-(=> Unit) => Parsers.this.global.Type
-1 times = 0ms
-
-
-
-relativePath.type => ?{def split(x$1: ? >: Char('/')): ?}
-
-relativePath.type => ?{def split(x$1: ? >: Char('/')): ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DestructureTypes.this.global.Symbol],DestructureTypes.this.global.Type,List[DestructureTypes.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[DestructureTypes.this.global.Symbol],DestructureTypes.this.global.Type,List[DestructureTypes.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Tree],RefChecks.this.global.Tree,List[RefChecks.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Tree],RefChecks.this.global.Tree,List[RefChecks.this.global.Tree]]
-1 times = 0ms
-
-
-
-(=> List[Parsers.this.global.Tree]) => Parsers.this.global.Tree
-
-(=> List[Parsers.this.global.Tree]) => Parsers.this.global.Tree
-3 times = 0ms
-
-
-
-Array[Long] => ?{def sum: ?}
-
-Array[Long] => ?{def sum: ?}
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => Mixin.this.global.erasure.global.Tree
-
-(=> (Nothing, Nothing)) => Mixin.this.global.erasure.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Global.this.CompilationUnit],Global.this.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Global.this.CompilationUnit],Global.this.Tree,That]
-1 times = 0ms
-
-
-
-(=> Scanners.this.Offset) => ?{def -=: ?}
-
-(=> Scanners.this.Offset) => ?{def -=: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Array[Long]
-
-(=> (Nothing, Nothing)) => Array[Long]
-1 times = 0ms
-
-
-
-Unit => java.util.Properties
-
-Unit => java.util.Properties
-1 times = 0ms
-
-
-
-Option[CommonSubconditionElimination.this.ReusedCondTreeMaker] => ?{def head: ?}
-
-Option[CommonSubconditionElimination.this.ReusedCondTreeMaker] => ?{def head: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[NamesDefaults.this.global.Tree]],List[NamesDefaults.this.global.Tree],List[List[NamesDefaults.this.global.Tree]]]
-
-scala.collection.generic.CanBuildFrom[List[List[NamesDefaults.this.global.Tree]],List[NamesDefaults.this.global.Tree],List[List[NamesDefaults.this.global.Tree]]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.SubComponent],scala.tools.nsc.Phase,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.SubComponent],scala.tools.nsc.Phase,That]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.WHILEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.WHILEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-bc.internalName.type => ?{def ->: ?}
-
-bc.internalName.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Fields.this.global.Symbol
-
-((Nothing, Nothing)) => Fields.this.global.Symbol
-2 times = 0ms
-
-
-
-Array[String] => ?{def toVector: ?}
-
-Array[String] => ?{def toVector: ?}
-1 times = 0ms
-
-
-
-Int(16384) => scala.tools.nsc.typechecker.ContextMode
-
-Int(16384) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-(=> Typers.this.global.AnnotationInfo) => Typers.this.global.Type
-
-(=> Typers.this.global.AnnotationInfo) => Typers.this.global.Type
-3 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => SuperAccessors.this.global.analyzer.global.Symbol
-
-(=> (Nothing, Nothing)) => SuperAccessors.this.global.analyzer.global.Symbol
-1 times = 0ms
-
-
-
-java.util.Iterator[scala.tools.asm.tree.LocalVariableNode] => ?{def asScala: ?}
-
-java.util.Iterator[scala.tools.asm.tree.LocalVariableNode] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Typers.this.global.gen.global.Symbol
-
-((Nothing, Nothing)) => Typers.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-Array[Boolean] => Array[Int]
-
-Array[Boolean] => Array[Int]
-6 times = 0ms
-
-
-
-trace.type => ?{def reverse: ?}
-
-trace.type => ?{def reverse: ?}
-1 times = 0ms
-
-
-
-(=> (BTypesFromSymbols.this.global.Position, String)) => String
-
-(=> (BTypesFromSymbols.this.global.Position, String)) => String
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[CoreBTypesFromSymbols.this.bTypes.global.Symbol],CoreBTypesFromSymbols.this.bTypes.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[CoreBTypesFromSymbols.this.bTypes.global.Symbol],CoreBTypesFromSymbols.this.bTypes.global.Symbol,That]
-1 times = 0ms
-
-
-
-(=> TypeDiagnostics.this.global.Tree) => TypeDiagnostics.this.global.Type
-
-(=> TypeDiagnostics.this.global.Tree) => TypeDiagnostics.this.global.Type
-2 times = 0ms
-
-
-
-String('%-12s') => ?{def format: ?}
-
-String('%-12s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-oldOwner.type => ?{def ->: ?}
-
-oldOwner.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[java.nio.file.Path],scala.tools.nsc.classpath.ClassFileEntryImpl,That]
-
-scala.collection.generic.CanBuildFrom[Seq[java.nio.file.Path],scala.tools.nsc.classpath.ClassFileEntryImpl,That]
-1 times = 0ms
-
-
-
-String => ?{def toInt: ?}
-
-String => ?{def toInt: ?}
-7 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,scala.reflect.io.AbstractFile,List[scala.reflect.io.AbstractFile]]
-
-scala.collection.generic.CanBuildFrom[Nothing,scala.reflect.io.AbstractFile,List[scala.reflect.io.AbstractFile]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Type,List[SpecializeTypes.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Type,List[SpecializeTypes.this.global.Type]]
-2 times = 1ms
-
-
-
-Mixin.this.global.Select => ?{def ===: ?}
-
-Mixin.this.global.Select => ?{def ===: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Name],Option[String],List[Option[String]]]
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Name],Option[String],List[Option[String]]]
-1 times = 0ms
-
-
-
-TypeNode.this.type => ?{def typeName_=: ?}
-
-TypeNode.this.type => ?{def typeName_=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Solver.this.Clause],List[String],Array[List[String]]]
-
-scala.collection.generic.CanBuildFrom[Array[Solver.this.Clause],List[String],Array[List[String]]]
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[List[String]]
-
-scala.reflect.ClassTag[List[String]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Solver.this.Clause],List[String],Array[List[String]]]->scala.reflect.ClassTag[List[String]]
-
-
-
-
-
-x$9.type => ?{def ->: ?}
-
-x$9.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Symbol],MatchApproximation.this.global.Symbol,To1]
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Symbol],MatchApproximation.this.global.Symbol,To1]
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,CallGraph.this.postProcessor.bTypes.ClassInfo] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,CallGraph.this.postProcessor.bTypes.ClassInfo] => ?{def get: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => MatchTreeMaking.this.global.Symbol
-
-(=> (Nothing, Nothing)) => MatchTreeMaking.this.global.Symbol
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PatternTypers.this.global.Symbol],PatternTypers.this.global.TypeSkolem,That]
-
-scala.collection.generic.CanBuildFrom[List[PatternTypers.this.global.Symbol],PatternTypers.this.global.TypeSkolem,That]
-1 times = 0ms
-
-
-
-str.type => ?{def takeWhile: ?}
-
-str.type => ?{def takeWhile: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[PatternTypers.this.global.SubpatternsAttachment]
-
-scala.reflect.ClassTag[PatternTypers.this.global.SubpatternsAttachment]
-1 times = 1ms
-
-
-
-nestedDirs.type => ?{def map: ?}
-
-nestedDirs.type => ?{def map: ?}
-1 times = 3ms
-
-
-
-MatchApproximator.this.Substitution => ?{def >>=: ?}
-
-MatchApproximator.this.Substitution => ?{def >>=: ?}
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Extractors.this.global.TypeBounds
-
-(=> (Nothing, Nothing)) => Extractors.this.global.TypeBounds
-1 times = 0ms
-
-
-
-settings.YprofileEnabled.type => ?{def unary_!: ?}
-
-settings.YprofileEnabled.type => ?{def unary_!: ?}
-1 times = 0ms
-
-
-
-(=> TypeNode.this.type) => ?{def label_=: ?}
-
-(=> TypeNode.this.type) => ?{def label_=: ?}
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[Option[NamesDefaults.this.global.ValDef]]
-
-scala.reflect.ClassTag[Option[NamesDefaults.this.global.ValDef]]
-1 times = 1ms
-
-
-
-Int(0) => ?{def until: ?}
-
-Int(0) => ?{def until: ?}
-25 times = 17ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Any],GenUtils.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[Seq[Any],GenUtils.this.global.Tree,That]
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.ClassfileAnnotArg],Reshape.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.ClassfileAnnotArg],Reshape.this.global.Tree,That]
-1 times = 1ms
-
-
-
-labelMap.type => ?{def asJava: ?}
-
-labelMap.type => ?{def asJava: ?}
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[Erasure.this.global.QualTypeSymAttachment]
-
-scala.reflect.ClassTag[Erasure.this.global.QualTypeSymAttachment]
-3 times = 3ms
-
-
-
-String => ?{def takeWhile: ?}
-
-String => ?{def takeWhile: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.FLOAT.type),That]
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.FLOAT.type),That]
-1 times = 0ms
-
-
-
-String => ?{def split(x$1: ? >: Char('.')): Array[String]}
-
-String => ?{def split(x$1: ? >: Char('.')): Array[String]}
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.ShortTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.ShortTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-(=> Unit) => BCodeBodyBuilder.this.bTypes.BType
-
-(=> Unit) => BCodeBodyBuilder.this.bTypes.BType
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[JavaParsers.this.global.TypeDef],JavaParsers.this.global.TypeDef,List[JavaParsers.this.global.TypeDef]]
-
-scala.collection.generic.CanBuildFrom[List[JavaParsers.this.global.TypeDef],JavaParsers.this.global.TypeDef,List[JavaParsers.this.global.TypeDef]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],ClassfileParser.this.symbolTable.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Int],ClassfileParser.this.symbolTable.Type,That]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Map[scala.tools.asm.tree.InvokeDynamicInsnNode,CallGraph.this.ClosureInstantiation] => ?{def +=: ?}
-
-scala.collection.immutable.Map[scala.tools.asm.tree.InvokeDynamicInsnNode,CallGraph.this.ClosureInstantiation] => ?{def +=: ?}
-1 times = 1ms
-
-
-
-Double => Long
-
-Double => Long
-20 times = 1ms
-
-
-
-String('This for %s, reified as This') => ?{def format: ?}
-
-String('This for %s, reified as This') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Array[Throwable] => ?{def foreach: ?}
-
-Array[Throwable] => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Symbol],TypeDiagnostics.this.global.Type,List[TypeDiagnostics.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Symbol],TypeDiagnostics.this.global.Type,List[TypeDiagnostics.this.global.Type]]
-1 times = 0ms
-
-
-
-MatchTranslation.this.CODE.SelectStart => MatchTranslation.this.global.Tree
-
-MatchTranslation.this.CODE.SelectStart => MatchTranslation.this.global.Tree
-3 times = 0ms
-
-
-
-List[ContextErrors.this.global.TypeBounds] => scala.collection.IterableLike[El2,Repr2]
-
-List[ContextErrors.this.global.TypeBounds] => scala.collection.IterableLike[El2,Repr2]
-1 times = 1ms
-
-
-
-Unit => Unapplies.this.global.Type
-
-Unit => Unapplies.this.global.Type
-4 times = 0ms
-
-
-
-String('java.lang.') => ?{def ->: ?}
-
-String('java.lang.') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-clauses.type => ?{def :+: ?}
-
-clauses.type => ?{def :+: ?}
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[Typers.this.global.Symbol] => ?{def ++=: ?}
-
-scala.collection.immutable.Set[Typers.this.global.Symbol] => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Typers.this.MacroExpansionAttachment]
-
-scala.reflect.ClassTag[Typers.this.MacroExpansionAttachment]
-2 times = 1ms
-
-
-
-Unit => Char
-
-Unit => Char
-3 times = 0ms
-
-
-
-Seq[String] => scala.collection.GenTraversableOnce[B]
-
-Seq[String] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-String('Compile failed with %d error%s; see the compiler error output for details.') => ?{def format: ?}
-
-String('Compile failed with %d error%s; see the compiler error output for details.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.ValDef],Typers.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.ValDef],Typers.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Unit, Unit)) => LambdaLift.this.global.Symbol
-
-(=> (Nothing, Unit, Unit)) => LambdaLift.this.global.Symbol
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.VOIDkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.VOIDkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[T],T,List[T]]
-
-scala.collection.generic.CanBuildFrom[List[T],T,List[T]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,ClosureOptimizer.this.Local,List[ClosureOptimizer.this.Local]]
-
-scala.collection.generic.CanBuildFrom[Nothing,ClosureOptimizer.this.Local,List[ClosureOptimizer.this.Local]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Quasiquotes.this.c.universe.Tree],(String, Quasiquotes.this.c.universe.Position),That]
-
-scala.collection.generic.CanBuildFrom[List[Quasiquotes.this.c.universe.Tree],(String, Quasiquotes.this.c.universe.Position),That]
-1 times = 3ms
-
-
-
-String('%s has no name') => ?{def format: ?}
-
-String('%s has no name') => ?{def format: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.NATIVEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.NATIVEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[InlineSourceMatcher.this.Entry] => ?{def ::=: ?}
-
-List[InlineSourceMatcher.this.Entry] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => StringBuilder
-
-((Nothing, Nothing, Nothing)) => StringBuilder
-1 times = 0ms
-
-
-
-(=> Long) => Parsers.this.Offset
-
-(=> Long) => Parsers.this.Offset
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Tree],(BCodeBodyBuilder.this.global.Tree, BCodeBodyBuilder.this.bTypes.BType),That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Tree],(BCodeBodyBuilder.this.global.Tree, BCodeBodyBuilder.this.bTypes.BType),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DependencyGraph.this.Edge],String,That]
-
-scala.collection.generic.CanBuildFrom[List[DependencyGraph.this.Edge],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[Int],Char,Stream[Char]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[Int],Char,Stream[Char]]
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.TypeEnv],sym.TypeOfClonedSymbol,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.TypeEnv],sym.TypeOfClonedSymbol,That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Delambdafy.this.global.mixer.NeedStaticImpl.type]
-
-scala.reflect.ClassTag[Delambdafy.this.global.mixer.NeedStaticImpl.type]
-1 times = 1ms
-
-
-
-scala.tools.asm.tree.analysis.Frame[scala.tools.asm.tree.analysis.SourceValue] => ?{def stackTop: ?}
-
-scala.tools.asm.tree.analysis.Frame[scala.tools.asm.tree.analysis.SourceValue] => ?{def stackTop: ?}
-7 times = 3ms
-
-
-
-scala.collection.immutable.Set[BoxUnbox.this.BoxConsumer] => ?{def +=: ?}
-
-scala.collection.immutable.Set[BoxUnbox.this.BoxConsumer] => ?{def +=: ?}
-2 times = 0ms
-
-
-
-List[TreeAndTypeAnalysis.this.global.Symbol] => TreeAndTypeAnalysis.this.global.Type
-
-List[TreeAndTypeAnalysis.this.global.Symbol] => TreeAndTypeAnalysis.this.global.Type
-1 times = 0ms
-
-
-
-Char('*') => CharSequence
-
-Char('*') => CharSequence
-1 times = 0ms
-
-
-
-Some[(AnalyzerPlugins.this.MacroPlugin, T)] => scala.collection.GenTraversableOnce[?]
-
-Some[(AnalyzerPlugins.this.MacroPlugin, T)] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-Unapplies.this.CODE.SelectStart => Unapplies.this.global.Tree
-
-Unapplies.this.CODE.SelectStart => Unapplies.this.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Errors.this.global.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Errors.this.global.Symbol],String,That]
-1 times = 8ms
-
-
-
-scala.reflect.io.Path => tools.nsc.io.File
-
-scala.reflect.io.Path => tools.nsc.io.File
-1 times = 0ms
-
-
-
-String('Creating new `this` during tailcalls\n method: %s\n current class: %s') => ?{def format: ?}
-
-String('Creating new `this` during tailcalls
- method: %s
- current class: %s') => ?{def format: ?}
-1 times = 2ms
-
-
-
-Option[BCodeSkelBuilder.this.global.AnnotationInfo] => scala.collection.GenTraversableOnce[?]
-
-Option[BCodeSkelBuilder.this.global.AnnotationInfo] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-String('verdict: inlined as %s') => ?{def format: ?}
-
-String('verdict: inlined as %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.ValDef],Parsers.this.global.ValDef,List[Parsers.this.global.ValDef]]
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.ValDef],Parsers.this.global.ValDef,List[Parsers.this.global.ValDef]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => SymbolTables.this.global.Tree
-
-((Nothing, Nothing, Nothing)) => SymbolTables.this.global.Tree
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => TreeGen.this.global.Tree
-
-(=> (Nothing, Nothing)) => TreeGen.this.global.Tree
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => TreeDSL.this.global.gen.global.Symbol
-
-(=> (Nothing, Nothing)) => TreeDSL.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-List[Equals] => scala.collection.GenTraversableOnce[B]
-
-List[Equals] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-Validators.this.global.AnnotationInfo => Validators.this.global.Type
-
-Validators.this.global.AnnotationInfo => Validators.this.global.Type
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: scala.tools.nsc.backend.jvm.analysis.NullnessValue]
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: scala.tools.nsc.backend.jvm.analysis.NullnessValue]
-2 times = 0ms
-
-
-
-Long => Scanners.this.Offset
-
-Long => Scanners.this.Offset
-11 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[CoreBTypesFromSymbols.this.bTypes.global.Symbol,CoreBTypesFromSymbols.this.bTypes.global.TermSymbol],(CoreBTypesFromSymbols.this.bTypes.global.TermSymbol, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType),Map[CoreBTypesFromSymbols.this.bTypes.global.Symbol,CoreBTypesFromSymbols.this.bTypes.PrimitiveBType]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[CoreBTypesFromSymbols.this.bTypes.global.Symbol,CoreBTypesFromSymbols.this.bTypes.global.TermSymbol],(CoreBTypesFromSymbols.this.bTypes.global.TermSymbol, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType),Map[CoreBTypesFromSymbols.this.bTypes.global.Symbol,CoreBTypesFromSymbols.this.bTypes.PrimitiveBType]]
-1 times = 0ms
-
-
-
-java.util.Iterator[scala.tools.asm.tree.MethodNode] => ?{def asScala: ?}
-
-java.util.Iterator[scala.tools.asm.tree.MethodNode] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-String('[Connected to compilation daemon at port %d]') => ?{def format: ?}
-
-String('[Connected to compilation daemon at port %d]') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,CallGraph.this.postProcessor.bTypes.ClassInfo] => ?{def orThrow: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,CallGraph.this.postProcessor.bTypes.ClassInfo] => ?{def orThrow: ?}
-3 times = 2ms
-
-
-
-List[(Typers.this.global.Type, Typers.this.global.Symbol)] => scala.collection.GenTraversableOnce[B]
-
-List[(Typers.this.global.Type, Typers.this.global.Symbol)] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[MatchAnalyzer.this.Test]],MatchAnalyzer.this.Not,That]
-
-scala.collection.generic.CanBuildFrom[List[List[MatchAnalyzer.this.Test]],MatchAnalyzer.this.Not,That]
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.LongTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.LongTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-String(' %s[%s]') => ?{def format: ?}
-
-String(' %s[%s]') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Parsers.this.Offset
-
-((Nothing, Nothing)) => Parsers.this.Offset
-35 times = 3ms
-
-
-
-(=> List[(scala.tools.nsc.Phase, scala.tools.nsc.typechecker.TreeCheckers.SymbolTracker.PhaseMap)]) => ?{def ::=: ?}
-
-(=> List[(scala.tools.nsc.Phase, scala.tools.nsc.typechecker.TreeCheckers.SymbolTracker.PhaseMap)]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.CaseDef],MatchOptimization.this.global.CaseDef,List[MatchOptimization.this.global.CaseDef]]
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.CaseDef],MatchOptimization.this.global.CaseDef,List[MatchOptimization.this.global.CaseDef]]
-3 times = 1ms
-
-
-
-tree.name.type => ?{def setterName: ?}
-
-tree.name.type => ?{def setterName: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Symbol],MatchApproximation.this.global.gen.global.RefTree,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Symbol],MatchApproximation.this.global.gen.global.RefTree,That]
-1 times = 0ms
-
-
-
-invokeArgTypes.type => ?{def indices: ?}
-
-invokeArgTypes.type => ?{def indices: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => DestructureTypes.this.global.Type
-
-(=> (Nothing, Nothing)) => DestructureTypes.this.global.Type
-11 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.BYTE.type),That]
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.BYTE.type),That]
-1 times = 0ms
-
-
-
-(=> Long) => Scanners.this.Offset
-
-(=> Long) => Scanners.this.Offset
-11 times = 0ms
-
-
-
-packageDirName.type => ?{def split(x$1: ? >: Char('/')): ?}
-
-packageDirName.type => ?{def split(x$1: ? >: Char('/')): ?}
-1 times = 0ms
-
-
-
-Null <:< String
-
-Null <:< String
-2 times = 0ms
-
-
-
-List[scala.tools.nsc.SubComponent] => scala.collection.GenTraversableOnce[scala.tools.nsc.SubComponent]
-
-List[scala.tools.nsc.SubComponent] => scala.collection.GenTraversableOnce[scala.tools.nsc.SubComponent]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],MatchTranslation.this.global.Tree,List[MatchTranslation.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Int],MatchTranslation.this.global.Tree,List[MatchTranslation.this.global.Tree]]
-1 times = 0ms
-
-
-
-List[Namers.this.global.Symbol] => Namers.this.global.Type
-
-List[Namers.this.global.Symbol] => Namers.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DependencyGraph.this.Node],List[scala.tools.nsc.SubComponent],That]
-
-scala.collection.generic.CanBuildFrom[List[DependencyGraph.this.Node],List[scala.tools.nsc.SubComponent],That]
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.OptimizerWarning,(scala.tools.asm.tree.ClassNode, Option[String])] => ?{def withFilter: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.OptimizerWarning,(scala.tools.asm.tree.ClassNode, Option[String])] => ?{def withFilter: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Class[_]]
-
-scala.reflect.ClassTag[Class[_]]
-3 times = 4ms
-
-
-
-((Nothing, Nothing, Nothing)) => MarkupParsers.this.Offset
-
-((Nothing, Nothing, Nothing)) => MarkupParsers.this.Offset
-9 times = 3ms
-
-
-
-tree.type => ?{def ->: ?}
-
-tree.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String(')') => ?{def ::: ?}
-
-String(')') => ?{def ::: ?}
-11 times = 3ms
-
-
-
-Iterator[Set[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]] => ?{def flatten: ?}
-
-Iterator[Set[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]] => ?{def flatten: ?}
-1 times = 2ms
-
-
-
-Iterator[Set[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]] => ?{def flatten: ?}->Set[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest] => scala.collection.TraversableOnce[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[() => String],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[() => String],String,That]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[Reporting.this.Symbol] => ?{def +=: ?}
-
-scala.collection.immutable.Set[Reporting.this.Symbol] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, Array[Byte])],((Int, Array[Byte]), Int),That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, Array[Byte])],((Int, Array[Byte]), Int),That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Long
-
-(=> (Nothing, Nothing, Nothing)) => Long
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeMakers.this.TreeMaker],TreeMakers.this.TreeMaker,List[TreeMakers.this.TreeMaker]]
-
-scala.collection.generic.CanBuildFrom[List[TreeMakers.this.TreeMaker],TreeMakers.this.TreeMaker,List[TreeMakers.this.TreeMaker]]
-1 times = 0ms
-
-
-
-String('UnprefixedAttribute') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('UnprefixedAttribute') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-String('nested free ref: %s') => ?{def format: ?}
-
-String('nested free ref: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.NothingTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.NothingTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[java.net.URL],String,That]
-
-scala.collection.generic.CanBuildFrom[Seq[java.net.URL],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],CopyProp.this.ProducedValue,scala.collection.TraversableOnce[CopyProp.this.ProducedValue]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],CopyProp.this.ProducedValue,scala.collection.TraversableOnce[CopyProp.this.ProducedValue]]
-2 times = 1ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.ClassNotFound,scala.tools.asm.tree.ClassNode] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.ClassNotFound,scala.tools.asm.tree.ClassNode] => ?{def get: ?}
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[Erasure.this.TypeRefAttachment]
-
-scala.reflect.ClassTag[Erasure.this.TypeRefAttachment]
-2 times = 2ms
-
-
-
-((Nothing, Nothing, Nothing)) => Typers.this.global.Symbol
-
-((Nothing, Nothing, Nothing)) => Typers.this.global.Symbol
-2 times = 0ms
-
-
-
-Validators.this.global.Scope => Validators.this.global.Type
-
-Validators.this.global.Scope => Validators.this.global.Type
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.CaseDef],List[MatchTranslator.this.TreeMaker],List[List[MatchTranslator.this.TreeMaker]]]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.CaseDef],List[MatchTranslator.this.TreeMaker],List[List[MatchTranslator.this.TreeMaker]]]
-1 times = 0ms
-
-
-
-(=> Unit) => Array[Char]
-
-(=> Unit) => Array[Char]
-5 times = 0ms
-
-
-
-nameAndType.type => ?{def span: ?}
-
-nameAndType.type => ?{def span: ?}
-1 times = 0ms
-
-
-
-String('name expected, but char \'%s\' cannot start a name') => ?{def format: ?}
-
-String('name expected, but char '%s' cannot start a name') => ?{def format: ?}
-1 times = 0ms
-
-
-
-String('([^\'])(_root_\\.)?scala\\.collection\\.immutable\\.') => ?{def r: ?}
-
-String('([^'])(_root_\.)?scala\.collection\.immutable\.') => ?{def r: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Int
-
-(=> (Nothing, Nothing, Nothing)) => Int
-7 times = 0ms
-
-
-
-List[Typers.this.global.Tree] => scala.collection.GenTraversableOnce[B]
-
-List[Typers.this.global.Tree] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-str.type => ?{def drop: ?}
-
-str.type => ?{def drop: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Traversable[Global.this.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[Traversable[Global.this.Symbol],String,That]
-1 times = 0ms
-
-
-
-args.type => ?{def drop: ?}
-
-args.type => ?{def drop: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => MatchAnalyzer.this.Var
-
-((Nothing, Nothing, Nothing)) => MatchAnalyzer.this.Var
-1 times = 0ms
-
-
-
-List[Fields.this.global.Symbol] => Fields.this.global.Type
-
-List[Fields.this.global.Symbol] => Fields.this.global.Type
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.SerializedLambda]
-
-scala.reflect.ClassTag[java.lang.invoke.SerializedLambda]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[org.apache.tools.ant.types.Commandline.Argument],String,Seq[String]]
-
-scala.collection.generic.CanBuildFrom[Seq[org.apache.tools.ant.types.Commandline.Argument],String,Seq[String]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Any]],List[Any],That]
-
-scala.collection.generic.CanBuildFrom[List[List[Any]],List[Any],That]
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.OptimizerWarning,(scala.tools.asm.tree.FieldNode, tools.nsc.backend.jvm.BTypes.InternalName)] => ?{def withFilter: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.OptimizerWarning,(scala.tools.asm.tree.FieldNode, tools.nsc.backend.jvm.BTypes.InternalName)] => ?{def withFilter: ?}
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => CharSequence
-
-(=> (Nothing, Nothing, Nothing)) => CharSequence
-2 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.FLOATkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.FLOATkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[Duplicators.this.global.Symbol] => Duplicators.this.global.Type
-
-List[Duplicators.this.global.Symbol] => Duplicators.this.global.Type
-8 times = 0ms
-
-
-
-scala.reflect.ClassTag[Typers.this.global.CompoundTypeTreeOriginalAttachment]
-
-scala.reflect.ClassTag[Typers.this.global.CompoundTypeTreeOriginalAttachment]
-4 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[BCodeHelpers.this.global.Symbol],BCodeHelpers.this.global.Symbol#NameType,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[BCodeHelpers.this.global.Symbol],BCodeHelpers.this.global.Symbol#NameType,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SyntheticMethods.this.global.TermSymbol, () => SyntheticMethods.this.global.Tree)],(SyntheticMethods.this.global.TermSymbol, () => SyntheticMethods.this.global.Tree),That]
-
-scala.collection.generic.CanBuildFrom[List[(SyntheticMethods.this.global.TermSymbol, () => SyntheticMethods.this.global.Tree)],(SyntheticMethods.this.global.TermSymbol, () => SyntheticMethods.this.global.Tree),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.ValDef],ExtensionMethods.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.ValDef],ExtensionMethods.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-scala.languageFeature.implicitConversions
-
-scala.languageFeature.implicitConversions
-24 times = 5ms
-
-
-
-Array[String] => ?{def withFilter: ?}
-
-Array[String] => ?{def withFilter: ?}
-2 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],java.io.File,List[java.io.File]]
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],java.io.File,List[java.io.File]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Mixin.this.global.erasure.global.Tree
-
-((Nothing, Nothing)) => Mixin.this.global.erasure.global.Tree
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.FORSOMEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.FORSOMEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.AbsTypeError],Typers.this.AbsTypeError,List[Typers.this.AbsTypeError]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.AbsTypeError],Typers.this.AbsTypeError,List[Typers.this.AbsTypeError]]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],scala.tools.nsc.ClassPathMemoryConsumptionTester.MainRetainsGlobal,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],scala.tools.nsc.ClassPathMemoryConsumptionTester.MainRetainsGlobal,That]
-1 times = 3ms
-
-
-
-ex.type => ?{def DOT: ?}
-
-ex.type => ?{def DOT: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Mixin.this.global.Tree],Mixin.this.global.Tree,List[Mixin.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Mixin.this.global.Tree],Mixin.this.global.Tree,List[Mixin.this.global.Tree]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SyntheticMethods.this.global.Symbol],SyntheticMethods.this.global.Assign,That]
-
-scala.collection.generic.CanBuildFrom[List[SyntheticMethods.this.global.Symbol],SyntheticMethods.this.global.Assign,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Namers.this.global.Symbol
-
-(=> (Nothing, Nothing)) => Namers.this.global.Symbol
-3 times = 0ms
-
-
-
-(=> (Nothing, Unit)) => Int
-
-(=> (Nothing, Unit)) => Int
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.InlineAnnotatedAttachment]
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.InlineAnnotatedAttachment]
-1 times = 1ms
-
-
-
-scala.collection.immutable.Set[Erasure.this.global.Symbol] => ?{def +=: ?}
-
-scala.collection.immutable.Set[Erasure.this.global.Symbol] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[String],(scala.tools.nsc.util.ClassPath, scala.tools.nsc.util.ClassPath),That]
-
-scala.collection.generic.CanBuildFrom[Seq[String],(scala.tools.nsc.util.ClassPath, scala.tools.nsc.util.ClassPath),That]
-1 times = 1ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,Boolean] => ?{def orThrow: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,Boolean] => ?{def orThrow: ?}
-17 times = 10ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],DocComments.this.TermName,That]
-
-scala.collection.generic.CanBuildFrom[List[String],DocComments.this.TermName,That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[AccessorSynthesis.this.global.TermSymbol]
-
-scala.reflect.ClassTag[AccessorSynthesis.this.global.TermSymbol]
-1 times = 0ms
-
-
-
-String('.*\\$anonfun\\$.*\\$\\d+\\$adapted') => ?{def r: ?}
-
-String('.*\$anonfun\$.*\$\d+\$adapted') => ?{def r: ?}
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Map[BCodeSkelBuilder.this.global.Symbol,scala.tools.asm.Label]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Map[BCodeSkelBuilder.this.global.Symbol,scala.tools.asm.Label]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => List[Typers.this.global.Tree]
-
-(=> (Nothing, Nothing)) => List[Typers.this.global.Tree]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Char
-
-((Nothing, Nothing, Nothing)) => Char
-6 times = 0ms
-
-
-
-files.type => ?{def foreach: ?}
-
-files.type => ?{def foreach: ?}
-1 times = 2ms
-
-
-
-(=> (Nothing, Nothing)) => TreeGen.this.global.Symbol
-
-(=> (Nothing, Nothing)) => TreeGen.this.global.Symbol
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Symbol#NameType,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Symbol#NameType,That]
-1 times = 0ms
-
-
-
-(=> Infer.this.global.Scope) => Infer.this.global.Type
-
-(=> Infer.this.global.Scope) => Infer.this.global.Type
-3 times = 0ms
-
-
-
-(=> Array[Boolean]) => Array[AnyRef]
-
-(=> Array[Boolean]) => Array[AnyRef]
-3 times = 0ms
-
-
-
-Scanners.this.global.nme.LARROWkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.LARROWkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(Int, Scanners.this.global.Name) <:< (T, U)
-
-(Int, Scanners.this.global.Name) <:< (T, U)
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.tools.nsc.Phase]
-
-scala.reflect.ClassTag[scala.tools.nsc.Phase]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SymbolTables.this.global.AnnotationInfo],SymbolTables.this.reifier.global.Tree,List[SymbolTables.this.reifier.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[SymbolTables.this.global.AnnotationInfo],SymbolTables.this.reifier.global.Tree,List[SymbolTables.this.reifier.global.Tree]]
-1 times = 1ms
-
-
-
-String('Filling in: %s (%s)') => ?{def format: ?}
-
-String('Filling in: %s (%s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-String('%(?:(\\d+)\\$)?([-#+ 0,(\\<]+)?(\\d+)?(\\.\\d+)?([tT]?[%a-zA-Z])?') => ?{def r: ?}
-
-String('%(?:(\d+)\$)?([-#+ 0,(\<]+)?(\d+)?(\.\d+)?([tT]?[%a-zA-Z])?') => ?{def r: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[java.lang.invoke.MethodHandle]
-
-scala.reflect.ClassTag[java.lang.invoke.MethodHandle]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[Int],PatternExpansion.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[Int],PatternExpansion.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-List[scala.tools.nsc.typechecker.TypersTracking.typingStack.Frame] => ?{def ::=: ?}
-
-List[scala.tools.nsc.typechecker.TypersTracking.typingStack.Frame] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> Parsers.this.global.Tree) => Parsers.this.global.Apply
-
-(=> Parsers.this.global.Tree) => Parsers.this.global.Apply
-1 times = 0ms
-
-
-
-scala.math.Ordering[Int]
-
-scala.math.Ordering[Int]
-13 times = 11ms
-
-
-
-(=> (Nothing, Nothing)) => java.io.FileDescriptor
-
-(=> (Nothing, Nothing)) => java.io.FileDescriptor
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.tools.nsc.reporters.Reporter]
-
-scala.reflect.ClassTag[scala.tools.nsc.reporters.Reporter]
-1 times = 1ms
-
-
-
-java.util.Set[scala.tools.asm.tree.AbstractInsnNode] => ?{def asScala: ?}
-
-java.util.Set[scala.tools.asm.tree.AbstractInsnNode] => ?{def asScala: ?}
-2 times = 0ms
-
-
-
-Long => String
-
-Long => String
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.TermSymbol,List[LambdaLift.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.TermSymbol,List[LambdaLift.this.global.Symbol]]
-1 times = 0ms
-
-
-
-Fields.this.global.Scope => Fields.this.global.Type
-
-Fields.this.global.Scope => Fields.this.global.Type
-1 times = 1ms
-
-
-
-String('%s != %s') => ?{def format: ?}
-
-String('%s != %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-name.type => ?{def +: ?}
-
-name.type => ?{def +: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Ident],RefChecks.this.global.Tree with Serializable,That]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Ident],RefChecks.this.global.Tree with Serializable,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeCheckers.this.global.MemberDef],(TreeCheckers.this.global.MemberDef, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[TreeCheckers.this.global.MemberDef],(TreeCheckers.this.global.MemberDef, Int),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.ValDef,That]
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.ValDef,That]
-1 times = 0ms
-
-
-
-List[List[MatchOptimizer.this.Tree]] => scala.collection.GenTraversableOnce[B]
-
-List[List[MatchOptimizer.this.Tree]] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Mixin.this.NeedStaticImpl.type]
-
-scala.reflect.ClassTag[Mixin.this.NeedStaticImpl.type]
-2 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[scala.tools.nsc.ClassPathMemoryConsumptionTester.MainRetainsGlobal],Boolean,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[scala.tools.nsc.ClassPathMemoryConsumptionTester.MainRetainsGlobal],Boolean,That]
-1 times = 1ms
-
-
-
-(=> Set[Reifiers.this.global.TermName]) => ?{def +=: ?}
-
-(=> Set[Reifiers.this.global.TermName]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-Int => ?{def *=: ?}
-
-Int => ?{def *=: ?}
-1 times = 0ms
-
-
-
-String('%s%s references %s %s.') => ?{def format: ?}
-
-String('%s%s references %s %s.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-x$10.type => ?{def filterNot: ?}
-
-x$10.type => ?{def filterNot: ?}
-1 times = 0ms
-
-
-
-t.type => ?{def +: ?}
-
-t.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.ast.parser.BracePair],String,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.ast.parser.BracePair],String,That]
-1 times = 0ms
-
-
-
-dname.type => ?{def getterName: ?}
-
-dname.type => ?{def getterName: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Int]
-
-scala.reflect.ClassTag[Int]
-5 times = 5ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Symbol],(MatchApproximation.this.global.Symbol, MatchApproximation.this.global.Tree),That]
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Symbol],(MatchApproximation.this.global.Symbol, MatchApproximation.this.global.Tree),That]
-1 times = 0ms
-
-
-
-(Reshape.this.global.Symbol, Reshape.this.global.ValOrDefDef) <:< (T, U)
-
-(Reshape.this.global.Symbol, Reshape.this.global.ValOrDefDef) <:< (T, U)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[java.net.URL],java.net.URL,That]
-
-scala.collection.generic.CanBuildFrom[Seq[java.net.URL],java.net.URL,That]
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.DoubleTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.DoubleTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-String('trimmed %s inlineable free defs from its symbol table: %s') => ?{def format: ?}
-
-String('trimmed %s inlineable free defs from its symbol table: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-String('candidate implicit %s is shadowed by %s') => ?{def format: ?}
-
-String('candidate implicit %s is shadowed by %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> scala.collection.Set[Delambdafy.this.global.Symbol]) => ?{def +=: ?}
-
-(=> scala.collection.Set[Delambdafy.this.global.Symbol]) => ?{def +=: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximator.this.TreeMaker],MatchApproximator.this.Prop,Iterable[MatchApproximator.this.Prop]]
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximator.this.TreeMaker],MatchApproximator.this.Prop,Iterable[MatchApproximator.this.Prop]]
-1 times = 0ms
-
-
-
-List[FormatInterpolator.this.c.universe.treeInfo.global.Tree] => scala.collection.GenTraversableOnce[B]
-
-List[FormatInterpolator.this.c.universe.treeInfo.global.Tree] => scala.collection.GenTraversableOnce[B]
-1 times = 1ms
-
-
-
-Seq[org.apache.tools.ant.types.Commandline.Argument] => ?{def ++=: ?}
-
-Seq[org.apache.tools.ant.types.Commandline.Argument] => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MixinOverrideError$3],String,That]
-
-scala.collection.generic.CanBuildFrom[List[MixinOverrideError$3],String,That]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.IFkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.IFkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.Type],Namers.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.Type],Namers.this.global.Type,That]
-1 times = 0ms
-
-
-
-(=> Unit) => scala.tools.asm.tree.AbstractInsnNode
-
-(=> Unit) => scala.tools.asm.tree.AbstractInsnNode
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.ConstructorSuffix.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.ConstructorSuffix.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],T,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],T,That]
-1 times = 0ms
-
-
-
-List[Checkable.this.global.Type] => scala.collection.IterableLike[El2,Repr2]
-
-List[Checkable.this.global.Type] => scala.collection.IterableLike[El2,Repr2]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.FINALkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.FINALkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String => ?{def ->: ?}
-
-String => ?{def ->: ?}
-3 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Type],BTypesFromSymbols.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Type],BTypesFromSymbols.this.global.Type,That]
-1 times = 1ms
-
-
-
-CleanUp.this.global.gen.global.RefTree => ?{def APPLY: ?}
-
-CleanUp.this.global.gen.global.RefTree => ?{def APPLY: ?}
-9 times = 2ms
-
-
-
-(=> (Nothing, Nothing)) => BCodeBodyBuilder.this.global.scalaPrimitives.global.Symbol
-
-(=> (Nothing, Nothing)) => BCodeBodyBuilder.this.global.scalaPrimitives.global.Symbol
-1 times = 0ms
-
-
-
-String => scala.reflect.io.File
-
-String => scala.reflect.io.File
-14 times = 5ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.CharClass.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.CharClass.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExplicitOuter.this.global.Symbol],String,Any]
-
-scala.collection.generic.CanBuildFrom[List[ExplicitOuter.this.global.Symbol],String,Any]
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.THROWkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.THROWkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Duplicators.this.global.AnnotationInfo => Duplicators.this.global.Type
-
-Duplicators.this.global.AnnotationInfo => Duplicators.this.global.Type
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],SymbolTables.this.global.ValDef,scala.collection.TraversableOnce[SymbolTables.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],SymbolTables.this.global.ValDef,scala.collection.TraversableOnce[SymbolTables.this.global.Tree]]
-1 times = 15ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[Option[Infer.this.global.Type]],Infer.this.global.Type,Iterable[Infer.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[Iterable[Option[Infer.this.global.Type]],Infer.this.global.Type,Iterable[Infer.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Any]],Int,Seq[Int]]
-
-scala.collection.generic.CanBuildFrom[List[List[Any]],Int,Seq[Int]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[String],Int,That]
-1 times = 0ms
-
-
-
-Array[AnyRef] => ?{def foreach: ?}
-
-Array[AnyRef] => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-formatStr.type => ?{def format: ?}
-
-formatStr.type => ?{def format: ?}
-1 times = 0ms
-
-
-
-jvmargs.type => ?{def isEmpty: ?}
-
-jvmargs.type => ?{def isEmpty: ?}
-1 times = 1ms
-
-
-
-String('compiler version') => ?{def ->: ?}
-
-String('compiler version') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]],MatchAnalyzer.this.CounterExample,That]
-
-scala.collection.generic.CanBuildFrom[List[Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]],MatchAnalyzer.this.CounterExample,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,PrefixSetting.this.T]
-
-scala.collection.generic.CanBuildFrom[List[String],String,PrefixSetting.this.T]
-1 times = 0ms
-
-
-
-(=> List[TypeDiagnostics.this.global.Symbol]) => TypeDiagnostics.this.global.Type
-
-(=> List[TypeDiagnostics.this.global.Symbol]) => TypeDiagnostics.this.global.Type
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Enclosures.this.universe.analyzer.OpenImplicit],Enclosures.this.ImplicitCandidate,List[Enclosures.this.ImplicitCandidate]]
-
-scala.collection.generic.CanBuildFrom[List[Enclosures.this.universe.analyzer.OpenImplicit],Enclosures.this.ImplicitCandidate,List[Enclosures.this.ImplicitCandidate]]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[global.analyzer.Context],global.analyzer.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[global.analyzer.Context],global.analyzer.global.Tree,That]
-1 times = 5ms
-
-
-
-(=> Flatten.this.global.Scope) => Flatten.this.global.Type
-
-(=> Flatten.this.global.Scope) => Flatten.this.global.Type
-1 times = 0ms
-
-
-
-(=> String) => Scanners.this.Offset
-
-(=> String) => Scanners.this.Offset
-4 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.awt.Component
-
-((Nothing, Nothing)) => java.awt.Component
-3 times = 0ms
-
-
-
-Unit => FormatInterpolator.this.c.universe.FlagSet
-
-Unit => FormatInterpolator.this.c.universe.FlagSet
-1 times = 0ms
-
-
-
-Iterator[String] => ?{def mkLines: ?}
-
-Iterator[String] => ?{def mkLines: ?}
-1 times = 0ms
-
-
-
-Array[AnyRef] => ?{def take: ?}
-
-Array[AnyRef] => ?{def take: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => SuperAccessors.this.global.analyzer.global.Symbol
-
-((Nothing, Nothing)) => SuperAccessors.this.global.analyzer.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[CompilerCommand.this.settings.Setting],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[CompilerCommand.this.settings.Setting],Int,That]
-1 times = 1ms
-
-
-
-((Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: V]
-
-((Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: V]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Class[_]],scala.tools.nsc.plugins.Plugin,List[scala.tools.nsc.plugins.Plugin]]
-
-scala.collection.generic.CanBuildFrom[List[Class[_]],scala.tools.nsc.plugins.Plugin,List[scala.tools.nsc.plugins.Plugin]]
-1 times = 0ms
-
-
-
-String('Elem') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-
-String('Elem') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-1 times = 0ms
-
-
-
-Array[Int] => Array[AnyRef]
-
-Array[Int] => Array[AnyRef]
-3 times = 0ms
-
-
-
-((Nothing, Any => Nothing)) => String
-
-((Nothing, Any => Nothing)) => String
-2 times = 0ms
-
-
-
-Array[Float] => Array[CNF.this.Clause]
-
-Array[Float] => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ScalaLogic.this.global.Type],TreesAndTypesDomain.this.Sym,That]
-
-scala.collection.generic.CanBuildFrom[List[ScalaLogic.this.global.Type],TreesAndTypesDomain.this.Sym,That]
-1 times = 0ms
-
-
-
-(=> Array[Long]) => Array[CNF.this.Clause]
-
-(=> Array[Long]) => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Symbol],Int,scala.collection.TraversableOnce[Int]]
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Symbol],Int,scala.collection.TraversableOnce[Int]]
-3 times = 1ms
-
-
-
-String('Member %s of mixin %s is missing a concrete super implementation.') => ?{def format: ?}
-
-String('Member %s of mixin %s is missing a concrete super implementation.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.Symbol],MatchOptimization.this.global.ValDef,List[CommonSubconditionElimination.this.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.Symbol],MatchOptimization.this.global.ValDef,List[CommonSubconditionElimination.this.Tree]]
-1 times = 0ms
-
-
-
-Unit => Boolean
-
-Unit => Boolean
-51 times = 18ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[AnalyzerPlugins.this.MacroPlugin],(AnalyzerPlugins.this.MacroPlugin, Option[T]),That]
-
-scala.collection.generic.CanBuildFrom[List[AnalyzerPlugins.this.MacroPlugin],(AnalyzerPlugins.this.MacroPlugin, Option[T]),That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],String,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => UnCurry.this.global.analyzer.global.Symbol
-
-((Nothing, Nothing)) => UnCurry.this.global.analyzer.global.Symbol
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => TypingTransformers.this.global.analyzer.global.Symbol
-
-((Nothing, Nothing)) => TypingTransformers.this.global.analyzer.global.Symbol
-1 times = 0ms
-
-
-
-String('sym.accessBoundary(sym.owner)') => ?{def ->: ?}
-
-String('sym.accessBoundary(sym.owner)') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Array[Char]) => Array[AnyRef]
-
-(=> Array[Char]) => Array[AnyRef]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],(DocComments.this.Type, Boolean),List[(DocComments.this.Type, Boolean)]]
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],(DocComments.this.Type, Boolean),List[(DocComments.this.Type, Boolean)]]
-1 times = 1ms
-
-
-
-Scanners.this.global.nme.CASEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.CASEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> List[(Contexts.this.global.Symbol, Contexts.this.global.Type)]) => ?{def ::=: ?}
-
-(=> List[(Contexts.this.global.Symbol, Contexts.this.global.Type)]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => List[ClassfileParser.this.symbolTable.Type]
-
-((Nothing, Nothing)) => List[ClassfileParser.this.symbolTable.Type]
-1 times = 0ms
-
-
-
-SyntheticMethods.this.global.nme.CASE_ACCESSOR.type => ?{def +: ?}
-
-SyntheticMethods.this.global.nme.CASE_ACCESSOR.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Object]
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Object]
-1 times = 0ms
-
-
-
-SyntheticMethods.this.global.definitions.Any_toString.type => ?{def ->: ?}
-
-SyntheticMethods.this.global.definitions.Any_toString.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.LinkedHashMap[ToolBoxGlobal.this.FreeTermSymbol,ToolBoxGlobal.this.TermName],ToolBoxGlobal.this.TermSymbol,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.LinkedHashMap[ToolBoxGlobal.this.FreeTermSymbol,ToolBoxGlobal.this.TermName],ToolBoxGlobal.this.TermSymbol,That]
-1 times = 0ms
-
-
-
-(=> Array[Short]) => Array[CNF.this.Clause]
-
-(=> Array[Short]) => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Tree],LambdaLift.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Tree],LambdaLift.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,BTypesFromSymbols.this.global.Symbol,List[BTypesFromSymbols.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[Nothing,BTypesFromSymbols.this.global.Symbol,List[BTypesFromSymbols.this.global.Symbol]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[String],String,That]
-
-scala.collection.generic.CanBuildFrom[Seq[String],String,That]
-1 times = 1ms
-
-
-
-Unit => Parsers.this.Location
-
-Unit => Parsers.this.Location
-24 times = 3ms
-
-
-
-(=> (Nothing, Nothing)) => BCodeBodyBuilder.this.global.Symbol
-
-(=> (Nothing, Nothing)) => BCodeBodyBuilder.this.global.Symbol
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Symbol],(Macros.this.global.Symbol, Macros.this.global.Type),That]
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Symbol],(Macros.this.global.Symbol, Macros.this.global.Type),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Tree],(BCodeBodyBuilder.this.global.Tree, BCodeBodyBuilder.this.global.Symbol),That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Tree],(BCodeBodyBuilder.this.global.Tree, BCodeBodyBuilder.this.global.Symbol),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],scala.tools.asm.tree.MethodNode,That]
-
-scala.collection.generic.CanBuildFrom[List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],scala.tools.asm.tree.MethodNode,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[SpecializeTypes.this.global.Symbol,SpecializeTypes.this.global.Type],(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type),SpecializeTypes.this.TypeEnv]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[SpecializeTypes.this.global.Symbol,SpecializeTypes.this.global.Type],(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Type),SpecializeTypes.this.TypeEnv]
-2 times = 1ms
-
-
-
-String('ProcInstr') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('ProcInstr') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.FORkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.FORkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ToolBoxGlobal.this.FreeTermSymbol],() => Any,That]
-
-scala.collection.generic.CanBuildFrom[List[ToolBoxGlobal.this.FreeTermSymbol],() => Any,That]
-1 times = 0ms
-
-
-
-(=> Array[Solver.this.Clause]) => List[List[?A]]
-
-(=> Array[Solver.this.Clause]) => List[List[?A]]
-1 times = 0ms
-
-
-
-(=> Char('$')) => CharSequence
-
-(=> Char('$')) => CharSequence
-1 times = 0ms
-
-
-
-(=> (Nothing, Unit, Unit)) => Macros.this.global.Position
-
-(=> (Nothing, Unit, Unit)) => Macros.this.global.Position
-1 times = 0ms
-
-
-
-Typers.this.Context
-
-Typers.this.Context
-5 times = 0ms
-
-
-
-Numeric[Long]
-
-Numeric[Long]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],Errors.this.global.Position,That]
-
-scala.collection.generic.CanBuildFrom[List[Any],Errors.this.global.Position,That]
-1 times = 5ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Reshape.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Reshape.this.global.Symbol
-4 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Unapplies.this.global.Tree
-
-(=> (Nothing, Nothing)) => Unapplies.this.global.Tree
-2 times = 0ms
-
-
-
-end.type => ?{def max: ?}
-
-end.type => ?{def max: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.MemberDef],TypeDiagnostics.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.MemberDef],TypeDiagnostics.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-String('underlyingSymbol(sym)') => ?{def ->: ?}
-
-String('underlyingSymbol(sym)') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.FloatTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.FloatTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-(=> Int) => String
-
-(=> Int) => String
-12 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,List[BTypes.this.ClassBType]] => ?{def orThrow: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,List[BTypes.this.ClassBType]] => ?{def orThrow: ?}
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Helpers.this.global.treeInfo.global.Symbol],Helpers.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Helpers.this.global.treeInfo.global.Symbol],Helpers.this.global.Symbol,That]
-1 times = 5ms
-
-
-
-((Nothing, Nothing)) => Reshape.this.global.Tree
-
-((Nothing, Nothing)) => Reshape.this.global.Tree
-1 times = 0ms
-
-
-
-firstLocalIndex.type => ?{def until: ?}
-
-firstLocalIndex.type => ?{def until: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Object]
-
-scala.reflect.ClassTag[Object]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => BrowsingLoaders.this.global.Symbol
-
-(=> (Nothing, Nothing)) => BrowsingLoaders.this.global.Symbol
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => StringBuffer
-
-(=> (Nothing, Nothing)) => StringBuffer
-1 times = 0ms
-
-
-
-Reshape.this.global.Symbol => ?{def ->: ?}
-
-Reshape.this.global.Symbol => ?{def ->: ?}
-1 times = 1ms
-
-
-
-List[Contexts.this.ImportInfo] => ?{def ::=: ?}
-
-List[Contexts.this.ImportInfo] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Infer.this.global.Type]
-
-scala.reflect.ClassTag[Infer.this.global.Type]
-1 times = 0ms
-
-
-
-(=> Float) => String
-
-(=> Float) => String
-3 times = 0ms
-
-
-
-name.type => ?{def dropModule: ?}
-
-name.type => ?{def dropModule: ?}
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Map[String,List[String]]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Map[String,List[String]]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.CaseDef],List[MatchTranslator.this.TreeMaker],That]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.CaseDef],List[MatchTranslator.this.TreeMaker],That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Typers.this.universe.analyzer.global.Tree
-
-((Nothing, Nothing, Nothing)) => Typers.this.universe.analyzer.global.Tree
-1 times = 0ms
-
-
-
-(=> Double) => Long
-
-(=> Double) => Long
-20 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.net.Proxy
-
-(=> (Nothing, Nothing)) => java.net.Proxy
-2 times = 0ms
-
-
-
-((List[TypeDiagnostics.this.global.Type], List[TypeDiagnostics.this.global.Type], List[TypeDiagnostics.this.global.Symbol])) => ?{def zipped: ?}
-
-((List[TypeDiagnostics.this.global.Type], List[TypeDiagnostics.this.global.Type], List[TypeDiagnostics.this.global.Symbol])) => ?{def zipped: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(CoreBTypesFromSymbols.this.bTypes.PrimitiveBType, CoreBTypesFromSymbols.this.bTypes.MethodNameAndType),Map[CoreBTypesFromSymbols.this.bTypes.BType,CoreBTypesFromSymbols.this.bTypes.MethodNameAndType]]
-
-scala.collection.generic.CanBuildFrom[Nothing,(CoreBTypesFromSymbols.this.bTypes.PrimitiveBType, CoreBTypesFromSymbols.this.bTypes.MethodNameAndType),Map[CoreBTypesFromSymbols.this.bTypes.BType,CoreBTypesFromSymbols.this.bTypes.MethodNameAndType]]
-1 times = 0ms
-
-
-
-List[Validators.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-
-List[Validators.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-1 times = 9ms
-
-
-
-share.type => ?{def reverseIterator: ?}
-
-share.type => ?{def reverseIterator: ?}
-1 times = 0ms
-
-
-
-nullCheck.type => ?{def AND: ?}
-
-nullCheck.type => ?{def AND: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Constructors.this.global.Symbol
-
-((Nothing, Nothing)) => Constructors.this.global.Symbol
-1 times = 0ms
-
-
-
-ClassfileParser.this.symbolTable.Symbol#NameType => ?{def ->: ?}
-
-ClassfileParser.this.symbolTable.Symbol#NameType => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('tree position') => ?{def ->: ?}
-
-String('tree position') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-entry.type => ?{def isPackage: ?}
-
-entry.type => ?{def isPackage: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Constructors.this.global.OuterArgCanBeElided.type]
-
-scala.reflect.ClassTag[Constructors.this.global.OuterArgCanBeElided.type]
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],scala.reflect.internal.Variance,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],scala.reflect.internal.Variance,That]
-1 times = 0ms
-
-
-
-clazz.type => ?{def +: ?}
-
-clazz.type => ?{def +: ?}
-3 times = 1ms
-
-
-
-(=> JavaParsers.this.global.Modifiers) => ?{def |=: ?}
-
-(=> JavaParsers.this.global.Modifiers) => ?{def |=: ?}
-3 times = 0ms
-
-
-
-((Nothing, Nothing)) => Long
-
-((Nothing, Nothing)) => Long
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],Implicits.this.global.Type,List[Implicits.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],Implicits.this.global.Type,List[Implicits.this.global.Type]]
-1 times = 0ms
-
-
-
-Int(55) => ?{def ->: ?}
-
-Int(55) => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[SpecializeTypes.this.global.Type]],scala.collection.immutable.Map[SpecializeTypes.this.global.Symbol,SpecializeTypes.this.global.Type],List[SpecializeTypes.this.TypeEnv]]
-
-scala.collection.generic.CanBuildFrom[List[List[SpecializeTypes.this.global.Type]],scala.collection.immutable.Map[SpecializeTypes.this.global.Symbol,SpecializeTypes.this.global.Type],List[SpecializeTypes.this.TypeEnv]]
-1 times = 0ms
-
-
-
-String('-D%s=true') => ?{def format: ?}
-
-String('-D%s=true') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => scala.sys.process.ProcessLogger
-
-(=> Unit) => scala.sys.process.ProcessLogger
-2 times = 0ms
-
-
-
-MatchCodeGen.this.CODE.SelectStart => ?{def APPLY: ?}
-
-MatchCodeGen.this.CODE.SelectStart => ?{def APPLY: ?}
-3 times = 0ms
-
-
-
-(=> Array[BCodeSkelBuilder.this.bTypes.BType]) => Array[String]
-
-(=> Array[BCodeSkelBuilder.this.bTypes.BType]) => Array[String]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.io.OutputStream
-
-(=> (Nothing, Nothing)) => java.io.OutputStream
-7 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.Type,Any]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.Type,Any]
-2 times = 0ms
-
-
-
-String('context.owner') => ?{def ->: ?}
-
-String('context.owner') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> FastTrack.this.macros.global.Symbol) => FastTrack.this.macros.global.Tree
-
-(=> FastTrack.this.macros.global.Symbol) => FastTrack.this.macros.global.Tree
-6 times = 1ms
-
-
-
-(=> Macros.this.global.Tree) => Macros.this.global.Type
-
-(=> Macros.this.global.Tree) => Macros.this.global.Type
-1 times = 0ms
-
-
-
-x$1.type => ?{def isLocalToReifee: ?}
-
-x$1.type => ?{def isLocalToReifee: ?}
-1 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.asm.Type],scala.tools.asm.tree.InsnNode,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.asm.Type],scala.tools.asm.tree.InsnNode,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => BCodeSkelBuilder.this.global.Symbol
-
-(=> (Nothing, Nothing)) => BCodeSkelBuilder.this.global.Symbol
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Symbol],(MatchTranslation.this.global.Symbol, MatchTranslation.this.global.Tree),That]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Symbol],(MatchTranslation.this.global.Symbol, MatchTranslation.this.global.Tree),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],(Typers.this.global.Symbol, Typers.this.global.Tree),That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],(Typers.this.global.Symbol, Typers.this.global.Tree),That]
-1 times = 0ms
-
-
-
-MatchTranslation.this.global.Apply => ?{def AND: ?}
-
-MatchTranslation.this.global.Apply => ?{def AND: ?}
-1 times = 0ms
-
-
-
-List[scala.tools.asm.tree.TryCatchBlockNode] => ?{def asJava: ?}
-
-List[scala.tools.asm.tree.TryCatchBlockNode] => ?{def asJava: ?}
-1 times = 1ms
-
-
-
-Global.this.explicitOuter.type => ?{def ->: ?}
-
-Global.this.explicitOuter.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('MetaData') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('MetaData') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-(=> (Nothing, Unit)) => TailCalls.this.global.Tree
-
-(=> (Nothing, Unit)) => TailCalls.this.global.Tree
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.io.File
-
-(=> (Nothing, Nothing)) => java.io.File
-7 times = 0ms
-
-
-
-String => ?{def padTo: ?}
-
-String => ?{def padTo: ?}
-2 times = 0ms
-
-
-
-LambdaLift.this.global.Tree => LambdaLift.this.global.Type
-
-LambdaLift.this.global.Tree => LambdaLift.this.global.Type
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => scala.tools.nsc.Settings
-
-((Nothing, Nothing, Nothing, Nothing)) => scala.tools.nsc.Settings
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Typers.this.global.Tree
-
-(=> (Nothing, Nothing)) => Typers.this.global.Tree
-37 times = 1ms
-
-
-
-((Nothing, Nothing, Nothing)) => StringBuffer
-
-((Nothing, Nothing, Nothing)) => StringBuffer
-3 times = 0ms
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.MacroImplRefAttachment.type]
-
-scala.reflect.ClassTag[StdAttachments.this.MacroImplRefAttachment.type]
-3 times = 4ms
-
-
-
-x$12.type => ?{def ->: ?}
-
-x$12.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Set[Reifiers.this.global.TermName] => ?{def +=: ?}
-
-Set[Reifiers.this.global.TermName] => ?{def +=: ?}
-1 times = 3ms
-
-
-
-Unit => BCodeBodyBuilder.this.bTypes.BType
-
-Unit => BCodeBodyBuilder.this.bTypes.BType
-1 times = 0ms
-
-
-
-name.type => ?{def stripPrefix: ?}
-
-name.type => ?{def stripPrefix: ?}
-1 times = 0ms
-
-
-
-String('%s expands to %s in %s') => ?{def format: ?}
-
-String('%s expands to %s in %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-Option[Parsers.this.global.Tree] => scala.collection.TraversableOnce[=?Parsers.this.global.Tree]
-
-Option[Parsers.this.global.Tree] => scala.collection.TraversableOnce[=?Parsers.this.global.Tree]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.TermName],DocComments.this.Name{def next: DocComments.this.Name; type ThisNameType >: DocComments.this.TermName with DocComments.this.TypeName <: DocComments.this.Name},That]
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.TermName],DocComments.this.Name{def next: DocComments.this.Name; type ThisNameType >: DocComments.this.TermName with DocComments.this.TypeName <: DocComments.this.Name},That]
-1 times = 0ms
-
-
-
-String => Long
-
-String => Long
-13 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => List[String]
-
-(=> (Nothing, Nothing)) => List[String]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],List[SpecializeTypes.this.global.Type],List[List[SpecializeTypes.this.global.Type]]]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],List[SpecializeTypes.this.global.Type],List[List[SpecializeTypes.this.global.Type]]]
-2 times = 1ms
-
-
-
-x$7.type => ?{def ->: ?}
-
-x$7.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Typers.this.global.Position
-
-((Nothing, Nothing, Nothing)) => Typers.this.global.Position
-4 times = 0ms
-
-
-
-scala.reflect.ClassTag[Typers.this.SuperArgsAttachment]
-
-scala.reflect.ClassTag[Typers.this.SuperArgsAttachment]
-1 times = 0ms
-
-
-
-scala.reflect.OptManifest[Int]
-
-scala.reflect.OptManifest[Int]
-1 times = 0ms
-
-
-
-Array[Solver.this.Clause] => Traversable[Traversable[=?Nothing]]
-
-Array[Solver.this.Clause] => Traversable[Traversable[=?Nothing]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[org.apache.tools.ant.types.Commandline.Argument],org.apache.tools.ant.types.Commandline.Argument,Seq[org.apache.tools.ant.types.Commandline.Argument]]
-
-scala.collection.generic.CanBuildFrom[Seq[org.apache.tools.ant.types.Commandline.Argument],org.apache.tools.ant.types.Commandline.Argument,Seq[org.apache.tools.ant.types.Commandline.Argument]]
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],String,List[_]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],String,List[_]]
-1 times = 0ms
-
-
-
-Constructors.this.global.Name => ?{def getterName: ?}
-
-Constructors.this.global.Name => ?{def getterName: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.TypeVar],Implicits.this.global.TypeConstraint,That]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.TypeVar],Implicits.this.global.TypeConstraint,That]
-1 times = 0ms
-
-
-
-Float => JavaScanner.this.ScanPosition
-
-Float => JavaScanner.this.ScanPosition
-1 times = 0ms
-
-
-
-List[String] => ?{def ++=: ?}
-
-List[String] => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Type],BTypesFromSymbols.this.BType,List[BTypesFromSymbols.this.BType]]
-
-scala.collection.generic.CanBuildFrom[List[BTypesFromSymbols.this.global.Type],BTypesFromSymbols.this.BType,List[BTypesFromSymbols.this.BType]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-
-((Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-3 times = 1ms
-
-
-
-Array[Int] => ?{def map: ?}
-
-Array[Int] => ?{def map: ?}
-1 times = 1ms
-
-
-
-((Nothing, Nothing)) => SpecializeTypes.this.TypeEnv
-
-((Nothing, Nothing)) => SpecializeTypes.this.TypeEnv
-16 times = 1ms
-
-
-
-String('\n(Note that %s does not match %s%s)') => ?{def format: ?}
-
-String('
-(Note that %s does not match %s%s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Map[scala.tools.asm.tree.MethodInsnNode,CallGraph.this.Callsite]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Map[scala.tools.asm.tree.MethodInsnNode,CallGraph.this.Callsite]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-String('%s:%s to %s:%s') => ?{def format: ?}
-
-String('%s:%s to %s:%s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-String('macro expansion has failed: %s at %s') => ?{def format: ?}
-
-String('macro expansion has failed: %s at %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-String('%04x') => ?{def format: ?}
-
-String('%04x') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.analyzer.global.Symbol],RefChecks.this.global.analyzer.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.analyzer.global.Symbol],RefChecks.this.global.analyzer.global.Type,That]
-1 times = 0ms
-
-
-
-AliasingFrame.this.type => ?{def stackTop: ?}
-
-AliasingFrame.this.type => ?{def stackTop: ?}
-1 times = 0ms
-
-
-
-List[Macros.this.global.Symbol] => Macros.this.global.Type
-
-List[Macros.this.global.Symbol] => Macros.this.global.Type
-1 times = 0ms
-
-
-
-Array[Char] => Array[Class[_]]
-
-Array[Char] => Array[Class[_]]
-3 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Parsers.this.Offset
-
-(=> (Nothing, Nothing)) => Parsers.this.Offset
-35 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.Symbol],TreeGen.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.Symbol],TreeGen.this.global.Tree,That]
-1 times = 0ms
-
-
-
-file.type => ?{def isClass: ?}
-
-file.type => ?{def isClass: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],String,That]
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],String,That]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => String
-
-(=> Any => Nothing) => String
-3 times = 0ms
-
-
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Short]
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Short]
-1 times = 0ms
-
-
-
-(=> Unit) => (String => Unit)
-
-(=> Unit) => (String => Unit)
-4 times = 0ms
-
-
-
-Array[StackTraceElement] => ?{def indexWhere: ?}
-
-Array[StackTraceElement] => ?{def indexWhere: ?}
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Int],MethodSynthesis.this.global.CaseDef,That]
-
-scala.collection.generic.CanBuildFrom[Seq[Int],MethodSynthesis.this.global.CaseDef,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Set[String]]
-
-scala.collection.generic.CanBuildFrom[Nothing,String,Set[String]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Implicits.this.global.gen.global.Symbol
-
-((Nothing, Nothing)) => Implicits.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def materializeClassTag: ?}
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def materializeClassTag: ?}
-1 times = 2ms
-
-
-
-(=> (Nothing, Nothing)) => Boolean
-
-(=> (Nothing, Nothing)) => Boolean
-231 times = 16ms
-
-
-
-Array[String] => ?{def foreach: ?}
-
-Array[String] => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)],((Holes.this.global.Type, scala.reflect.quasiquotes.Rank), Int),That]
-
-scala.collection.generic.CanBuildFrom[List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)],((Holes.this.global.Type, scala.reflect.quasiquotes.Rank), Int),That]
-1 times = 1ms
-
-
-
-String(', ') => ?{def ::: ?}
-
-String(', ') => ?{def ::: ?}
-2 times = 0ms
-
-
-
-scala.tools.cmd.FromString[T]
-
-scala.tools.cmd.FromString[T]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => ToolBoxGlobal.this.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => ToolBoxGlobal.this.Symbol
-2 times = 0ms
-
-
-
-next.type => ?{def prefixLength: ?}
-
-next.type => ?{def prefixLength: ?}
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.BooleanTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.BooleanTpe.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[UnCurry.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-
-List[UnCurry.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-((Nothing, Unit)) => String
-
-((Nothing, Unit)) => String
-1 times = 0ms
-
-
-
-Array[String] => ?{def map: ?}
-
-Array[String] => ?{def map: ?}
-1 times = 0ms
-
-
-
-scala.tools.nsc.io.JFile => scala.reflect.io.Path
-
-scala.tools.nsc.io.JFile => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.runtime.LambdaDeserialize]
-
-scala.reflect.ClassTag[scala.runtime.LambdaDeserialize]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Contexts.this.global.Symbol],Contexts.this.ImplicitInfo,List[Contexts.this.ImplicitInfo]]
-
-scala.collection.generic.CanBuildFrom[List[Contexts.this.global.Symbol],Contexts.this.ImplicitInfo,List[Contexts.this.ImplicitInfo]]
-1 times = 0ms
-
-
-
-reflect.runtime.universe.TypeTag[T]
-
-reflect.runtime.universe.TypeTag[T]
-1 times = 1ms
-
-
-
-String('%d source file%s') => ?{def format: ?}
-
-String('%d source file%s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => FormatInterpolator.this.c.universe.FlagSet
-
-(=> Unit) => FormatInterpolator.this.c.universe.FlagSet
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.MATCHkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.MATCHkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-frame$2.type => ?{def getValue: ?}
-
-frame$2.type => ?{def getValue: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Type],List[TreeAndTypeAnalysis.this.global.Type],That]
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Type],List[TreeAndTypeAnalysis.this.global.Type],That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],RefChecks.this.global.Ident,That]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],RefChecks.this.global.Ident,That]
-1 times = 0ms
-
-
-
-java.util.jar.Manifest => ?{def apply: ?}
-
-java.util.jar.Manifest => ?{def apply: ?}
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Array[Char]
-
-(=> (Nothing, Nothing, Nothing)) => Array[Char]
-5 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Unapplies.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Unapplies.this.global.Symbol
-2 times = 0ms
-
-
-
-(=> Unit) => MethodSynthesis.this.global.Type
-
-(=> Unit) => MethodSynthesis.this.global.Type
-3 times = 0ms
-
-
-
-String('NoPrefix()') => scala.text.Document
-
-String('NoPrefix()') => scala.text.Document
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.Tree with Serializable,That]
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Parsers.this.global.Tree with Serializable,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => JavaParsers.this.global.Tree
-
-((Nothing, Nothing)) => JavaParsers.this.global.Tree
-1 times = 0ms
-
-
-
-String('ALLOPTIONS') => ?{def ->: ?}
-
-String('ALLOPTIONS') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Type,Any]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Type,Any]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[ClassfileParser.this.symbolTable.ClassfileAnnotArg]
-
-scala.reflect.ClassTag[ClassfileParser.this.symbolTable.ClassfileAnnotArg]
-1 times = 0ms
-
-
-
-tgt.type => ?{def APPLY: ?}
-
-tgt.type => ?{def APPLY: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => DefaultMacroCompiler.this.global.Tree
-
-((Nothing, Nothing)) => DefaultMacroCompiler.this.global.Tree
-1 times = 0ms
-
-
-
-Implicits.this.global.Tree => Implicits.this.SearchResult
-
-Implicits.this.global.Tree => Implicits.this.SearchResult
-8 times = 1ms
-
-
-
-(=> Float) => Parsers.this.Offset
-
-(=> Float) => Parsers.this.Offset
-2 times = 0ms
-
-
-
-String('lib') => scala.reflect.io.Path
-
-String('lib') => scala.reflect.io.Path
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],java.net.URL,Seq[java.net.URL]]
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],java.net.URL,Seq[java.net.URL]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Macros.this.global.Tree
-
-((Nothing, Nothing, Nothing)) => Macros.this.global.Tree
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[CallGraph.this.postProcessor.bTypes.ClassBType],(scala.collection.immutable.IntMapUtils.Int, Product with Serializable with CallGraph.this.ArgInfo),scala.collection.immutable.IntMap[CallGraph.this.ArgInfo]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[CallGraph.this.postProcessor.bTypes.ClassBType],(scala.collection.immutable.IntMapUtils.Int, Product with Serializable with CallGraph.this.ArgInfo),scala.collection.immutable.IntMap[CallGraph.this.ArgInfo]]
-1 times = 1ms
-
-
-
-Typers.this.global.gen.global.RefTree => ?{def APPLY: ?}
-
-Typers.this.global.gen.global.RefTree => ?{def APPLY: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,scala.collection.TraversableOnce[String]]
-
-scala.collection.generic.CanBuildFrom[List[String],String,scala.collection.TraversableOnce[String]]
-1 times = 1ms
-
-
-
-Scanners.this.global.nme.IMPLICITkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.IMPLICITkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Option[MatchAnalyzer.this.CounterExample] => scala.collection.GenTraversableOnce[?]
-
-Option[MatchAnalyzer.this.CounterExample] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-Int(0) => ?{def to: ?}
-
-Int(0) => ?{def to: ?}
-3 times = 2ms
-
-
-
-relativePath.type => ?{def split(x$1: ? >: Char('/')): Seq[String]}
-
-relativePath.type => ?{def split(x$1: ? >: Char('/')): Seq[String]}
-1 times = 0ms
-
-
-
-Array[org.apache.tools.ant.types.Commandline.Argument] => scala.collection.GenTraversableOnce[?]
-
-Array[org.apache.tools.ant.types.Commandline.Argument] => scala.collection.GenTraversableOnce[?]
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => javax.swing.text.Document
-
-(=> (Nothing, Nothing)) => javax.swing.text.Document
-2 times = 0ms
-
-
-
-scala.collection.immutable.Nil.type => ?{def ->: ?}
-
-scala.collection.immutable.Nil.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslator.this.BoundTree],MatchTranslator.this.TreeMaker,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslator.this.BoundTree],MatchTranslator.this.TreeMaker,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.TypeVar,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.TypeVar,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => org.apache.tools.ant.Project
-
-((Nothing, Nothing)) => org.apache.tools.ant.Project
-2 times = 0ms
-
-
-
-Unit => (String => Unit)
-
-Unit => (String => Unit)
-4 times = 0ms
-
-
-
-ft.type => ?{def ->: ?}
-
-ft.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.AbstractInsnNode,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.AbstractInsnNode,That]
-1 times = 0ms
-
-
-
-Unit => StringBuilder
-
-Unit => StringBuilder
-25 times = 3ms
-
-
-
-(=> List[scala.tools.asm.tree.AbstractInsnNode]) => ?{def ::=: ?}
-
-(=> List[scala.tools.asm.tree.AbstractInsnNode]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-phasePart.type => ?{def split(x$1: ? >: Char(',')): ?}
-
-phasePart.type => ?{def split(x$1: ? >: Char(',')): ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.WildcardType.type,List[Infer.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.WildcardType.type,List[Infer.this.global.Type]]
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.TRYkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.TRYkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.TermSymbol],Delambdafy.this.global.gen.global.RefTree,That]
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.TermSymbol],Delambdafy.this.global.gen.global.RefTree,That]
-1 times = 0ms
-
-
-
-Array[Int] => (Int => Int)
-
-Array[Int] => (Int => Int)
-2 times = 2ms
-
-
-
-(=> (Nothing, Nothing)) => Parsers.this.global.Position
-
-(=> (Nothing, Nothing)) => Parsers.this.global.Position
-32 times = 2ms
-
-
-
-Scanners.this.global.nme.OVERRIDEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.OVERRIDEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.CaseDef],Typers.this.global.CaseDef,List[Typers.this.global.CaseDef]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.CaseDef],Typers.this.global.CaseDef,List[Typers.this.global.CaseDef]]
-3 times = 1ms
-
-
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def materializeTypeTag: ?}
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def materializeTypeTag: ?}
-1 times = 2ms
-
-
-
-String('scala.collection.mutable.') => ?{def ->: ?}
-
-String('scala.collection.mutable.') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-parentSym.type => ?{def +: ?}
-
-parentSym.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],Typers.this.global.Symbol#NameType,Any]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],Typers.this.global.Symbol#NameType,Any]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]],scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])],That]
-
-scala.collection.generic.CanBuildFrom[List[scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]],scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])],That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => JavaParsers.this.global.FlagSet
-
-((Nothing, Nothing)) => JavaParsers.this.global.FlagSet
-1 times = 0ms
-
-
-
-(=> Unit) => Unapplies.this.global.Type
-
-(=> Unit) => Unapplies.this.global.Type
-4 times = 0ms
-
-
-
-Int => scala.tools.nsc.typechecker.ContextMode
-
-Int => scala.tools.nsc.typechecker.ContextMode
-28 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Tree],Any,Any]
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Tree],Any,Any]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[MatchAnalyzer.this.Test]],MatchAnalyzer.this.Prop,That]
-
-scala.collection.generic.CanBuildFrom[List[List[MatchAnalyzer.this.Test]],MatchAnalyzer.this.Prop,That]
-1 times = 3ms
-
-
-
-originNames.type => ?{def withFilter: ?}
-
-originNames.type => ?{def withFilter: ?}
-1 times = 3ms
-
-
-
-(=> Char) => CharSequence
-
-(=> Char) => CharSequence
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.CaseDef],Typers.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.CaseDef],Typers.this.global.Tree,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Unapplies.this.global.FlagSet
-
-(=> (Nothing, Nothing)) => Unapplies.this.global.FlagSet
-1 times = 0ms
-
-
-
-(=> (Nothing, Any => Nothing)) => String
-
-(=> (Nothing, Any => Nothing)) => String
-2 times = 0ms
-
-
-
-(=> scala.collection.immutable.Map[String,String]) => ?{def ++=: ?}
-
-(=> scala.collection.immutable.Map[String,String]) => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-OptimizedCasegen.this.matchEnd.type => ?{def APPLY: ?}
-
-OptimizedCasegen.this.matchEnd.type => ?{def APPLY: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => Parsers.this.Location
-
-(=> Unit) => Parsers.this.Location
-24 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.global.Symbol],(AccessorSynthesis.this.global.Symbol, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.global.Symbol],(AccessorSynthesis.this.global.Symbol, Int),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],scala.reflect.internal.util.SourceFile,List[scala.reflect.internal.util.SourceFile]]
-
-scala.collection.generic.CanBuildFrom[List[String],scala.reflect.internal.util.SourceFile,List[scala.reflect.internal.util.SourceFile]]
-1 times = 0ms
-
-
-
-List[SpecializeTypes.this.global.Type] => ?{def ::=: ?}
-
-List[SpecializeTypes.this.global.Type] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-String('performing macro expansion %s at %s') => ?{def format: ?}
-
-String('performing macro expansion %s at %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Type],RefChecks.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Type],RefChecks.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-String('no accessors for %s/%s, specialized methods must access field in subclass') => ?{def format: ?}
-
-String('no accessors for %s/%s, specialized methods must access field in subclass') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.Type,List[Infer.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.Type,List[Infer.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.ValDef],UnCurry.this.global.Symbol,List[UnCurry.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.ValDef],UnCurry.this.global.Symbol,List[UnCurry.this.global.Symbol]]
-2 times = 0ms
-
-
-
-String('[Executing command: %s]') => ?{def format: ?}
-
-String('[Executing command: %s]') => ?{def format: ?}
-1 times = 0ms
-
-
-
-x$7.type => ?{def drop: ?}
-
-x$7.type => ?{def drop: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.AbstractInsnNode,Set[scala.tools.asm.tree.AbstractInsnNode]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.AbstractInsnNode,Set[scala.tools.asm.tree.AbstractInsnNode]]
-3 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Implicits.this.ImplicitInfo]],Implicits.this.ImplicitInfo,That]
-
-scala.collection.generic.CanBuildFrom[List[List[Implicits.this.ImplicitInfo]],Implicits.this.ImplicitInfo,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],Int,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],Int,That]
-1 times = 0ms
-
-
-
-Array[Long] => Array[AnyRef]
-
-Array[Long] => Array[AnyRef]
-3 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.VOLATILEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.VOLATILEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Symbol],List[TreeAndTypeAnalysis.this.global.Symbol],That]
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Symbol],List[TreeAndTypeAnalysis.this.global.Symbol],That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.CHAR.type),That]
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.CHAR.type),That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-3 times = 0ms
-
-
-
-Scanners.this.global.nme.PROTECTEDkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.PROTECTEDkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Option[CommonSubconditionElimination.this.TreeMaker] => scala.collection.GenTraversableOnce[?]
-
-Option[CommonSubconditionElimination.this.TreeMaker] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-Erasure.this.global.Type => ?{def +: ?}
-
-Erasure.this.global.Type => ?{def +: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => List[States.this.global.Tree]
-
-(=> Unit) => List[States.this.global.Tree]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Symbol],scala.reflect.internal.Variance,That]
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Symbol],scala.reflect.internal.Variance,That]
-1 times = 0ms
-
-
-
-Long => Double
-
-Long => Double
-1 times = 0ms
-
-
-
-String => scala.reflect.io.Path
-
-String => scala.reflect.io.Path
-26 times = 5ms
-
-
-
-(Any, Any) <:< (T, U)
-
-(Any, Any) <:< (T, U)
-1 times = 0ms
-
-
-
-((Nothing, Unit)) => Int
-
-((Nothing, Unit)) => Int
-1 times = 0ms
-
-
-
-tree.type => ?{def MEMBER_==: ?}
-
-tree.type => ?{def MEMBER_==: ?}
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[UnCurry.this.global.DelambdafyTarget.type]
-
-scala.reflect.ClassTag[UnCurry.this.global.DelambdafyTarget.type]
-2 times = 1ms
-
-
-
-(Macros.this.global.Symbol, Macros.this.global.ValDef) <:< (T, U)
-
-(Macros.this.global.Symbol, Macros.this.global.ValDef) <:< (T, U)
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[scala.tools.asm.tree.TryCatchBlockNode]) => ?{def ++=: ?}
-
-(=> scala.collection.immutable.Set[scala.tools.asm.tree.TryCatchBlockNode]) => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],Typers.this.global.Type,List[Typers.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Type],Typers.this.global.Type,List[Typers.this.global.Type]]
-2 times = 0ms
-
-
-
-Some[Reshape.this.global.ValDef] => scala.collection.GenTraversableOnce[?]
-
-Some[Reshape.this.global.ValDef] => scala.collection.GenTraversableOnce[?]
-1 times = 1ms
-
-
-
-java.util.List[scala.tools.asm.tree.AnnotationNode] => ?{def asScala: ?}
-
-java.util.List[scala.tools.asm.tree.AnnotationNode] => ?{def asScala: ?}
-2 times = 1ms
-
-
-
-String('@throws') => ?{def ->: ?}
-
-String('@throws') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-s.type => ?{def flatMap: ?}
-
-s.type => ?{def flatMap: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.LAZYkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.LAZYkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> List[Infer.this.global.Symbol]) => ?{def ::=: ?}
-
-(=> List[Infer.this.global.Symbol]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-Option[(SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol)] => scala.collection.GenTraversableOnce[?]
-
-Option[(SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol)] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[SymbolTables.this.global.Tree],SymbolTables.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[SymbolTables.this.global.Tree],SymbolTables.this.global.Tree,That]
-1 times = 1ms
-
-
-
-String('%s%s is %s in %s.') => ?{def format: ?}
-
-String('%s%s is %s in %s.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-(=> String) => scala.reflect.io.AbstractFile
-
-(=> String) => scala.reflect.io.AbstractFile
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[String,Char,That]
-
-scala.collection.generic.CanBuildFrom[String,Char,That]
-1 times = 0ms
-
-
-
-Global.this.terminal.type => ?{def ->: ?}
-
-Global.this.terminal.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Option[Typers.this.global.ClassfileAnnotArg],That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Option[Typers.this.global.ClassfileAnnotArg],That]
-1 times = 0ms
-
-
-
-Erasure.this.global.Tree => Erasure.this.global.Type
-
-Erasure.this.global.Tree => Erasure.this.global.Type
-4 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.BYTEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.BYTEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Int, scala.tools.asm.Type)],scala.tools.asm.tree.VarInsnNode,That]
-
-scala.collection.generic.CanBuildFrom[List[(Int, scala.tools.asm.Type)],scala.tools.asm.tree.VarInsnNode,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.lang.reflect.Method
-
-(=> (Nothing, Nothing)) => java.lang.reflect.Method
-1 times = 0ms
-
-
-
-((Nothing, Unit, Unit)) => NodePrinters.this.global.Position
-
-((Nothing, Unit, Unit)) => NodePrinters.this.global.Position
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.ValDef],Typers.this.global.Type,List[Typers.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.ValDef],Typers.this.global.Type,List[Typers.this.global.Type]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => SpecializeTypes.this.global.Symbol
-
-((Nothing, Nothing)) => SpecializeTypes.this.global.Symbol
-6 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Reifiers.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => Reifiers.this.global.Symbol
-4 times = 0ms
-
-
-
-(=> Reifier.this.SymbolTable) => ?{def ++=: ?}
-
-(=> Reifier.this.SymbolTable) => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.ValDef],Typers.this.global.Ident,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.ValDef],Typers.this.global.Ident,That]
-1 times = 0ms
-
-
-
-Unit => Float
-
-Unit => Float
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],Inliner.this.postProcessor.inlinerHeuristics.InlineRequest,List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]]
-
-scala.collection.generic.CanBuildFrom[List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],Inliner.this.postProcessor.inlinerHeuristics.InlineRequest,List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest]]
-1 times = 0ms
-
-
-
-Int(103) => ?{def ->: ?}
-
-Int(103) => ?{def ->: ?}
-2 times = 1ms
-
-
-
-(=> scala.collection.immutable.Map[scala.tools.asm.tree.AbstractInsnNode,scala.tools.asm.tree.AbstractInsnNode]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Map[scala.tools.asm.tree.AbstractInsnNode,scala.tools.asm.tree.AbstractInsnNode]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def expandQuasiquote: ?}
-
-scala.tools.nsc.typechecker.StdAttachments.<refinement>.type => ?{def expandQuasiquote: ?}
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Int],scala.tools.asm.tree.analysis.SourceValue,Seq[scala.tools.asm.tree.analysis.SourceValue]]
-
-scala.collection.generic.CanBuildFrom[Seq[Int],scala.tools.asm.tree.analysis.SourceValue,Seq[scala.tools.asm.tree.analysis.SourceValue]]
-1 times = 0ms
-
-
-
-Array[Long] => Array[Class[_]]
-
-Array[Long] => Array[Class[_]]
-3 times = 0ms
-
-
-
-scala.collection.mutable.Buffer[scala.tools.asm.tree.AnnotationNode] => ?{def asJava: ?}
-
-scala.collection.mutable.Buffer[scala.tools.asm.tree.AnnotationNode] => ?{def asJava: ?}
-1 times = 3ms
-
-
-
-(=> Unit) => Array[Byte]
-
-(=> Unit) => Array[Byte]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Symbol],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Symbol],String,List[String]]
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.CHARkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.CHARkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Parsers.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => Parsers.this.global.Symbol
-14 times = 1ms
-
-
-
-(=> Array[Boolean]) => Array[CNF.this.Clause]
-
-(=> Array[Boolean]) => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-scala.math.Ordering[tools.nsc.backend.jvm.BTypes.InternalName]
-
-scala.math.Ordering[tools.nsc.backend.jvm.BTypes.InternalName]
-1 times = 0ms
-
-
-
-(tools.nsc.backend.jvm.BTypes.InternalName, scala.collection.immutable.Set[tools.nsc.backend.jvm.BTypes.InternalName]) <:< (tools.nsc.backend.jvm.BTypes.InternalName, Set[tools.nsc.backend.jvm.BTypes.InternalName])
-
-(tools.nsc.backend.jvm.BTypes.InternalName, scala.collection.immutable.Set[tools.nsc.backend.jvm.BTypes.InternalName]) <:< (tools.nsc.backend.jvm.BTypes.InternalName, Set[tools.nsc.backend.jvm.BTypes.InternalName])
-1 times = 0ms
-
-
-
-Int => ?{def &=: ?}
-
-Int => ?{def &=: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Type,That]
-1 times = 0ms
-
-
-
-String(' (and %s <: %s)') => ?{def format: ?}
-
-String(' (and %s <: %s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => BCodeSyncAndTry.this.global.Symbol
-
-((Nothing, Nothing)) => BCodeSyncAndTry.this.global.Symbol
-4 times = 3ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.DoubleClass.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.DoubleClass.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Unit, Unit)) => NodePrinters.this.global.FlagSet
-
-(=> (Nothing, Unit, Unit)) => NodePrinters.this.global.FlagSet
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],DocComments.this.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],DocComments.this.Symbol,That]
-1 times = 2ms
-
-
-
-Char(',') => String
-
-Char(',') => String
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.LinkedHashMap[ToolBoxGlobal.this.FreeTermSymbol,ToolBoxGlobal.this.TermName],(ToolBoxGlobal.this.TermName, ToolBoxGlobal.this.FreeTermSymbol),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.LinkedHashMap[ToolBoxGlobal.this.FreeTermSymbol,ToolBoxGlobal.this.TermName],(ToolBoxGlobal.this.TermName, ToolBoxGlobal.this.FreeTermSymbol),That]
-1 times = 0ms
-
-
-
-String => ?{def split(x$1: ? >: Char('.')): ?}
-
-String => ?{def split(x$1: ? >: Char('.')): ?}
-1 times = 0ms
-
-
-
-qual.type => ?{def DOT: ?}
-
-qual.type => ?{def DOT: ?}
-1 times = 0ms
-
-
-
-Unit => java.io.FilenameFilter
-
-Unit => java.io.FilenameFilter
-1 times = 0ms
-
-
-
-Array[Unit] => Array[Class[_]]
-
-Array[Unit] => Array[Class[_]]
-3 times = 0ms
-
-
-
-pattern.type => ?{def contains(x$1: ? >: Char('*')): Boolean}
-
-pattern.type => ?{def contains(x$1: ? >: Char('*')): Boolean}
-1 times = 0ms
-
-
-
-res.type => ?{def toList: ?}
-
-res.type => ?{def toList: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Type],Infer.this.global.Type,List[Infer.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Type],Infer.this.global.Type,List[Infer.this.global.Type]]
-3 times = 1ms
-
-
-
-JavaScanners.this.global.javanme.TRUEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.TRUEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('SearchResult(%s, %s)') => ?{def format: ?}
-
-String('SearchResult(%s, %s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.MACROkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.MACROkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Boolean
-
-((Nothing, Nothing)) => Boolean
-231 times = 73ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.CaseDef],MatchOptimization.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.CaseDef],MatchOptimization.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[scala.reflect.io.Path],java.net.URL,That]
-
-scala.collection.generic.CanBuildFrom[Array[scala.reflect.io.Path],java.net.URL,That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[java.net.URL]
-
-scala.reflect.ClassTag[java.net.URL]
-3 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[scala.reflect.io.Path],java.net.URL,That]->scala.reflect.ClassTag[java.net.URL]
-
-
-
-
-
-Option[Typers.this.global.ClassfileAnnotArg] => scala.collection.GenTraversableOnce[B]
-
-Option[Typers.this.global.ClassfileAnnotArg] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName),List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)]]
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName),List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)]]
-2 times = 1ms
-
-
-
-(=> List[JavaParsers.this.global.Tree]) => ?{def :+=: ?}
-
-(=> List[JavaParsers.this.global.Tree]) => ?{def :+=: ?}
-1 times = 0ms
-
-
-
-cond.type => ?{def ->: ?}
-
-cond.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.Type],TreeGen.this.global.TypeTree,List[TreeGen.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.Type],TreeGen.this.global.TypeTree,List[TreeGen.this.global.Tree]]
-1 times = 0ms
-
-
-
-Unit => Holes.this.global.Type
-
-Unit => Holes.this.global.Type
-1 times = 0ms
-
-
-
-String('gt') => ?{def ->: ?}
-
-String('gt') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Array[scala.tools.asm.Handle] => Seq[scala.tools.asm.Handle]
-
-Array[scala.tools.asm.Handle] => Seq[scala.tools.asm.Handle]
-2 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.ClassInfo] => ?{def orThrow: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,CallGraph.this.postProcessor.bTypesFromClassfile.postProcessor.bTypes.ClassInfo] => ?{def orThrow: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(JavaScanners.this.global.Name, Int)],(Int, JavaScanners.this.global.Name),That]
-
-scala.collection.generic.CanBuildFrom[List[(JavaScanners.this.global.Name, Int)],(Int, JavaScanners.this.global.Name),That]
-1 times = 0ms
-
-
-
-String('locals (%d total): %n') => ?{def format: ?}
-
-String('locals (%d total): %n') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[Infer.this.global.TypeVar] => ?{def -=: ?}
-
-scala.collection.immutable.Set[Infer.this.global.TypeVar] => ?{def -=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],java.io.File,List[java.io.File]]
-
-scala.collection.generic.CanBuildFrom[List[String],java.io.File,List[java.io.File]]
-1 times = 0ms
-
-
-
-Array[Char] => ?{def iterator: ?}
-
-Array[Char] => ?{def iterator: ?}
-1 times = 1ms
-
-
-
-JavaScanners.this.global.javanme.PROTECTEDkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.PROTECTEDkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[ExtensionMethods.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-
-List[ExtensionMethods.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-Array[Short] => Array[AnyRef]
-
-Array[Short] => Array[AnyRef]
-3 times = 0ms
-
-
-
-scala.reflect.ClassTag[SpecializeTypes.this.SpecializedSuperConstructorCallArgument.type]
-
-scala.reflect.ClassTag[SpecializeTypes.this.SpecializedSuperConstructorCallArgument.type]
-1 times = 1ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.UnitClass.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.UnitClass.type => ?{def ->: ?}
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],String,That]
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],String,That]
-1 times = 1ms
-
-
-
-(=> TreeAndTypeAnalysis.this.global.AnnotationInfo) => TreeAndTypeAnalysis.this.global.Type
-
-(=> TreeAndTypeAnalysis.this.global.AnnotationInfo) => TreeAndTypeAnalysis.this.global.Type
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Map[scala.tools.asm.tree.InvokeDynamicInsnNode,CallGraph.this.ClosureInstantiation]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Map[scala.tools.asm.tree.InvokeDynamicInsnNode,CallGraph.this.ClosureInstantiation]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-List[String] => ?{def ::=: ?}
-
-List[String] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PatternTypers.this.global.Tree],PatternTypers.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[PatternTypers.this.global.Tree],PatternTypers.this.global.Tree,That]
-1 times = 1ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.ShortClass.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.ShortClass.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Array[StackTraceElement] => ?{def dropRight: ?}
-
-Array[StackTraceElement] => ?{def dropRight: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Array[Int]
-
-(=> (Nothing, Nothing)) => Array[Int]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[TypeDiagnostics.this.TypeDiag]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[TypeDiagnostics.this.TypeDiag]) => ?{def +=: ?}
-2 times = 0ms
-
-
-
-String('COMMAND: \'scala %s\'') => ?{def format: ?}
-
-String('COMMAND: 'scala %s'') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.Symbol,List[Namers.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.Symbol,List[Namers.this.global.Symbol]]
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => Extractors.this.global.TypeBounds
-
-((Nothing, Nothing)) => Extractors.this.global.TypeBounds
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => BCodeSyncAndTry.this.global.Symbol
-
-(=> (Nothing, Nothing)) => BCodeSyncAndTry.this.global.Symbol
-4 times = 0ms
-
-
-
-Float => Long
-
-Float => Long
-20 times = 0ms
-
-
-
-((Nothing, (Any, Any) => Nothing)) => Array[Short]
-
-((Nothing, (Any, Any) => Nothing)) => Array[Short]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[List[RefChecks.this.global.Type]]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[List[RefChecks.this.global.Type]]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-Unit => Parsers.this.global.Type
-
-Unit => Parsers.this.global.Type
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => TreeDSL.this.global.gen.global.Symbol
-
-((Nothing, Nothing)) => TreeDSL.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Namers.this.global.ValDef]],List[Namers.this.global.ValDef],List[List[Namers.this.global.ValDef]]]
-
-scala.collection.generic.CanBuildFrom[List[List[Namers.this.global.ValDef]],List[Namers.this.global.ValDef],List[List[Namers.this.global.ValDef]]]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.NULLkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.NULLkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Unit, Unit)) => Contexts.this.global.Name
-
-((Nothing, Unit, Unit)) => Contexts.this.global.Name
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.Symbol],TreeGen.this.global.TermSymbol,That]
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.Symbol],TreeGen.this.global.TermSymbol,That]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.CLASSkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.CLASSkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Map[BCodeSyncAndTry.this.global.Symbol,scala.tools.asm.Label]) => ?{def -=: ?}
-
-(=> scala.collection.immutable.Map[BCodeSyncAndTry.this.global.Symbol,scala.tools.asm.Label]) => ?{def -=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.Type,That]
-1 times = 0ms
-
-
-
-(=> Boolean) => ?{def &=: ?}
-
-(=> Boolean) => ?{def &=: ?}
-2 times = 0ms
-
-
-
-part.type => ?{def stripSuffix: ?}
-
-part.type => ?{def stripSuffix: ?}
-2 times = 1ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.SecondTry.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.SecondTry.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Parsers.this.global.Tree => Parsers.this.global.Apply
-
-Parsers.this.global.Tree => Parsers.this.global.Apply
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.AnnotationInfo],BCodeSkelBuilder.this.global.AnnotationInfo,That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeSkelBuilder.this.global.AnnotationInfo],BCodeSkelBuilder.this.global.AnnotationInfo,That]
-1 times = 0ms
-
-
-
-(=> Flatten.this.global.AnnotationInfo) => Flatten.this.global.Type
-
-(=> Flatten.this.global.AnnotationInfo) => Flatten.this.global.Type
-1 times = 0ms
-
-
-
-SyntheticMethods.this.global.Ident => ?{def IS_OBJ: ?}
-
-SyntheticMethods.this.global.Ident => ?{def IS_OBJ: ?}
-1 times = 0ms
-
-
-
-name.type => ?{def split(x$1: ? >: Char('$')): ?}
-
-name.type => ?{def split(x$1: ? >: Char('$')): ?}
-1 times = 0ms
-
-
-
-SyntheticMethods.this.global.Apply => ?{def OR: ?}
-
-SyntheticMethods.this.global.Apply => ?{def OR: ?}
-1 times = 0ms
-
-
-
-String('Not setting associatedFile to %s because %s is a %s') => ?{def format: ?}
-
-String('Not setting associatedFile to %s because %s is a %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-x$6.type => ?{def ->: ?}
-
-x$6.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Unit => SymbolTables.this.global.Type
-
-Unit => SymbolTables.this.global.Type
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.CaseDef],Erasure.this.global.CaseDef,List[Erasure.this.global.CaseDef]]
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.CaseDef],Erasure.this.global.CaseDef,List[Erasure.this.global.CaseDef]]
-2 times = 1ms
-
-
-
-trace.type => ?{def size: ?}
-
-trace.type => ?{def size: ?}
-2 times = 0ms
-
-
-
-(=> List[Any]) => ?{def ::=: ?}
-
-(=> List[Any]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => java.util.jar.Manifest
-
-(=> Unit) => java.util.jar.Manifest
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[SpecializeTypes.this.global.Type]],List[SpecializeTypes.this.global.Type],That]
-
-scala.collection.generic.CanBuildFrom[List[List[SpecializeTypes.this.global.Type]],List[SpecializeTypes.this.global.Type],That]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.YIELDkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.YIELDkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => NodePrinters.this.global.Tree
-
-(=> (Nothing, Nothing)) => NodePrinters.this.global.Tree
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],RefChecks.this.global.TypeBounds,That]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],RefChecks.this.global.TypeBounds,That]
-1 times = 0ms
-
-
-
-java.util.ListIterator[scala.tools.asm.tree.AbstractInsnNode] => ?{def asScala: ?}
-
-java.util.ListIterator[scala.tools.asm.tree.AbstractInsnNode] => ?{def asScala: ?}
-13 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.TypeVar,List[Infer.this.global.TypeVar]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.TypeVar,List[Infer.this.global.TypeVar]]
-1 times = 0ms
-
-
-
-String('Comment') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('Comment') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.treeInfo.global.Tree],Macros.this.global.treeInfo.global.Tree,List[Macros.this.global.gen.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.treeInfo.global.Tree],Macros.this.global.treeInfo.global.Tree,List[Macros.this.global.gen.global.Tree]]
-1 times = 0ms
-
-
-
-List[TreeCheckers.this.global.MemberDef] => ?{def ::=: ?}
-
-List[TreeCheckers.this.global.MemberDef] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-String('[check: %s] %s') => ?{def format: ?}
-
-String('[check: %s] %s') => ?{def format: ?}
-2 times = 0ms
-
-
-
-List[scala.reflect.macros.contexts.Context{val universe: Macros.this.global.type}] => ?{def ::=: ?}
-
-List[scala.reflect.macros.contexts.Context{val universe: Macros.this.global.type}] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.languageFeature.existentials
-
-scala.languageFeature.existentials
-3 times = 0ms
-
-
-
-Array[Char] => Array[AnyRef]
-
-Array[Char] => Array[AnyRef]
-3 times = 0ms
-
-
-
-String('plugins') => scala.reflect.io.Path
-
-String('plugins') => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Symbol],Interface.this.global.Symbol,To1]
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Symbol],Interface.this.global.Symbol,To1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Unapplies.this.global.TypeDef],Unapplies.this.global.Ident,List[Unapplies.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Unapplies.this.global.TypeDef],Unapplies.this.global.Ident,List[Unapplies.this.global.Tree]]
-1 times = 1ms
-
-
-
-Int(8192) => scala.tools.nsc.typechecker.ContextMode
-
-Int(8192) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.CaseDef],Typers.this.global.CaseDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.CaseDef],Typers.this.global.CaseDef,That]
-1 times = 0ms
-
-
-
-s.type => ?{def toInt: ?}
-
-s.type => ?{def toInt: ?}
-2 times = 0ms
-
-
-
-String('$buf') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-
-String('$buf') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-1 times = 0ms
-
-
-
-String('Executing ant task scalacfork, origin: %s') => ?{def format: ?}
-
-String('Executing ant task scalacfork, origin: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-boxMethodSym.type => ?{def ->: ?}
-
-boxMethodSym.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((List[Checkable.this.global.Type], List[Checkable.this.global.Type])) => ?{def zipped: ?}
-
-((List[Checkable.this.global.Type], List[Checkable.this.global.Type])) => ?{def zipped: ?}
-1 times = 0ms
-
-
-
-lazySym.type => ?{def ->: ?}
-
-lazySym.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => BrowsingLoaders.this.global.Symbol
-
-((Nothing, Nothing)) => BrowsingLoaders.this.global.Symbol
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[Long]
-
-((Nothing, Nothing)) => Array[Long]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => NamesDefaults.this.global.gen.global.Symbol
-
-((Nothing, Nothing)) => NamesDefaults.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],Solver.this.Sym,List[Solver.this.Sym]]
-
-scala.collection.generic.CanBuildFrom[List[Int],Solver.this.Sym,List[Solver.this.Sym]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],String,List[String]]
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.CharTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.CharTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[Throwable]
-
-scala.reflect.ClassTag[Throwable]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => MatchTreeMaking.this.global.Symbol
-
-((Nothing, Nothing)) => MatchTreeMaking.this.global.Symbol
-2 times = 0ms
-
-
-
-scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode] => ?{def +=: ?}
-
-scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode] => ?{def +=: ?}
-2 times = 0ms
-
-
-
-Char => ?{def toLower: ?}
-
-Char => ?{def toLower: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.tools.asm.Label]
-
-scala.reflect.ClassTag[scala.tools.asm.Label]
-2 times = 2ms
-
-
-
-String('jvm') => ?{def ->: ?}
-
-String('jvm') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-thisCase.type => ?{def DOT: ?}
-
-thisCase.type => ?{def DOT: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => TreeGen.this.global.Tree
-
-((Nothing, Nothing)) => TreeGen.this.global.Tree
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => List[RefChecks.this.global.Type]
-
-(=> (Nothing, Nothing)) => List[RefChecks.this.global.Type]
-1 times = 0ms
-
-
-
-StringContext => ?{def sm: ?}
-
-StringContext => ?{def sm: ?}
-31 times = 11ms
-
-
-
-((Nothing, Nothing, Nothing)) => Array[Char]
-
-((Nothing, Nothing, Nothing)) => Array[Char]
-5 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Parsers.this.global.FlagSet
-
-(=> (Nothing, Nothing)) => Parsers.this.global.FlagSet
-1 times = 0ms
-
-
-
-oldEntry.type => ?{def ->: ?}
-
-oldEntry.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Unit => (CompilationUnits.this.Tree => CompilationUnits.this.Tree)
-
-Unit => (CompilationUnits.this.Tree => CompilationUnits.this.Tree)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(MatchTranslation.this.global.Symbol, MatchTranslation.this.global.Tree)],MatchTranslation.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[(MatchTranslation.this.global.Symbol, MatchTranslation.this.global.Tree)],MatchTranslation.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Placeholders.this.global.Tree],Placeholders.this.global.Tree,List[Placeholders.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Placeholders.this.global.Tree],Placeholders.this.global.Tree,List[Placeholders.this.global.Tree]]
-1 times = 7ms
-
-
-
-scala.reflect.ClassTag[Parsers.this.Q.type]
-
-scala.reflect.ClassTag[Parsers.this.Q.type]
-2 times = 7ms
-
-
-
-Array[Float] => Array[Class[_]]
-
-Array[Float] => Array[Class[_]]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],Implicits.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],Implicits.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-String('MacroContext(%s@%s +%d)') => ?{def format: ?}
-
-String('MacroContext(%s@%s +%d)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => Int
-
-(=> Unit) => Int
-90 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Symbol],Interface.this.global.Symbol#NameType,That]
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Symbol],Interface.this.global.Symbol#NameType,That]
-1 times = 2ms
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: V]
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: V]
-1 times = 0ms
-
-
-
-String('\n<<-- %s %s after phase \'%s\' -->>') => ?{def format: ?}
-
-String('
-<<-- %s %s after phase '%s' -->>') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.DOTkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.DOTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.FALSEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.FALSEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-msg.type => ?{def format: ?}
-
-msg.type => ?{def format: ?}
-1 times = 0ms
-
-
-
-args.type => ?{def map: ?}
-
-args.type => ?{def map: ?}
-1 times = 0ms
-
-
-
-String('reflective typecheck has failed: %s') => ?{def format: ?}
-
-String('reflective typecheck has failed: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Implicits.this.ImplicitInfo
-
-(=> (Nothing, Nothing, Nothing)) => Implicits.this.ImplicitInfo
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Parsers.this.global.Position
-
-((Nothing, Nothing, Nothing)) => Parsers.this.global.Position
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],GenUtils.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Any],GenUtils.this.global.Tree,That]
-1 times = 1ms
-
-
-
-Scanners.this.Offset => ?{def +=: ?}
-
-Scanners.this.Offset => ?{def +=: ?}
-4 times = 0ms
-
-
-
-String('(%2s) ') => ?{def format: ?}
-
-String('(%2s) ') => ?{def format: ?}
-1 times = 0ms
-
-
-
-default.type => ?{def ->: ?}
-
-default.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[Infer.this.global.TypeVar]) => ?{def -=: ?}
-
-(=> scala.collection.immutable.Set[Infer.this.global.TypeVar]) => ?{def -=: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.ClassNode
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.ClassNode
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTracker.this.Node],SymbolTracker.this.Node,List[SymbolTracker.this.Node]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTracker.this.Node],SymbolTracker.this.Node,List[SymbolTracker.this.Node]]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => TailCalls.this.global.Tree
-
-(=> (Nothing, Nothing)) => TailCalls.this.global.Tree
-4 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Typers.this.global.Symbol
-
-(=> (Nothing, Nothing)) => Typers.this.global.Symbol
-8 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Duplicators.this.global.Position
-
-(=> (Nothing, Nothing, Nothing)) => Duplicators.this.global.Position
-1 times = 0ms
-
-
-
-Global.this.lambdaLift.type => ?{def ->: ?}
-
-Global.this.lambdaLift.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-ToolBoxGlobal.this.Symbol => ?{def ->: ?}
-
-ToolBoxGlobal.this.Symbol => ?{def ->: ?}
-2 times = 0ms
-
-
-
-sym.type => ?{def ->: ?}
-
-sym.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.Type,Any]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],Infer.this.global.Type,Any]
-1 times = 0ms
-
-
-
-String('misc') => scala.reflect.io.Path
-
-String('misc') => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-BoundTree.this.binder.type => ?{def ->: ?}
-
-BoundTree.this.binder.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-copyOp.type => ?{def ->: ?}
-
-copyOp.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[Infer.this.global.Symbol] => Infer.this.global.Type
-
-List[Infer.this.global.Symbol] => Infer.this.global.Type
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[CNF.this.Clause],CNF.this.Clause,CNF.this.Cnf]
-
-scala.collection.generic.CanBuildFrom[Array[CNF.this.Clause],CNF.this.Clause,CNF.this.Cnf]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[CNF.this.Clause]
-
-scala.reflect.ClassTag[CNF.this.Clause]
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[CNF.this.Clause],CNF.this.Clause,CNF.this.Cnf]->scala.reflect.ClassTag[CNF.this.Clause]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],scala.tools.nsc.util.ClassPath,That]
-
-scala.collection.generic.CanBuildFrom[List[String],scala.tools.nsc.util.ClassPath,That]
-1 times = 0ms
-
-
-
-String('symbol definition') => ?{def ->: ?}
-
-String('symbol definition') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Helpers.this.global.treeInfo.global.Symbol]],List[Helpers.this.global.treeInfo.global.Symbol],List[List[Helpers.this.global.Symbol]]]
-
-scala.collection.generic.CanBuildFrom[List[List[Helpers.this.global.treeInfo.global.Symbol]],List[Helpers.this.global.treeInfo.global.Symbol],List[List[Helpers.this.global.Symbol]]]
-1 times = 2ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,Boolean] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,Boolean] => ?{def get: ?}
-16 times = 11ms
-
-
-
-scala.collection.generic.CanBuildFrom[Traversable[String],String,That]
-
-scala.collection.generic.CanBuildFrom[Traversable[String],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[OptimizedCodegen.this.Casegen => MatchCodeGen.this.global.Tree],MatchCodeGen.this.global.LabelDef,That]
-
-scala.collection.generic.CanBuildFrom[List[OptimizedCodegen.this.Casegen => MatchCodeGen.this.global.Tree],MatchCodeGen.this.global.LabelDef,That]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.SUBTYPEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.SUBTYPEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => scala.tools.nsc.reporters.Reporter
-
-((Nothing, Nothing)) => scala.tools.nsc.reporters.Reporter
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[GenTypes.this.global.AnnotationInfo],GenTypes.this.global.Tree,List[GenTypes.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[GenTypes.this.global.AnnotationInfo],GenTypes.this.global.Tree,List[GenTypes.this.global.Tree]]
-1 times = 1ms
-
-
-
-String(';\n (Note that %s is abstract,\n and is therefore overridden by concrete %s)') => ?{def format: ?}
-
-String(';
- (Note that %s is abstract,
- and is therefore overridden by concrete %s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[SymbolTables.this.global.Tree]
-
-scala.reflect.ClassTag[SymbolTables.this.global.Tree]
-1 times = 0ms
-
-
-
-String('Elem') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('Elem') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-(=> List[Mixin.this.global.Symbol]) => ?{def ::=: ?}
-
-(=> List[Mixin.this.global.Symbol]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Not],MatchAnalyzer.this.Var,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Not],MatchAnalyzer.this.Var,That]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.SUPERkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.SUPERkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Option[scala.tools.nsc.transform.patmat.Lit] => ?{def toSet: ?}
-
-Option[scala.tools.nsc.transform.patmat.Lit] => ?{def toSet: ?}
-1 times = 0ms
-
-
-
-(=> String) => Char
-
-(=> String) => Char
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SyntheticMethods.this.global.TermSymbol, () => SyntheticMethods.this.global.Tree)],SyntheticMethods.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[(SyntheticMethods.this.global.TermSymbol, () => SyntheticMethods.this.global.Tree)],SyntheticMethods.this.global.Tree,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Typers.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => Typers.this.global.Symbol
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => List[MatchCodeGen.this.global.Tree]
-
-(=> (Nothing, Nothing)) => List[MatchCodeGen.this.global.Tree]
-1 times = 0ms
-
-
-
-String('\'%s\' expected instead of \'%s\'') => ?{def format: ?}
-
-String(''%s' expected instead of '%s'') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Unit => List[States.this.global.Tree]
-
-Unit => List[States.this.global.Tree]
-1 times = 4ms
-
-
-
-scala.collection.immutable.Map[scala.tools.asm.tree.AbstractInsnNode,List[scala.tools.asm.tree.AbstractInsnNode]] => ?{def +=: ?}
-
-scala.collection.immutable.Map[scala.tools.asm.tree.AbstractInsnNode,List[scala.tools.asm.tree.AbstractInsnNode]] => ?{def +=: ?}
-2 times = 0ms
-
-
-
-String('%s DefTrees with symbol \'%s\': %s') => ?{def format: ?}
-
-String('%s DefTrees with symbol '%s': %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((UnCurry.this.global.ValDef, UnCurry.this.global.ValDef)) => (A1, A2)
-
-((UnCurry.this.global.ValDef, UnCurry.this.global.ValDef)) => (A1, A2)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Type],Infer.this.global.Name,That]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Type],Infer.this.global.Name,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Parsers.this.global.Tree
-
-(=> (Nothing, Nothing)) => Parsers.this.global.Tree
-3 times = 0ms
-
-
-
-Array[scala.tools.asm.Type] => ?{def corresponds: ?}
-
-Array[scala.tools.asm.Type] => ?{def corresponds: ?}
-1 times = 9ms
-
-
-
-Scanners.this.global.nme.TYPEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.TYPEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('Base directory is `%s`') => ?{def format: ?}
-
-String('Base directory is `%s`') => ?{def format: ?}
-1 times = 0ms
-
-
-
-List[(scala.tools.nsc.io.AbstractFile, scala.tools.nsc.io.AbstractFile)] => ?{def ::=: ?}
-
-List[(scala.tools.nsc.io.AbstractFile, scala.tools.nsc.io.AbstractFile)] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-Int(46) => ?{def ->: ?}
-
-Int(46) => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[TypeDiagnostics.this.global.Type] => scala.collection.IterableLike[El2,Repr2]
-
-List[TypeDiagnostics.this.global.Type] => scala.collection.IterableLike[El2,Repr2]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.SubComponent],scala.tools.nsc.SubComponent,List[scala.tools.nsc.SubComponent]]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.SubComponent],scala.tools.nsc.SubComponent,List[scala.tools.nsc.SubComponent]]
-1 times = 0ms
-
-
-
-scala.tools.asm.tree.analysis.Frame[scala.tools.asm.tree.analysis.SourceValue] => ?{def getValue: ?}
-
-scala.tools.asm.tree.analysis.Frame[scala.tools.asm.tree.analysis.SourceValue] => ?{def getValue: ?}
-1 times = 0ms
-
-
-
-String(') %s %s(') => ?{def format: ?}
-
-String(') %s %s(') => ?{def format: ?}
-1 times = 0ms
-
-
-
-cname.type => ?{def getterName: ?}
-
-cname.type => ?{def getterName: ?}
-1 times = 0ms
-
-
-
-String('define %s as %s%s instead. (SLS 4.5)') => ?{def format: ?}
-
-String('define %s as %s%s instead. (SLS 4.5)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-String('%s %s unused or used in non-specializable positions.') => ?{def format: ?}
-
-String('%s %s unused or used in non-specializable positions.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => scala.reflect.io.AbstractFile
-
-(=> (Nothing, Nothing)) => scala.reflect.io.AbstractFile
-3 times = 0ms
-
-
-
-List[MatchApproximation.this.global.Symbol] => scala.collection.TraversableLike[El1,Repr1]
-
-List[MatchApproximation.this.global.Symbol] => scala.collection.TraversableLike[El1,Repr1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Symbol],ContextErrors.this.global.TypeBounds,That]
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Symbol],ContextErrors.this.global.TypeBounds,That]
-1 times = 10ms
-
-
-
-scala.math.Ordering[(Int, String)]
-
-scala.math.Ordering[(Int, String)]
-1 times = 3ms
-
-
-
-scala.math.Ordering[(Int, String)]->scala.math.Ordering[String]
-
-
-
-
-
-scala.math.Ordering[(Int, String)]->scala.math.Ordering[Int]
-
-
-
-
-
-ImplicitInfo.this.name.type => ?{def +: ?}
-
-ImplicitInfo.this.name.type => ?{def +: ?}
-2 times = 0ms
-
-
-
-Int(8) => scala.tools.nsc.typechecker.ContextMode
-
-Int(8) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.LONG.type),That]
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.LONG.type),That]
-1 times = 0ms
-
-
-
-String('WildcardType()') => scala.text.Document
-
-String('WildcardType()') => scala.text.Document
-1 times = 0ms
-
-
-
-String => ?{def capitalize: ?}
-
-String => ?{def capitalize: ?}
-1 times = 0ms
-
-
-
-(String, Option[String]) <:< (T, U)
-
-(String, Option[String]) <:< (T, U)
-1 times = 0ms
-
-
-
-(=> List[Int]) => ?{def ::=: ?}
-
-(=> List[Int]) => ?{def ::=: ?}
-2 times = 0ms
-
-
-
-innerClassSym.NameType => ?{def +: ?}
-
-innerClassSym.NameType => ?{def +: ?}
-1 times = 0ms
-
-
-
-prefix.type => ?{def size: ?}
-
-prefix.type => ?{def size: ?}
-2 times = 0ms
-
-
-
-((Nothing, Unit, Unit)) => NodePrinters.this.global.Name
-
-((Nothing, Unit, Unit)) => NodePrinters.this.global.Name
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Duplicators.this.global.Tree
-
-((Nothing, Nothing, Nothing)) => Duplicators.this.global.Tree
-12 times = 0ms
-
-
-
-((Nothing, Nothing)) => TreeDSL.this.global.Tree
-
-((Nothing, Nothing)) => TreeDSL.this.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.universe.analyzer.OpenImplicit],Typers.this.ImplicitCandidate,List[Typers.this.ImplicitCandidate]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.universe.analyzer.OpenImplicit],Typers.this.ImplicitCandidate,List[Typers.this.ImplicitCandidate]]
-1 times = 1ms
-
-
-
-(=> BCodeSkelBuilder.this.global.Symbol) => PlainSkelBuilder.this.Local
-
-(=> BCodeSkelBuilder.this.global.Symbol) => PlainSkelBuilder.this.Local
-1 times = 0ms
-
-
-
-Null <:< StringBuilder
-
-Null <:< StringBuilder
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Tree],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Tree],String,List[String]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[tools.nsc.backend.jvm.BTypes.InternalName]
-
-scala.reflect.ClassTag[tools.nsc.backend.jvm.BTypes.InternalName]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(EtaExpansion.this.global.ValDef, Boolean)],EtaExpansion.this.global.ValDef,List[EtaExpansion.this.global.ValDef]]
-
-scala.collection.generic.CanBuildFrom[List[(EtaExpansion.this.global.ValDef, Boolean)],EtaExpansion.this.global.ValDef,List[EtaExpansion.this.global.ValDef]]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => BCodeHelpers.this.global.AnnotationInfo
-
-(=> (Nothing, Nothing)) => BCodeHelpers.this.global.AnnotationInfo
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.AnnotationInfo],Reshape.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.AnnotationInfo],Reshape.this.global.Tree,That]
-1 times = 2ms
-
-
-
-String => ?{def stripMargin: ?}
-
-String => ?{def stripMargin: ?}
-13 times = 6ms
-
-
-
-List[UnCurry.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-
-List[UnCurry.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-Aliases.this.universe.WeakTypeTag[T]
-
-Aliases.this.universe.WeakTypeTag[T]
-1 times = 1ms
-
-
-
-Int(16) => scala.tools.nsc.typechecker.ContextMode
-
-Int(16) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-specArgs.type => ?{def corresponds: ?}
-
-specArgs.type => ?{def corresponds: ?}
-1 times = 0ms
-
-
-
-Namers.this.Context
-
-Namers.this.Context
-1 times = 0ms
-
-
-
-Solvable.this.cnf.type => ?{def ++: ?}
-
-Solvable.this.cnf.type => ?{def ++: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.ListMap[SymbolTables.this.global.Symbol,SymbolTables.this.global.Tree],(SymbolTables.this.global.Symbol, SymbolTables.this.global.Tree),scala.collection.immutable.ListMap[SymbolTables.this.global.Symbol,SymbolTables.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.ListMap[SymbolTables.this.global.Symbol,SymbolTables.this.global.Tree],(SymbolTables.this.global.Symbol, SymbolTables.this.global.Tree),scala.collection.immutable.ListMap[SymbolTables.this.global.Symbol,SymbolTables.this.global.Tree]]
-1 times = 3ms
-
-
-
-String('%d,%d: %s') => ?{def format: ?}
-
-String('%d,%d: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => PatternTypers.this.global.Tree
-
-((Nothing, Nothing)) => PatternTypers.this.global.Tree
-2 times = 1ms
-
-
-
-String('Unable to establish connection to server %s:%d') => ?{def format: ?}
-
-String('Unable to establish connection to server %s:%d') => ?{def format: ?}
-1 times = 0ms
-
-
-
-java.util.List[scala.tools.asm.Attribute] => ?{def asScala: ?}
-
-java.util.List[scala.tools.asm.Attribute] => ?{def asScala: ?}
-2 times = 1ms
-
-
-
-Scanners.this.global.nme.ABSTRACTkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.ABSTRACTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('|subclassing Classfile does not\n |make your annotation visible at runtime. If that is what\n |you want, you must write the annotation class in Java.') => ?{def stripMargin: ?}
-
-String('|subclassing Classfile does not
- |make your annotation visible at runtime. If that is what
- |you want, you must write the annotation class in Java.') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-(=> FastTrack.this.macros.global.Tree) => FastTrack.this.macros.global.Symbol
-
-(=> FastTrack.this.macros.global.Tree) => FastTrack.this.macros.global.Symbol
-6 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[java.util.Date]
-
-scala.reflect.ClassTag[java.util.Date]
-1 times = 0ms
-
-
-
-List[Namers.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-
-List[Namers.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-(=> List[Contexts.this.ImportInfo]) => ?{def ::=: ?}
-
-(=> List[Contexts.this.ImportInfo]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-String('\n |#!/bin/sh\n |#\n |\n |scala @@MAINCLASS@@ \'$@\'\n |') => ?{def stripMargin: ?}
-
-String('
- |#!/bin/sh
- |#
- |
- |scala @@MAINCLASS@@ '$@'
- |') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-String('while compiling') => ?{def ->: ?}
-
-String('while compiling') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Ordering[SymbolTrackers.this.global.Symbol]
-
-Ordering[SymbolTrackers.this.global.Symbol]
-2 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.treeInfo.global.Tree],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.treeInfo.global.Tree],String,List[String]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Tree],List[MatchTranslator.this.TreeMaker],That]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Tree],List[MatchTranslator.this.TreeMaker],That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Namers.this.global.ValDef]],List[Namers.this.global.ValDef],That]
-
-scala.collection.generic.CanBuildFrom[List[List[Namers.this.global.ValDef]],List[Namers.this.global.ValDef],That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Symbol],NamesDefaults.this.global.WildcardType.type,List[NamesDefaults.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Symbol],NamesDefaults.this.global.WildcardType.type,List[NamesDefaults.this.global.Type]]
-1 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.FloatClass.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.FloatClass.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.nsc.reporters.Reporter
-
-(=> (Nothing, Nothing)) => scala.tools.nsc.reporters.Reporter
-8 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, Option[String]),That]
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, Option[String]),That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[(String, Option[String])]
-
-scala.reflect.ClassTag[(String, Option[String])]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, Option[String]),That]->scala.reflect.ClassTag[(String, Option[String])]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[SymbolTrackers.this.Hierarchy],String,That]
-
-scala.collection.generic.CanBuildFrom[List[SymbolTrackers.this.Hierarchy],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TailCalls.this.global.Tree],TailCalls.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[TailCalls.this.global.Tree],TailCalls.this.global.Tree,That]
-1 times = 0ms
-
-
-
-str.type => ?{def splitAt: ?}
-
-str.type => ?{def splitAt: ?}
-1 times = 0ms
-
-
-
-scala.reflect.OptManifest[String]
-
-scala.reflect.OptManifest[String]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SymbolTrackers.this.global.Symbol],Object,That]
-
-scala.collection.generic.CanBuildFrom[List[SymbolTrackers.this.global.Symbol],Object,That]
-1 times = 0ms
-
-
-
-String('macroEngine') => ?{def ->: ?}
-
-String('macroEngine') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Array[String] => ?{def last: ?}
-
-Array[String] => ?{def last: ?}
-4 times = 2ms
-
-
-
-(=> Array[Long]) => Array[Class[_]]
-
-(=> Array[Long]) => Array[Class[_]]
-3 times = 0ms
-
-
-
-LambdaLift.this.global.AnnotationInfo => LambdaLift.this.global.Type
-
-LambdaLift.this.global.AnnotationInfo => LambdaLift.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[_1.Setting],String,That]
-
-scala.collection.generic.CanBuildFrom[List[_1.Setting],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[TreesAndTypesDomain.this.Type],TreesAndTypesDomain.this.Const,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[TreesAndTypesDomain.this.Type],TreesAndTypesDomain.this.Const,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[String,Char,Any]
-
-scala.collection.generic.CanBuildFrom[String,Char,Any]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Solution],MatchAnalyzer.this.CounterExample,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Solution],MatchAnalyzer.this.CounterExample,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.ValOrDefDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.ValOrDefDef,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Tree],ContextErrors.this.global.Type,List[ContextErrors.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Tree],ContextErrors.this.global.Type,List[ContextErrors.this.global.Type]]
-1 times = 0ms
-
-
-
-(=> List[scala.tools.asm.Handle]) => ?{def ::=: ?}
-
-(=> List[scala.tools.asm.Handle]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.HASHkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.HASHkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Array[Long] => ?{def take: ?}
-
-Array[Long] => ?{def take: ?}
-1 times = 1ms
-
-
-
-String('tvars.constr') => ?{def ->: ?}
-
-String('tvars.constr') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],DocComments.this.Symbol#TypeOfClonedSymbol,List[DocComments.this.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.Symbol],DocComments.this.Symbol#TypeOfClonedSymbol,List[DocComments.this.Symbol]]
-1 times = 1ms
-
-
-
-List[ClassfileParser.this.symbolTable.Type] => ?{def ::=: ?}
-
-List[ClassfileParser.this.symbolTable.Type] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],Typers.this.global.ValDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Int],Typers.this.global.ValDef,That]
-1 times = 0ms
-
-
-
-(=> List[String]) => ?{def +:=: ?}
-
-(=> List[String]) => ?{def +:=: ?}
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => MatchTreeMaking.this.global.Tree
-
-((Nothing, Nothing)) => MatchTreeMaking.this.global.Tree
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.ENUMkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.ENUMkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Unit => Typers.this.global.Type
-
-Unit => Typers.this.global.Type
-2 times = 0ms
-
-
-
-Array[(String, Option[String])] => ?{def toMap: ?}
-
-Array[(String, Option[String])] => ?{def toMap: ?}
-1 times = 0ms
-
-
-
-errTpe.type => ?{def +: ?}
-
-errTpe.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-ContextErrors.this.global.Symbol => ?{def +: ?}
-
-ContextErrors.this.global.Symbol => ?{def +: ?}
-1 times = 0ms
-
-
-
-callsite.callsiteInstruction.type => ?{def ->: ?}
-
-callsite.callsiteInstruction.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Int => JavaParsers.this.global.Position
-
-Int => JavaParsers.this.global.Position
-3 times = 3ms
-
-
-
-file.type => ?{def isScalaOrJavaSource: ?}
-
-file.type => ?{def isScalaOrJavaSource: ?}
-1 times = 0ms
-
-
-
-args.type => ?{def isEmpty: ?}
-
-args.type => ?{def isEmpty: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Typers.this.ClassForCaseCompanionAttachment]
-
-scala.reflect.ClassTag[Typers.this.ClassForCaseCompanionAttachment]
-1 times = 1ms
-
-
-
-Option[BCodeHelpers.this.global.AnnotationInfo] => scala.collection.GenTraversableOnce[?]
-
-Option[BCodeHelpers.this.global.AnnotationInfo] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.AnnotationInfo],Erasure.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.AnnotationInfo],Erasure.this.global.Type,That]
-1 times = 0ms
-
-
-
-props.type => ?{def asScala: ?}
-
-props.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[CleanUp.this.global.Symbol],CleanUp.this.global.Type,List[CleanUp.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[CleanUp.this.global.Symbol],CleanUp.this.global.Type,List[CleanUp.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PerRunReporting.this.ConditionalWarning],(scala.reflect.internal.util.Position, (String, String)),That]
-
-scala.collection.generic.CanBuildFrom[List[PerRunReporting.this.ConditionalWarning],(scala.reflect.internal.util.Position, (String, String)),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parser.this.treeBuilder.global.gen.global.Tree],Parsers.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Parser.this.treeBuilder.global.gen.global.Tree],Parsers.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],(SpecializeTypes.this.global.Type, SpecializeTypes.this.global.Type),That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],(SpecializeTypes.this.global.Type, SpecializeTypes.this.global.Type),That]
-1 times = 0ms
-
-
-
-String('specialized %s on %s') => ?{def format: ?}
-
-String('specialized %s on %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-mix.type => ?{def +: ?}
-
-mix.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Int],String,That]
-1 times = 0ms
-
-
-
-Typers.this.global.AnnotationInfo => Typers.this.global.Type
-
-Typers.this.global.AnnotationInfo => Typers.this.global.Type
-3 times = 0ms
-
-
-
-(SymbolTrackers.this.global.Symbol, Long) <:< (T, U)
-
-(SymbolTrackers.this.global.Symbol, Long) <:< (T, U)
-1 times = 0ms
-
-
-
-pos.type => ?{def ->: ?}
-
-pos.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-((MatchApproximation.this.global.Symbol, MatchApproximation.this.global.Tree)) => (A1, A2)
-
-((MatchApproximation.this.global.Symbol, MatchApproximation.this.global.Tree)) => (A1, A2)
-1 times = 0ms
-
-
-
-String(' in %s:%s:%s') => ?{def format: ?}
-
-String(' in %s:%s:%s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.reflect.api.Universe#TypeTag[DummyImplicit]
-
-scala.reflect.api.Universe#TypeTag[DummyImplicit]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Int
-
-((Nothing, Nothing)) => Int
-42 times = 4ms
-
-
-
-java.util.List[scala.tools.asm.tree.MethodNode] => ?{def asScala: ?}
-
-java.util.List[scala.tools.asm.tree.MethodNode] => ?{def asScala: ?}
-7 times = 4ms
-
-
-
-Implicits.this.global.EmptyTree.type => Implicits.this.SearchResult
-
-Implicits.this.global.EmptyTree.type => Implicits.this.SearchResult
-4 times = 0ms
-
-
-
-Global.this.pickler.type => ?{def ->: ?}
-
-Global.this.pickler.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Array[String] => ?{def dropRight: ?}
-
-Array[String] => ?{def dropRight: ?}
-1 times = 1ms
-
-
-
-Scanners.this.global.nme.EQUALSkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.EQUALSkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Array[scala.tools.asm.Type] => ?{def ++: ?}
-
-Array[scala.tools.asm.Type] => ?{def ++: ?}
-1 times = 0ms
-
-
-
-Fields.this.global.Tree => Fields.this.global.Type
-
-Fields.this.global.Tree => Fields.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[java.net.URL],scala.tools.nsc.util.ClassPath,That]
-
-scala.collection.generic.CanBuildFrom[Seq[java.net.URL],scala.tools.nsc.util.ClassPath,That]
-1 times = 1ms
-
-
-
-(=> (Nothing, Unit, Unit)) => Macros.this.global.Name
-
-(=> (Nothing, Unit, Unit)) => Macros.this.global.Name
-1 times = 0ms
-
-
-
-String('ClassfileLoader setting %s.associatedFile = %s') => ?{def format: ?}
-
-String('ClassfileLoader setting %s.associatedFile = %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Tree],(Constructors.this.global.Symbol, Constructors.this.global.Tree),That]
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Tree],(Constructors.this.global.Symbol, Constructors.this.global.Tree),That]
-1 times = 1ms
-
-
-
-Array[Option[scala.tools.asm.tree.AbstractInsnNode]] => (Int => Option[scala.tools.asm.tree.AbstractInsnNode])
-
-Array[Option[scala.tools.asm.tree.AbstractInsnNode]] => (Int => Option[scala.tools.asm.tree.AbstractInsnNode])
-1 times = 0ms
-
-
-
-currentInstructions.type => ?{def foreach: ?}
-
-currentInstructions.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Constructors.this.global.Symbol
-
-(=> (Nothing, Nothing)) => Constructors.this.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[TreeMakers.this.TreeMaker]],String,That]
-
-scala.collection.generic.CanBuildFrom[List[List[TreeMakers.this.TreeMaker]],String,That]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.VIEWBOUNDkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.VIEWBOUNDkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Unit)) => SpecializeTypes.this.global.Symbol
-
-((Nothing, Nothing, Unit)) => SpecializeTypes.this.global.Symbol
-1 times = 0ms
-
-
-
-java.util.List[String] => ?{def asScala: ?}
-
-java.util.List[String] => ?{def asScala: ?}
-4 times = 2ms
-
-
-
-Iterator[Reifiers.this.global.Apply] => scala.collection.GenTraversableOnce[B]
-
-Iterator[Reifiers.this.global.Apply] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-String('\\$[$\\w]+') => ?{def r: ?}
-
-String('\$[$\w]+') => ?{def r: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTracker.this.Node],SymbolTracker.this.Node,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTracker.this.Node],SymbolTracker.this.Node,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => ExtensionMethods.this.global.gen.global.Symbol
-
-((Nothing, Nothing)) => ExtensionMethods.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-segments.type => ?{def last: ?}
-
-segments.type => ?{def last: ?}
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => SyntheticMethods.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing)) => SyntheticMethods.this.global.Symbol
-6 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Long
-
-(=> (Nothing, Nothing)) => Long
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Type],Option[String],To]
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Type],Option[String],To]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[FormatInterpolator.this.c.universe.Tree],(FormatInterpolator.this.c.universe.Tree, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[FormatInterpolator.this.c.universe.Tree],(FormatInterpolator.this.c.universe.Tree, Int),That]
-1 times = 0ms
-
-
-
-((Nothing, Unit)) => Printers.this.Name
-
-((Nothing, Unit)) => Printers.this.Name
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.tools.asm.Attribute]
-
-scala.reflect.ClassTag[scala.tools.asm.Attribute]
-2 times = 2ms
-
-
-
-None.type => scala.collection.GenTraversableOnce[?]
-
-None.type => scala.collection.GenTraversableOnce[?]
-9 times = 3ms
-
-
-
-Option[(Typers.this.global.TermName, Typers.this.global.Tree)] => scala.collection.GenTraversableOnce[?]
-
-Option[(Typers.this.global.TermName, Typers.this.global.Tree)] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-(=> Validators.this.global.Tree) => Validators.this.global.Type
-
-(=> Validators.this.global.Tree) => Validators.this.global.Type
-1 times = 0ms
-
-
-
-GenTrees.this.SymbolTable => ?{def ++=: ?}
-
-GenTrees.this.SymbolTable => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-settings.YdisableFlatCpCaching.type => ?{def ||: ?}
-
-settings.YdisableFlatCpCaching.type => ?{def ||: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.Type],Delambdafy.this.global.Type,List[Delambdafy.this.global.specializeTypes.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.Type],Delambdafy.this.global.Type,List[Delambdafy.this.global.specializeTypes.global.Type]]
-1 times = 0ms
-
-
-
-List[Interface.this.global.Symbol] => scala.collection.TraversableLike[El1,Repr1]
-
-List[Interface.this.global.Symbol] => scala.collection.TraversableLike[El1,Repr1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Mixin.this.global.Symbol],Mixin.this.global.Assign,That]
-
-scala.collection.generic.CanBuildFrom[List[Mixin.this.global.Symbol],Mixin.this.global.Assign,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[java.net.URL]
-
-((Nothing, Nothing)) => Array[java.net.URL]
-1 times = 0ms
-
-
-
-List[(BCodeBodyBuilder.this.global.Symbol, scala.tools.asm.Label)] => ?{def ::=: ?}
-
-List[(BCodeBodyBuilder.this.global.Symbol, scala.tools.asm.Label)] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Tree],(Constructors.this.global.Tree, Constructors.this.global.Tree),That]
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Tree],(Constructors.this.global.Tree, Constructors.this.global.Tree),That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => NamesDefaults.this.global.Symbol
-
-((Nothing, Nothing)) => NamesDefaults.this.global.Symbol
-4 times = 0ms
-
-
-
-Parsers.this.global.Modifiers => ?{def |=: ?}
-
-Parsers.this.global.Modifiers => ?{def |=: ?}
-8 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.treeInfo.global.Tree],ExtensionMethods.this.global.treeInfo.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.treeInfo.global.Tree],ExtensionMethods.this.global.treeInfo.global.Type,That]
-1 times = 0ms
-
-
-
-(=> Duplicators.this.global.AnnotationInfo) => Duplicators.this.global.Type
-
-(=> Duplicators.this.global.AnnotationInfo) => Duplicators.this.global.Type
-8 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => FormatInterpolator.this.c.universe.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => FormatInterpolator.this.c.universe.Symbol
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Object],Object,That]
-
-scala.collection.generic.CanBuildFrom[Seq[Object],Object,That]
-1 times = 2ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => StringBuffer
-
-(=> (Nothing, Nothing, Nothing)) => StringBuffer
-3 times = 0ms
-
-
-
-(=> Char('*')) => CharSequence
-
-(=> Char('*')) => CharSequence
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Symbol],TreeAndTypeAnalysis.this.global.Symbol,List[TreeAndTypeAnalysis.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Symbol],TreeAndTypeAnalysis.this.global.Symbol,List[TreeAndTypeAnalysis.this.global.Symbol]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.beans.BeanInfo]
-
-scala.reflect.ClassTag[scala.beans.BeanInfo]
-1 times = 1ms
-
-
-
-tools.nsc.backend.jvm.BackendReporting.OptimizerWarning
-
-tools.nsc.backend.jvm.BackendReporting.OptimizerWarning
-6 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => ExtensionMethods.this.global.gen.global.Symbol
-
-(=> (Nothing, Nothing)) => ExtensionMethods.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-(=> (Nothing, Unit)) => String
-
-(=> (Nothing, Unit)) => String
-1 times = 0ms
-
-
-
-List[TypeDiagnostics.this.global.Symbol] => scala.collection.IterableLike[El3,Repr3]
-
-List[TypeDiagnostics.this.global.Symbol] => scala.collection.IterableLike[El3,Repr3]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[SymbolTracker.this.Node] => List[SymbolTracker.this.Node]
-
-scala.collection.immutable.Set[SymbolTracker.this.Node] => List[SymbolTracker.this.Node]
-2 times = 3ms
-
-
-
-Ordering[SymbolTracker.this.Node]
-
-Ordering[SymbolTracker.this.Node]
-3 times = 2ms
-
-
-
-scala.collection.immutable.Set[SymbolTracker.this.Node] => List[SymbolTracker.this.Node]->Ordering[SymbolTracker.this.Node]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.AnnotationInfo],BCodeHelpers.this.global.AnnotationInfo,That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeHelpers.this.global.AnnotationInfo],BCodeHelpers.this.global.AnnotationInfo,That]
-1 times = 0ms
-
-
-
-String('Welcome to Scala %1$#s (%3$s, Java %2$s).\n |Type in expressions for evaluation. Or try :help.') => ?{def stripMargin: ?}
-
-String('Welcome to Scala %1$#s (%3$s, Java %2$s).
- |Type in expressions for evaluation. Or try :help.') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-String('applied implicit conversion from %s to %s = %s') => ?{def format: ?}
-
-String('applied implicit conversion from %s to %s = %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[PostProcessorFrontendAccessImpl.this.global.Symbol,scala.tools.nsc.io.AbstractFile],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[PostProcessorFrontendAccessImpl.this.global.Symbol,scala.tools.nsc.io.AbstractFile],String,That]
-1 times = 1ms
-
-
-
-String('reifying bound type %s (underlying type is %s)') => ?{def format: ?}
-
-String('reifying bound type %s (underlying type is %s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> List[Flatten.this.global.Symbol]) => Flatten.this.global.Type
-
-(=> List[Flatten.this.global.Symbol]) => Flatten.this.global.Type
-1 times = 0ms
-
-
-
-scala.languageFeature.postfixOps
-
-scala.languageFeature.postfixOps
-44 times = 6ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Sym],scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])],That]
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Sym],scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])],That]
-1 times = 0ms
-
-
-
-scala.tools.nsc.io.Jar.AttributeMap => ?{def asScala: ?}
-
-scala.tools.nsc.io.Jar.AttributeMap => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-(=> Namers.this.global.Scope) => Namers.this.global.Type
-
-(=> Namers.this.global.Scope) => Namers.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,scala.tools.asm.tree.AbstractInsnNode,Set[scala.tools.asm.tree.AbstractInsnNode]]
-
-scala.collection.generic.CanBuildFrom[Nothing,scala.tools.asm.tree.AbstractInsnNode,Set[scala.tools.asm.tree.AbstractInsnNode]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Const],String,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Const],String,That]
-1 times = 2ms
-
-
-
-((Nothing, Nothing)) => EtaExpansion.this.global.gen.global.Symbol
-
-((Nothing, Nothing)) => EtaExpansion.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[(CNF.this.Sym, Int)],(CNF.this.Sym, Int),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[(CNF.this.Sym, Int)],(CNF.this.Sym, Int),That]
-1 times = 0ms
-
-
-
-prev.type => ?{def DOT: ?}
-
-prev.type => ?{def DOT: ?}
-1 times = 0ms
-
-
-
-String('%s (%s)') => ?{def format: ?}
-
-String('%s (%s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.BOOL.type),That]
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.BOOL.type),That]
-1 times = 0ms
-
-
-
-MatchOptimization.this.global.gen.global.RefTree => ?{def DOT: ?}
-
-MatchOptimization.this.global.gen.global.RefTree => ?{def DOT: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.WHILEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.WHILEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Reifier.this.SymbolTable => ?{def ++=: ?}
-
-Reifier.this.SymbolTable => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.runtime.Nothing$]
-
-scala.reflect.ClassTag[scala.runtime.Nothing$]
-1 times = 1ms
-
-
-
-((Nothing, Nothing)) => CleanUp.this.global.analyzer.global.Symbol
-
-((Nothing, Nothing)) => CleanUp.this.global.analyzer.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(String, tools.nsc.backend.jvm.BTypes.MethodInlineInfo),Map[String,tools.nsc.backend.jvm.BTypes.MethodInlineInfo]]
-
-scala.collection.generic.CanBuildFrom[Nothing,(String, tools.nsc.backend.jvm.BTypes.MethodInlineInfo),Map[String,tools.nsc.backend.jvm.BTypes.MethodInlineInfo]]
-1 times = 0ms
-
-
-
-String('typing implicit: %s %s') => ?{def format: ?}
-
-String('typing implicit: %s %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.DOkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.DOkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-
-(=> (List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-1 times = 0ms
-
-
-
-Int => ?{def max: ?}
-
-Int => ?{def max: ?}
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.net.URI
-
-(=> (Nothing, Nothing)) => java.net.URI
-11 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.global.Tree],AccessorSynthesis.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.global.Tree],AccessorSynthesis.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.Tree],UnCurry.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.Tree],UnCurry.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Symbol],ExtensionMethods.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Symbol],ExtensionMethods.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[StdAttachments.this.DynamicRewriteAttachment.type]
-
-scala.reflect.ClassTag[StdAttachments.this.DynamicRewriteAttachment.type]
-3 times = 2ms
-
-
-
-((Nothing, (Any, Any) => Nothing)) => Array[Int]
-
-((Nothing, (Any, Any) => Nothing)) => Array[Int]
-1 times = 0ms
-
-
-
-String('%10s: %s') => ?{def format: ?}
-
-String('%10s: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[BCodeHelpers.this.global.AnnotationInfo]],(List[BCodeHelpers.this.global.AnnotationInfo], Int),That]
-
-scala.collection.generic.CanBuildFrom[List[List[BCodeHelpers.this.global.AnnotationInfo]],(List[BCodeHelpers.this.global.AnnotationInfo], Int),That]
-1 times = 0ms
-
-
-
-mixin.type => ?{def +: ?}
-
-mixin.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-List[Any] => ?{def ::=: ?}
-
-List[Any] => ?{def ::=: ?}
-1 times = 3ms
-
-
-
-(=> Duplicators.this.global.Tree) => Duplicators.this.global.Type
-
-(=> Duplicators.this.global.Tree) => Duplicators.this.global.Type
-8 times = 0ms
-
-
-
-TreeAndTypeAnalysis.this.global.AnnotationInfo => TreeAndTypeAnalysis.this.global.Type
-
-TreeAndTypeAnalysis.this.global.AnnotationInfo => TreeAndTypeAnalysis.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.AbsTypeError],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.AbsTypeError],String,That]
-1 times = 0ms
-
-
-
-String('macro expansion has failed: %s') => ?{def format: ?}
-
-String('macro expansion has failed: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-nullnessAnalyzer.type => ?{def frameAt: ?}
-
-nullnessAnalyzer.type => ?{def frameAt: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[T],(T, T),That]
-
-scala.collection.generic.CanBuildFrom[Seq[T],(T, T),That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[BCodeHelpers.this.global.mixer.NeedStaticImpl.type]
-
-scala.reflect.ClassTag[BCodeHelpers.this.global.mixer.NeedStaticImpl.type]
-1 times = 3ms
-
-
-
-List[NamesDefaults.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-
-List[NamesDefaults.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.UseInvokeSpecial.type]
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.UseInvokeSpecial.type]
-1 times = 1ms
-
-
-
-(=> Array[Long]) => Long
-
-(=> Array[Long]) => Long
-2 times = 0ms
-
-
-
-scriptFile.type => ?{def stripSuffix: ?}
-
-scriptFile.type => ?{def stripSuffix: ?}
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,PostProcessor.this.bTypes.ClassBType] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,PostProcessor.this.bTypes.ClassBType] => ?{def get: ?}
-1 times = 0ms
-
-
-
-Unit => Int
-
-Unit => Int
-90 times = 13ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],scala.reflect.internal.Variance,List[scala.reflect.internal.Variance]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],scala.reflect.internal.Variance,List[scala.reflect.internal.Variance]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[ZipArchiveFileLookup.this.archive.DirEntry],FileEntryType,Seq[FileEntryType]]
-
-scala.collection.generic.CanBuildFrom[Seq[ZipArchiveFileLookup.this.archive.DirEntry],FileEntryType,Seq[FileEntryType]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Type],String,That]
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.Type],String,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Unit)) => scala.tools.nsc.io.Path
-
-(=> (Nothing, Unit)) => scala.tools.nsc.io.Path
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[Char]
-
-((Nothing, Nothing)) => Array[Char]
-2 times = 0ms
-
-
-
-String('%s(') => ?{def format: ?}
-
-String('%s(') => ?{def format: ?}
-1 times = 2ms
-
-
-
-Option[String] => scala.collection.GenTraversableOnce[B]
-
-Option[String] => scala.collection.GenTraversableOnce[B]
-1 times = 1ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BoxUnbox.this.postProcessor.bTypes.ClassInfo] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BoxUnbox.this.postProcessor.bTypes.ClassInfo] => ?{def get: ?}
-2 times = 1ms
-
-
-
-Array[Char] => IndexedSeq[Char]
-
-Array[Char] => IndexedSeq[Char]
-1 times = 1ms
-
-
-
-Array[String] => ?{def headOption: ?}
-
-Array[String] => ?{def headOption: ?}
-1 times = 0ms
-
-
-
-imeth.NameType => ?{def +: ?}
-
-imeth.NameType => ?{def +: ?}
-3 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],Inliner.this.postProcessor.inlinerHeuristics.InlineRequest,That]
-
-scala.collection.generic.CanBuildFrom[List[Inliner.this.postProcessor.inlinerHeuristics.InlineRequest],Inliner.this.postProcessor.inlinerHeuristics.InlineRequest,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.nsc.Settings#Setting],String,String => Boolean]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.nsc.Settings#Setting],String,String => Boolean]
-1 times = 0ms
-
-
-
-List[Checkable.this.global.Type] => scala.collection.TraversableLike[El1,Repr1]
-
-List[Checkable.this.global.Type] => scala.collection.TraversableLike[El1,Repr1]
-1 times = 0ms
-
-
-
-String('$md') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-
-String('$md') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-1 times = 0ms
-
-
-
-(=> Unit) => EtaExpansion.this.global.Type
-
-(=> Unit) => EtaExpansion.this.global.Type
-1 times = 0ms
-
-
-
-(=> Parsers.this.global.Modifiers) => ?{def |=: ?}
-
-(=> Parsers.this.global.Modifiers) => ?{def |=: ?}
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.gen.global.Tree],(Typers.this.global.Name, Option[Typers.this.global.ClassfileAnnotArg]),That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.gen.global.Tree],(Typers.this.global.Name, Option[Typers.this.global.ClassfileAnnotArg]),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.TypeEnv],SpecializeTypes.this.global.Symbol,List[SpecializeTypes.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.TypeEnv],SpecializeTypes.this.global.Symbol,List[SpecializeTypes.this.global.Symbol]]
-1 times = 0ms
-
-
-
-Double => Parsers.this.Offset
-
-Double => Parsers.this.Offset
-2 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[AccessorSynthesis.this.global.Name,List[AccessorSynthesis.this.global.Symbol]],AccessorSynthesis.this.global.TermSymbol,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[AccessorSynthesis.this.global.Name,List[AccessorSynthesis.this.global.Symbol]],AccessorSynthesis.this.global.TermSymbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, String),That]
-
-scala.collection.generic.CanBuildFrom[List[String],(String, String),That]
-1 times = 0ms
-
-
-
-Array[scala.tools.asm.Label] => Array[String]
-
-Array[scala.tools.asm.Label] => Array[String]
-2 times = 0ms
-
-
-
-JavaParsers.this.global.Modifiers => ?{def |=: ?}
-
-JavaParsers.this.global.Modifiers => ?{def |=: ?}
-3 times = 0ms
-
-
-
-String('inferring implicit %s of type %s, macros = %s') => ?{def format: ?}
-
-String('inferring implicit %s of type %s, macros = %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.AbstractInsnNode
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.AbstractInsnNode
-14 times = 3ms
-
-
-
-String('missing end tag in XML literal for <%s>') => ?{def format: ?}
-
-String('missing end tag in XML literal for <%s>') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.languageFeature.higherKinds
-
-scala.languageFeature.higherKinds
-1 times = 0ms
-
-
-
-SymbolTables.this.SymbolTable => ?{def +=: ?}
-
-SymbolTables.this.SymbolTable => ?{def +=: ?}
-1 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.BOOL.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.BOOL.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Typers.this.universe.analyzer.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => Typers.this.universe.analyzer.global.Tree
-1 times = 0ms
-
-
-
-List[Mixin.this.global.Symbol] => ?{def ::=: ?}
-
-List[Mixin.this.global.Symbol] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-Global.this.analyzer.namerFactory.type => ?{def ->: ?}
-
-Global.this.analyzer.namerFactory.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],scala.reflect.internal.Variance,That]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],scala.reflect.internal.Variance,That]
-1 times = 0ms
-
-
-
-(=> Unit) => java.io.FilenameFilter
-
-(=> Unit) => java.io.FilenameFilter
-1 times = 0ms
-
-
-
-Unit => Constructors.this.global.Modifiers
-
-Unit => Constructors.this.global.Modifiers
-2 times = 0ms
-
-
-
-Array[StackTraceElement] => ?{def reverse: ?}
-
-Array[StackTraceElement] => ?{def reverse: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(AnalyzerPlugins.this.MacroPlugin, Option[T])],(AnalyzerPlugins.this.MacroPlugin, T),That]
-
-scala.collection.generic.CanBuildFrom[List[(AnalyzerPlugins.this.MacroPlugin, Option[T])],(AnalyzerPlugins.this.MacroPlugin, T),That]
-1 times = 0ms
-
-
-
-Array[Char] => ?{def drop: ?}
-
-Array[Char] => ?{def drop: ?}
-1 times = 3ms
-
-
-
-scala.reflect.ClassTag[Delambdafy.this.global.OuterArgCanBeElided.type]
-
-scala.reflect.ClassTag[Delambdafy.this.global.OuterArgCanBeElided.type]
-1 times = 5ms
-
-
-
-(=> (Nothing, Nothing)) => MatchTreeMaking.this.global.Tree
-
-(=> (Nothing, Nothing)) => MatchTreeMaking.this.global.Tree
-1 times = 0ms
-
-
-
-(=> Array[Unit]) => Array[Int]
-
-(=> Array[Unit]) => Array[Int]
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.AnnotationInfo],RefChecks.this.global.Type,List[RefChecks.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.AnnotationInfo],RefChecks.this.global.Type,List[RefChecks.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[CommonSubconditionElimination.this.Test],(MatchOptimization.this.global.Symbol, MatchOptimization.this.global.gen.global.RefTree),That]
-
-scala.collection.generic.CanBuildFrom[List[CommonSubconditionElimination.this.Test],(MatchOptimization.this.global.Symbol, MatchOptimization.this.global.gen.global.RefTree),That]
-1 times = 1ms
-
-
-
-String('@tparam') => ?{def ->: ?}
-
-String('@tparam') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Unapplies.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => Unapplies.this.global.Symbol
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => SymbolTables.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => SymbolTables.this.global.Symbol
-6 times = 0ms
-
-
-
-((MatchOptimization.this.global.Symbol, MatchOptimization.this.global.gen.global.RefTree)) => (A1, A2)
-
-((MatchOptimization.this.global.Symbol, MatchOptimization.this.global.gen.global.RefTree)) => (A1, A2)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],Placeholders.this.global.TermName,Set[Placeholders.this.global.Name]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],Placeholders.this.global.TermName,Set[Placeholders.this.global.Name]]
-1 times = 17ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Annotated,List[Typers.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Annotated,List[Typers.this.global.Tree]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Tree),That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Symbol],(SpecializeTypes.this.global.Symbol, SpecializeTypes.this.global.Tree),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit],scala.tools.nsc.transform.patmat.Lit,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit],scala.tools.nsc.transform.patmat.Lit,That]
-1 times = 0ms
-
-
-
-input.type => ?{def split(x$1: ? >: Char(' ')): ?}
-
-input.type => ?{def split(x$1: ? >: Char(' ')): ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Erasure.this.global.SAMFunction]
-
-scala.reflect.ClassTag[Erasure.this.global.SAMFunction]
-1 times = 1ms
-
-
-
-((List[RefChecks.this.global.Type], List[RefChecks.this.global.TypeBounds])) => ?{def zipped: ?}
-
-((List[RefChecks.this.global.Type], List[RefChecks.this.global.TypeBounds])) => ?{def zipped: ?}
-2 times = 0ms
-
-
-
-TypeDiagnostics.this.global.TypeTag[DummyImplicit]
-
-TypeDiagnostics.this.global.TypeTag[DummyImplicit]
-1 times = 5ms
-
-
-
-NamesDefaults.this.Context
-
-NamesDefaults.this.Context
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MultiChoiceSetting.this.domain.Value],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[MultiChoiceSetting.this.domain.Value],String,List[String]]
-1 times = 0ms
-
-
-
-Macros.this.global.Tree => Macros.this.global.Type
-
-Macros.this.global.Tree => Macros.this.global.Type
-1 times = 0ms
-
-
-
-List[RefChecks.this.global.Type] => scala.collection.TraversableLike[El1,Repr1]
-
-List[RefChecks.this.global.Type] => scala.collection.TraversableLike[El1,Repr1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Symbol],ExtensionMethods.this.global.Symbol,List[ExtensionMethods.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Symbol],ExtensionMethods.this.global.Symbol,List[ExtensionMethods.this.global.Symbol]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Type],Infer.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Type],Infer.this.global.Type,That]
-1 times = 0ms
-
-
-
-CleanUp.this.global.Apply => ?{def DOT: ?}
-
-CleanUp.this.global.Apply => ?{def DOT: ?}
-2 times = 0ms
-
-
-
-Int(0) => scala.tools.nsc.typechecker.ContextMode
-
-Int(0) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-(=> Array[BCodeHelpers.this.bTypes.BType]) => Array[String]
-
-(=> Array[BCodeHelpers.this.bTypes.BType]) => Array[String]
-1 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.ByteClass.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.ByteClass.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => ?{def &&: ?}
-
-scala.tools.nsc.Settings#BooleanSetting => ?{def &&: ?}
-20 times = 10ms
-
-
-
-String('signature') => ?{def ->: ?}
-
-String('signature') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, Any)],Macros.this.global.Assign,That]
-
-scala.collection.generic.CanBuildFrom[List[(String, Any)],Macros.this.global.Assign,That]
-1 times = 0ms
-
-
-
-String('site') => ?{def ->: ?}
-
-String('site') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.AnnotationInfo],RefChecks.this.global.Tree,List[RefChecks.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.AnnotationInfo],RefChecks.this.global.Tree,List[RefChecks.this.global.Tree]]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: ?V]
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.analysis.Frame[_ <: ?V]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Any],String,That]
-
-scala.collection.generic.CanBuildFrom[Seq[Any],String,That]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[Reporting.this.Symbol]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[Reporting.this.Symbol]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-(=> Array[Unit]) => Array[CNF.this.Clause]
-
-(=> Array[Unit]) => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[BoxUnbox.this.BoxCreation]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[BoxUnbox.this.BoxCreation]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-String('library version') => ?{def ->: ?}
-
-String('library version') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,scala.tools.nsc.classpath.ClassFileEntryImpl,Seq[scala.tools.nsc.classpath.ClassFileEntry]]
-
-scala.collection.generic.CanBuildFrom[Nothing,scala.tools.nsc.classpath.ClassFileEntryImpl,Seq[scala.tools.nsc.classpath.ClassFileEntry]]
-1 times = 0ms
-
-
-
-implMethodsArray.type => ?{def grouped: ?}
-
-implMethodsArray.type => ?{def grouped: ?}
-1 times = 0ms
-
-
-
-SyntheticMethods.this.global.Tree => ?{def ANY_EQ: ?}
-
-SyntheticMethods.this.global.Tree => ?{def ANY_EQ: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Scanners.this.global.CompilationUnit
-
-((Nothing, Nothing)) => Scanners.this.global.CompilationUnit
-2 times = 0ms
-
-
-
-String('inferring implicit %s (macros = %s): ') => ?{def format: ?}
-
-String('inferring implicit %s (macros = %s): ') => ?{def format: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.ELSEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.ELSEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Flatten.this.global.ScopeEntry],Flatten.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Flatten.this.global.ScopeEntry],Flatten.this.global.Symbol,That]
-1 times = 1ms
-
-
-
-((Nothing, Nothing)) => scala.tools.nsc.Settings
-
-((Nothing, Nothing)) => scala.tools.nsc.Settings
-11 times = 16ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashSet[CompilerCommand.this.settings.Setting],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashSet[CompilerCommand.this.settings.Setting],String,That]
-1 times = 16ms
-
-
-
-scala.reflect.ClassTag[Typers.this.global.InlineAnnotatedAttachment]
-
-scala.reflect.ClassTag[Typers.this.global.InlineAnnotatedAttachment]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[BigDecimal]
-
-scala.reflect.ClassTag[BigDecimal]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Set[scala.tools.asm.tree.AbstractInsnNode]],Set[scala.tools.asm.tree.AbstractInsnNode],Vector[Set[scala.tools.asm.tree.AbstractInsnNode]]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Set[scala.tools.asm.tree.AbstractInsnNode]],Set[scala.tools.asm.tree.AbstractInsnNode],Vector[Set[scala.tools.asm.tree.AbstractInsnNode]]]
-1 times = 3ms
-
-
-
-List[Typers.this.global.Type] => scala.collection.GenTraversableOnce[B]
-
-List[Typers.this.global.Type] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Duplicators.this.global.Symbol],(Duplicators.this.global.Symbol, Duplicators.this.global.Type),That]
-
-scala.collection.generic.CanBuildFrom[List[Duplicators.this.global.Symbol],(Duplicators.this.global.Symbol, Duplicators.this.global.Type),That]
-1 times = 0ms
-
-
-
-x$11.type => ?{def ->: ?}
-
-x$11.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Symbol],SymbolTracker.this.Node,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Symbol],SymbolTracker.this.Node,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Interface.this.global.analyzer.global.Tree
-
-((Nothing, Nothing)) => Interface.this.global.analyzer.global.Tree
-1 times = 0ms
-
-
-
-_1.type => Boolean
-
-_1.type => Boolean
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[utils$1.global.Symbol],utils$1.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[utils$1.global.Symbol],utils$1.global.Tree,That]
-1 times = 5ms
-
-
-
-Macros.this.global.AnnotationInfo => Macros.this.global.Type
-
-Macros.this.global.AnnotationInfo => Macros.this.global.Type
-1 times = 0ms
-
-
-
-(=> List[LambdaLift.this.global.Symbol]) => LambdaLift.this.global.Type
-
-(=> List[LambdaLift.this.global.Symbol]) => LambdaLift.this.global.Type
-1 times = 0ms
-
-
-
-String('Idle timeout exceeded on port %d; exiting') => ?{def format: ?}
-
-String('Idle timeout exceeded on port %d; exiting') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Option[(scala.collection.immutable.IntMapUtils.Int, Product with Serializable with CallGraph.this.ArgInfo)] => scala.collection.GenTraversableOnce[?]
-
-Option[(scala.collection.immutable.IntMapUtils.Int, Product with Serializable with CallGraph.this.ArgInfo)] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-bf.type => ?{def foreach: ?}
-
-bf.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[TreeMakers.this.TreeMaker]],TreeMakers.this.Casegen => MatchTreeMaking.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[List[TreeMakers.this.TreeMaker]],TreeMakers.this.Casegen => MatchTreeMaking.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],scala.tools.nsc.classpath.ClassPathEntries,That]
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],scala.tools.nsc.classpath.ClassPathEntries,That]
-1 times = 1ms
-
-
-
-Scanners.this.global.nme.ATkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.ATkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => TreeGen.this.global.ValDef
-
-((Nothing, Nothing)) => TreeGen.this.global.ValDef
-2 times = 0ms
-
-
-
-(=> Unit) => StringBuilder
-
-(=> Unit) => StringBuilder
-25 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.ValDef],Parsers.this.global.Ident,That]
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.ValDef],Parsers.this.global.Ident,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Delambdafy.this.global.analyzer.global.Tree
-
-(=> (Nothing, Nothing)) => Delambdafy.this.global.analyzer.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[RefChecks.this.global.Symbol],RefChecks.this.global.TermName,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[RefChecks.this.global.Symbol],RefChecks.this.global.TermName,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.CounterExample],String,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.CounterExample],String,That]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[InlinerHeuristics.this.InlineRequest]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[InlinerHeuristics.this.InlineRequest]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.UseCase],(DocComments.this.Symbol, String, DocComments.this.Position),That]
-
-scala.collection.generic.CanBuildFrom[List[DocComments.this.UseCase],(DocComments.this.Symbol, String, DocComments.this.Position),That]
-1 times = 0ms
-
-
-
-String('\'%s\' does not accept multiple arguments') => ?{def format: ?}
-
-String(''%s' does not accept multiple arguments') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Array[Byte]
-
-((Nothing, Nothing, Nothing)) => Array[Byte]
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[EtaExpansion.this.global.Symbol],(EtaExpansion.this.global.ValDef, Boolean),List[(EtaExpansion.this.global.ValDef, Boolean)]]
-
-scala.collection.generic.CanBuildFrom[List[EtaExpansion.this.global.Symbol],(EtaExpansion.this.global.ValDef, Boolean),List[(EtaExpansion.this.global.ValDef, Boolean)]]
-1 times = 0ms
-
-
-
-qual.type => ?{def +: ?}
-
-qual.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => (AnyRef => Int)
-
-(=> Unit) => (AnyRef => Int)
-1 times = 0ms
-
-
-
-x.type => ?{def dropLocal: ?}
-
-x.type => ?{def dropLocal: ?}
-1 times = 0ms
-
-
-
-List[scala.tools.asm.tree.AbstractInsnNode] => ?{def ::=: ?}
-
-List[scala.tools.asm.tree.AbstractInsnNode] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeInfo.this.global.Tree],TreeInfo.this.global.Type,List[TreeInfo.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[TreeInfo.this.global.Tree],TreeInfo.this.global.Type,List[TreeInfo.this.global.Type]]
-1 times = 2ms
-
-
-
-getter.type => ?{def +: ?}
-
-getter.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[ScannersCommon.this.Token]
-
-scala.reflect.ClassTag[ScannersCommon.this.Token]
-1 times = 1ms
-
-
-
-Float => Parsers.this.Offset
-
-Float => Parsers.this.Offset
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => Namers.this.global.FlagSet
-
-((Nothing, Nothing)) => Namers.this.global.FlagSet
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => UnCurry.this.global.Symbol
-
-((Nothing, Nothing)) => UnCurry.this.global.Symbol
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[List[Parsers.this.global.ValDef]],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[List[Parsers.this.global.ValDef]],String,That]
-1 times = 1ms
-
-
-
-Array[String] => ?{def toArray: ?}
-
-Array[String] => ?{def toArray: ?}
-1 times = 5ms
-
-
-
-List[Interface.this.global.Tree] => scala.collection.IterableLike[El2,Repr2]
-
-List[Interface.this.global.Tree] => scala.collection.IterableLike[El2,Repr2]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => StringBuilder
-
-(=> (Nothing, Nothing)) => StringBuilder
-1 times = 0ms
-
-
-
-m.type => ?{def attrs: ?}
-
-m.type => ?{def attrs: ?}
-1 times = 0ms
-
-
-
-java.util.Set[String] => ?{def asScala: ?}
-
-java.util.Set[String] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-calleeParamTypes.type => ?{def foreach: ?}
-
-calleeParamTypes.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-scala.reflect.OptManifest[List[String]]
-
-scala.reflect.OptManifest[List[String]]
-1 times = 1ms
-
-
-
-List[RefChecks.this.global.TypeBounds] => scala.collection.IterableLike[El2,Repr2]
-
-List[RefChecks.this.global.TypeBounds] => scala.collection.IterableLike[El2,Repr2]
-1 times = 0ms
-
-
-
-pat.type => ?{def ->: ?}
-
-pat.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('_[12]\\$mc[IJDCZ]\\$sp') => ?{def r: ?}
-
-String('_[12]\$mc[IJDCZ]\$sp') => ?{def r: ?}
-1 times = 0ms
-
-
-
-Array[Boolean] => Array[AnyRef]
-
-Array[Boolean] => Array[AnyRef]
-3 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Scanners.this.global.CompilationUnit
-
-(=> (Nothing, Nothing)) => Scanners.this.global.CompilationUnit
-2 times = 0ms
-
-
-
-(=> packageDirName.type) => ?{def split(x$1: ? >: Char('/')): Seq[String]}
-
-(=> packageDirName.type) => ?{def split(x$1: ? >: Char('/')): Seq[String]}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[JavaParsers.this.global.Tree],JavaParsers.this.global.Tree,List[JavaParsers.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[JavaParsers.this.global.Tree],JavaParsers.this.global.Tree,List[JavaParsers.this.global.Tree]]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => TypeAdaptingTransformer.this.global.Tree
-
-(=> (Nothing, Nothing)) => TypeAdaptingTransformer.this.global.Tree
-1 times = 0ms
-
-
-
-String('MAINCLASS') => ?{def ->: ?}
-
-String('MAINCLASS') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('ErrorType()') => scala.text.Document
-
-String('ErrorType()') => scala.text.Document
-1 times = 0ms
-
-
-
-String('globalPhase=%s, enteringPhase=%s') => ?{def format: ?}
-
-String('globalPhase=%s, enteringPhase=%s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TailCalls.this.global.ValDef],TailCalls.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[TailCalls.this.global.ValDef],TailCalls.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BTypes.this.ClassInfo] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,BTypes.this.ClassInfo] => ?{def get: ?}
-8 times = 5ms
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => NodePrinters.this.global.BooleanFlag
-
-scala.tools.nsc.Settings#BooleanSetting => NodePrinters.this.global.BooleanFlag
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => PatternTypers.this.global.Tree
-
-(=> (Nothing, Nothing)) => PatternTypers.this.global.Tree
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.io.File],String,That]
-
-scala.collection.generic.CanBuildFrom[Array[java.io.File],String,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.io.File],String,That]->scala.reflect.ClassTag[String]
-
-
-
-
-
-Unit => Implicits.this.global.TypeBounds
-
-Unit => Implicits.this.global.TypeBounds
-1 times = 0ms
-
-
-
-List[JavaParsers.this.global.Tree] => ?{def :+=: ?}
-
-List[JavaParsers.this.global.Tree] => ?{def :+=: ?}
-1 times = 0ms
-
-
-
-scala.math.Ordering[Long]
-
-scala.math.Ordering[Long]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Mixin.this.global.Symbol],Mixin.this.global.Ident,That]
-
-scala.collection.generic.CanBuildFrom[List[Mixin.this.global.Symbol],Mixin.this.global.Ident,That]
-1 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[AnyRef]
-
-(=> Array[Byte]) => Array[AnyRef]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Any, String)],(Any, String),That]
-
-scala.collection.generic.CanBuildFrom[List[(Any, String)],(Any, String),That]
-1 times = 0ms
-
-
-
-Option[String] <:< Option[B]
-
-Option[String] <:< Option[B]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, SymbolicXMLBuilder.this.global.Tree)],SymbolicXMLBuilder.this.global.Assign,List[SymbolicXMLBuilder.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[(String, SymbolicXMLBuilder.this.global.Tree)],SymbolicXMLBuilder.this.global.Assign,List[SymbolicXMLBuilder.this.global.Tree]]
-1 times = 0ms
-
-
-
-(=> (Nothing, Unit, Any => Nothing)) => (CompilerCommand.this.Setting => Boolean)
-
-(=> (Nothing, Unit, Any => Nothing)) => (CompilerCommand.this.Setting => Boolean)
-3 times = 0ms
-
-
-
-SpecializeTypes.this.global.Scope => SpecializeTypes.this.global.Type
-
-SpecializeTypes.this.global.Scope => SpecializeTypes.this.global.Type
-1 times = 1ms
-
-
-
-((Nothing, Nothing)) => scala.tools.asm.tree.AbstractInsnNode
-
-((Nothing, Nothing)) => scala.tools.asm.tree.AbstractInsnNode
-14 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Unapplies.this.global.ValDef],Unapplies.this.global.ValDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Unapplies.this.global.ValDef],Unapplies.this.global.ValDef,That]
-1 times = 0ms
-
-
-
-scala.math.Ordering[SpecializeTypes.this.global.Type]
-
-scala.math.Ordering[SpecializeTypes.this.global.Type]
-2 times = 1ms
-
-
-
-((Nothing, Nothing, Nothing)) => CharSequence
-
-((Nothing, Nothing, Nothing)) => CharSequence
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.ValOrDefDef],(Reshape.this.global.Symbol, Reshape.this.global.ValOrDefDef),That]
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.ValOrDefDef],(Reshape.this.global.Symbol, Reshape.this.global.ValOrDefDef),That]
-1 times = 1ms
-
-
-
-Int(1) => ?{def to: ?}
-
-Int(1) => ?{def to: ?}
-5 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[BoxUnbox.this.postProcessor.bTypes.ClassBType],BoxUnbox.this.postProcessor.bTypes.ClassBType,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[BoxUnbox.this.postProcessor.bTypes.ClassBType],BoxUnbox.this.postProcessor.bTypes.ClassBType,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.CaseDef],(MatchTranslation.this.global.TermSymbol, List[MatchTranslator.this.TreeMaker]),That]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.CaseDef],(MatchTranslation.this.global.TermSymbol, List[MatchTranslator.this.TreeMaker]),That]
-1 times = 0ms
-
-
-
-((List[Infer.this.global.Symbol], List[Infer.this.global.TypeVar])) => ?{def zipped: ?}
-
-((List[Infer.this.global.Symbol], List[Infer.this.global.TypeVar])) => ?{def zipped: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Char
-
-(=> (Nothing, Nothing, Nothing)) => Char
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.backend.jvm.analysis.AliasSet],String,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.backend.jvm.analysis.AliasSet],String,That]
-1 times = 0ms
-
-
-
-ClassfileParser.this.symbolTable.Symbol => ?{def +: ?}
-
-ClassfileParser.this.symbolTable.Symbol => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Any, String)],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[(Any, String)],Int,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslator.this.BoundTree],MatchTranslation.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslator.this.BoundTree],MatchTranslation.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-String => ?{def contains(x$1: ? >: Char('$')): ?}
-
-String => ?{def contains(x$1: ? >: Char('$')): ?}
-1 times = 0ms
-
-
-
-((List[MatchApproximation.this.global.Symbol], List[MatchApproximation.this.global.Tree])) => ?{def zipped: ?}
-
-((List[MatchApproximation.this.global.Symbol], List[MatchApproximation.this.global.Tree])) => ?{def zipped: ?}
-1 times = 0ms
-
-
-
-Namers.this.global.Scope => Namers.this.global.Type
-
-Namers.this.global.Scope => Namers.this.global.Type
-1 times = 1ms
-
-
-
-Unit => java.io.PrintWriter
-
-Unit => java.io.PrintWriter
-13 times = 4ms
-
-
-
-SyntheticMethods.this.global.TermSymbol => ?{def ->: ?}
-
-SyntheticMethods.this.global.TermSymbol => ?{def ->: ?}
-10 times = 2ms
-
-
-
-prefixParts.type => ?{def tail: ?}
-
-prefixParts.type => ?{def tail: ?}
-1 times = 2ms
-
-
-
-tpe.type => ?{def isLocalToReifee: ?}
-
-tpe.type => ?{def isLocalToReifee: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[s.StringSetting],String,That]
-
-scala.collection.generic.CanBuildFrom[List[s.StringSetting],String,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,scala.tools.asm.tree.VarInsnNode,List[scala.tools.asm.tree.VarInsnNode]]
-
-scala.collection.generic.CanBuildFrom[Nothing,scala.tools.asm.tree.VarInsnNode,List[scala.tools.asm.tree.VarInsnNode]]
-1 times = 0ms
-
-
-
-Numeric[Int]
-
-Numeric[Int]
-7 times = 3ms
-
-
-
-((Nothing, Nothing)) => BCodeSyncAndTry.this.global.Tree
-
-((Nothing, Nothing)) => BCodeSyncAndTry.this.global.Tree
-5 times = 0ms
-
-
-
-String('inlineable free ref: %s in %s') => ?{def format: ?}
-
-String('inlineable free ref: %s in %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> List[InlineSourceMatcher.this.Entry]) => ?{def ::=: ?}
-
-(=> List[InlineSourceMatcher.this.Entry]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-x$2.type => ?{def toImplicitCandidate: ?}
-
-x$2.type => ?{def toImplicitCandidate: ?}
-1 times = 1ms
-
-
-
-Array[Char] => Array[CNF.this.Clause]
-
-Array[Char] => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-List[Infer.this.global.TypeVar] => scala.collection.IterableLike[El2,Repr2]
-
-List[Infer.this.global.TypeVar] => scala.collection.IterableLike[El2,Repr2]
-1 times = 0ms
-
-
-
-key.type => ?{def split(x$1: ? >: Char('.')): ?}
-
-key.type => ?{def split(x$1: ? >: Char('.')): ?}
-1 times = 0ms
-
-
-
-(=> Infer.this.global.AnnotationInfo) => Infer.this.global.Type
-
-(=> Infer.this.global.AnnotationInfo) => Infer.this.global.Type
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.ValDef],TypeDiagnostics.this.global.Symbol,scala.collection.TraversableOnce[TypeDiagnostics.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[TypeDiagnostics.this.global.ValDef],TypeDiagnostics.this.global.Symbol,scala.collection.TraversableOnce[TypeDiagnostics.this.global.Symbol]]
-1 times = 0ms
-
-
-
-(=> Float) => Int
-
-(=> Float) => Int
-478 times = 21ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[Parsers.this.global.Tree],Int,That]
-1 times = 0ms
-
-
-
-PureMatchMonadInterface.this.matchStrategy.type => ?{def DOT: ?}
-
-PureMatchMonadInterface.this.matchStrategy.type => ?{def DOT: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Tree],(Any, Any),That]
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.Tree],(Any, Any),That]
-1 times = 0ms
-
-
-
-(=> Long) => ?{def +=: ?}
-
-(=> Long) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-Some[NamesDefaults.this.global.Tree] => scala.collection.GenTraversableOnce[?]
-
-Some[NamesDefaults.this.global.Tree] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-lits.type => ?{def toList: ?}
-
-lits.type => ?{def toList: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.plugins.PluginComponent],String,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.plugins.PluginComponent],String,That]
-1 times = 0ms
-
-
-
-String('%-20s') => ?{def format: ?}
-
-String('%-20s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[scala.runtime.SymbolLiteral]
-
-scala.reflect.ClassTag[scala.runtime.SymbolLiteral]
-1 times = 1ms
-
-
-
-JavaScanners.this.global.javanme.THROWSkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.THROWSkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SuperAccessors.this.global.Symbol],SuperAccessors.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[SuperAccessors.this.global.Symbol],SuperAccessors.this.global.Symbol,That]
-1 times = 2ms
-
-
-
-String('(default: %s)') => ?{def format: ?}
-
-String('(default: %s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-str.type => ?{def take: ?}
-
-str.type => ?{def take: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,(String, CoreBTypesFromSymbols.this.bTypes.MethodBType),Map[String,CoreBTypesFromSymbols.this.bTypes.MethodBType]]
-
-scala.collection.generic.CanBuildFrom[Nothing,(String, CoreBTypesFromSymbols.this.bTypes.MethodBType),Map[String,CoreBTypesFromSymbols.this.bTypes.MethodBType]]
-1 times = 0ms
-
-
-
-(=> Unit) => Throwable
-
-(=> Unit) => Throwable
-18 times = 1ms
-
-
-
-String('TypeTree, essential: %s (%s)') => ?{def format: ?}
-
-String('TypeTree, essential: %s (%s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-FastTrack.this.macros.global.Tree => FastTrack.this.macros.global.Symbol
-
-FastTrack.this.macros.global.Tree => FastTrack.this.macros.global.Symbol
-6 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Fields.this.global.Tree],Fields.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Fields.this.global.Tree],Fields.this.global.Tree,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => DocComments.this.Symbol
-
-(=> (Nothing, Nothing, Nothing)) => DocComments.this.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[DirectoryLookup.this.F],scala.tools.nsc.classpath.PackageEntryImpl,Seq[scala.tools.nsc.classpath.PackageEntry]]
-
-scala.collection.generic.CanBuildFrom[Array[DirectoryLookup.this.F],scala.tools.nsc.classpath.PackageEntryImpl,Seq[scala.tools.nsc.classpath.PackageEntry]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[DirectoryLookup.this.F],scala.tools.nsc.classpath.PackageEntryImpl,Seq[scala.tools.nsc.classpath.PackageEntry]]->DummyImplicit
-
-
-
-
-
-member.NameType => ?{def stripSuffix: ?}
-
-member.NameType => ?{def stripSuffix: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, Int),List[(Int, Int)]]
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, Int),List[(Int, Int)]]
-1 times = 0ms
-
-
-
-Fields.this.global.Symbol => ?{def ->: ?}
-
-Fields.this.global.Symbol => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> MatchApproximator.this.Substitution) => ?{def >>=: ?}
-
-(=> MatchApproximator.this.Substitution) => ?{def >>=: ?}
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => AccessorSynthesis.this.global.Symbol
-
-((Nothing, Nothing)) => AccessorSynthesis.this.global.Symbol
-2 times = 2ms
-
-
-
-JavaScanners.this.global.javanme.RETURNkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.RETURNkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('Sym def: %s (%s)') => ?{def format: ?}
-
-String('Sym def: %s (%s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-String('metalevel mismatch: expected %s, actual %s') => ?{def format: ?}
-
-String('metalevel mismatch: expected %s, actual %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => NamesDefaults.this.global.gen.global.Symbol
-
-(=> (Nothing, Nothing)) => NamesDefaults.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-value.type => ?{def iterator: ?}
-
-value.type => ?{def iterator: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[GenTypes.this.global.Symbol],GenTypes.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[GenTypes.this.global.Symbol],GenTypes.this.global.Tree,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Fields.this.global.Symbol],Fields.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Fields.this.global.Symbol],Fields.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.DOUBLE.type),That]
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.DOUBLE.type),That]
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.CASEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.CASEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-xs.type => ?{def nonEmpty: ?}
-
-xs.type => ?{def nonEmpty: ?}
-1 times = 0ms
-
-
-
-List[scala.tools.asm.Handle] => ?{def ::=: ?}
-
-List[scala.tools.asm.Handle] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Tree],Constructors.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Tree],Constructors.this.global.Symbol,That]
-1 times = 2ms
-
-
-
-(=> Unit) => Namers.this.global.Type
-
-(=> Unit) => Namers.this.global.Type
-3 times = 0ms
-
-
-
-(=> Long) => Int
-
-(=> Long) => Int
-505 times = 22ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Contexts.this.global.Name
-
-(=> (Nothing, Nothing, Nothing)) => Contexts.this.global.Name
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Extractors.this.global.Symbol],Extractors.this.global.Name,That]
-
-scala.collection.generic.CanBuildFrom[List[Extractors.this.global.Symbol],Extractors.this.global.Name,That]
-1 times = 5ms
-
-
-
-String('[CDATA[') => Seq[Char]
-
-String('[CDATA[') => Seq[Char]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Map[String,List[String]] => ?{def +=: ?}
-
-scala.collection.immutable.Map[String,List[String]] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-Array[Byte] => scala.collection.GenTraversableOnce[?]
-
-Array[Byte] => scala.collection.GenTraversableOnce[?]
-1 times = 1ms
-
-
-
-String('/>') => Seq[Char]
-
-String('/>') => Seq[Char]
-1 times = 0ms
-
-
-
-scala.tools.nsc.classpath.ClassPathEntries => (A1, A2)
-
-scala.tools.nsc.classpath.ClassPathEntries => (A1, A2)
-1 times = 1ms
-
-
-
-(=> scala.collection.immutable.Set[Reifier.this.global.Symbol]) => ?{def ++=: ?}
-
-(=> scala.collection.immutable.Set[Reifier.this.global.Symbol]) => ?{def ++=: ?}
-3 times = 0ms
-
-
-
-(=> List[scala.tools.asm.Label]) => ?{def ::=: ?}
-
-(=> List[scala.tools.asm.Label]) => ?{def ::=: ?}
-2 times = 0ms
-
-
-
-Unit => EtaExpansion.this.global.Type
-
-Unit => EtaExpansion.this.global.Type
-1 times = 0ms
-
-
-
-List[Typers.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-
-List[Typers.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-scala.tools.asm.tree.InsnList => ?{def foreachInsn: ?}
-
-scala.tools.asm.tree.InsnList => ?{def foreachInsn: ?}
-1 times = 0ms
-
-
-
-checker.type => ?{def MEMBER_==: ?}
-
-checker.type => ?{def MEMBER_==: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ToolBoxGlobal.this.Tree],ToolBoxGlobal.this.Type,List[ToolBoxGlobal.this.Type]]
-
-scala.collection.generic.CanBuildFrom[List[ToolBoxGlobal.this.Tree],ToolBoxGlobal.this.Type,List[ToolBoxGlobal.this.Type]]
-1 times = 0ms
-
-
-
-key.type => ?{def drop: ?}
-
-key.type => ?{def drop: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => java.util.Properties
-
-(=> Unit) => java.util.Properties
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[BCodeSkelBuilder.this.global.UseInvokeSpecial.type]
-
-scala.reflect.ClassTag[BCodeSkelBuilder.this.global.UseInvokeSpecial.type]
-1 times = 1ms
-
-
-
-JavaScanners.this.global.javanme.EXTENDSkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.EXTENDSkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-pattern.type => ?{def replaceAllLiterally: ?}
-
-pattern.type => ?{def replaceAllLiterally: ?}
-1 times = 0ms
-
-
-
-Float => Scanners.this.Offset
-
-Float => Scanners.this.Offset
-11 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Duplicators.this.global.Symbol],Duplicators.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Duplicators.this.global.Symbol],Duplicators.this.global.Type,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Float]
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Float]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Tree],ExtensionMethods.this.global.Tree,List[ExtensionMethods.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[ExtensionMethods.this.global.Tree],ExtensionMethods.this.global.Tree,List[ExtensionMethods.this.global.Tree]]
-1 times = 0ms
-
-
-
-(=> List[scala.reflect.macros.contexts.Context{val universe: Macros.this.global.type}]) => ?{def ::=: ?}
-
-(=> List[scala.reflect.macros.contexts.Context{val universe: Macros.this.global.type}]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-sym.type => ?{def isLocalToReifee: ?}
-
-sym.type => ?{def isLocalToReifee: ?}
-2 times = 0ms
-
-
-
-(=> Unit) => Holes.this.global.Type
-
-(=> Unit) => Holes.this.global.Type
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => MethodSynthesis.this.global.Tree
-
-((Nothing, Nothing)) => MethodSynthesis.this.global.Tree
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.Symbol],MatchOptimization.this.global.TermSymbol,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.Symbol],MatchOptimization.this.global.TermSymbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.DefDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.DefDef,That]
-1 times = 2ms
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => Printers.this.BooleanFlag
-
-scala.tools.nsc.Settings#BooleanSetting => Printers.this.BooleanFlag
-8 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[SpecializeTypes.this.global.Symbol],SpecializeTypes.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[NodePrinters.this.global.Tree],String,That]
-
-scala.collection.generic.CanBuildFrom[List[NodePrinters.this.global.Tree],String,That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[Solver.this.Clause]
-
-scala.reflect.ClassTag[Solver.this.Clause]
-3 times = 3ms
-
-
-
-(=> (Nothing, Nothing)) => Array[Object]
-
-(=> (Nothing, Nothing)) => Array[Object]
-1 times = 0ms
-
-
-
-vi.type => ?{def ->: ?}
-
-vi.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-AbstractReporter.this.settings.BooleanSetting => Boolean
-
-AbstractReporter.this.settings.BooleanSetting => Boolean
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[Typers.this.global.Symbol]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[Typers.this.global.Symbol]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-((Infer.this.global.Symbol, Infer.this.global.Type)) => (A1, A2)
-
-((Infer.this.global.Symbol, Infer.this.global.Type)) => (A1, A2)
-1 times = 0ms
-
-
-
-((DestructureTypes.this.global.Name, DestructureTypes.this.global.ClassfileAnnotArg)) => (A1, A2)
-
-((DestructureTypes.this.global.Name, DestructureTypes.this.global.ClassfileAnnotArg)) => (A1, A2)
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => java.util.Map[_ <: java.text.AttributedCharacterIterator.Attribute, _]
-
-((Nothing, Nothing, Nothing)) => java.util.Map[_ <: java.text.AttributedCharacterIterator.Attribute, _]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Interface.this.global.analyzer.global.Tree
-
-(=> (Nothing, Nothing)) => Interface.this.global.analyzer.global.Tree
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => ClassfileParser.this.symbolTable.AnnotationInfo
-
-(=> (Nothing, Nothing, Nothing)) => ClassfileParser.this.symbolTable.AnnotationInfo
-1 times = 0ms
-
-
-
-java.util.List[scala.tools.asm.tree.FieldNode] => ?{def asScala: ?}
-
-java.util.List[scala.tools.asm.tree.FieldNode] => ?{def asScala: ?}
-2 times = 1ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Boolean
-
-(=> (Nothing, Nothing, Nothing)) => Boolean
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => List[ClassfileParser.this.symbolTable.Type]
-
-(=> (Nothing, Nothing)) => List[ClassfileParser.this.symbolTable.Type]
-1 times = 0ms
-
-
-
-methName.type => ?{def take: ?}
-
-methName.type => ?{def take: ?}
-1 times = 0ms
-
-
-
-(=> Seq[org.apache.tools.ant.types.Commandline.Argument]) => ?{def ++=: ?}
-
-(=> Seq[org.apache.tools.ant.types.Commandline.Argument]) => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-nextFrame.type => ?{def peekStack: ?}
-
-nextFrame.type => ?{def peekStack: ?}
-6 times = 2ms
-
-
-
-(=> Array[Double]) => Array[CNF.this.Clause]
-
-(=> Array[Double]) => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-(=> List[(BCodeBodyBuilder.this.global.Symbol, scala.tools.asm.Label)]) => ?{def ::=: ?}
-
-(=> List[(BCodeBodyBuilder.this.global.Symbol, scala.tools.asm.Label)]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-InlineRequest.this.callsite.callee.type => ?{def get: ?}
-
-InlineRequest.this.callsite.callee.type => ?{def get: ?}
-1 times = 0ms
-
-
-
-CleanUp.this.global.gen.global.RefTree => ?{def DOT: ?}
-
-CleanUp.this.global.gen.global.RefTree => ?{def DOT: ?}
-4 times = 1ms
-
-
-
-Array[Long] => Array[Int]
-
-Array[Long] => Array[Int]
-6 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Nothing,BTypesFromClassfile.this.postProcessor.bTypes.ClassBType,List[BTypesFromClassfile.this.postProcessor.bTypes.ClassBType]]
-
-scala.collection.generic.CanBuildFrom[Nothing,BTypesFromClassfile.this.postProcessor.bTypes.ClassBType,List[BTypesFromClassfile.this.postProcessor.bTypes.ClassBType]]
-2 times = 1ms
-
-
-
-Array[Byte] => ?{def drop: ?}
-
-Array[Byte] => ?{def drop: ?}
-1 times = 1ms
-
-
-
-Unit => Long
-
-Unit => Long
-6 times = 0ms
-
-
-
-String('sym.ownerChain') => ?{def ->: ?}
-
-String('sym.ownerChain') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Unit, Unit)) => NodePrinters.this.global.FlagSet
-
-((Nothing, Unit, Unit)) => NodePrinters.this.global.FlagSet
-1 times = 0ms
-
-
-
-Global.this.delambdafy.type => ?{def ->: ?}
-
-Global.this.delambdafy.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-String('generating bridge from %s (%s): %s to %s: %s') => ?{def format: ?}
-
-String('generating bridge from %s (%s): %s to %s: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((List[ContextErrors.this.global.Type], List[ContextErrors.this.global.TypeBounds])) => ?{def zipped: ?}
-
-((List[ContextErrors.this.global.Type], List[ContextErrors.this.global.TypeBounds])) => ?{def zipped: ?}
-2 times = 2ms
-
-
-
-args.type => ?{def flatMap: ?}
-
-args.type => ?{def flatMap: ?}
-1 times = 0ms
-
-
-
-String(' %s package object %s') => ?{def format: ?}
-
-String(' %s package object %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Integral[Int]
-
-Integral[Int]
-2 times = 1ms
-
-
-
-Infer.this.global.AnnotationInfo => Infer.this.global.Type
-
-Infer.this.global.AnnotationInfo => Infer.this.global.Type
-3 times = 0ms
-
-
-
-Double => String
-
-Double => String
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PatternTypers.this.global.Symbol],PatternTypers.this.global.Symbol,List[PatternTypers.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[PatternTypers.this.global.Symbol],PatternTypers.this.global.Symbol,List[PatternTypers.this.global.Symbol]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Tree],Interface.this.global.Symbol,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],scala.collection.immutable.Nil.type,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],scala.collection.immutable.Nil.type,That]
-1 times = 0ms
-
-
-
-SpecializeTypes.this.global.Symbol => ?{def +: ?}
-
-SpecializeTypes.this.global.Symbol => ?{def +: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Pickler.this.global.AnnotationInfo
-
-((Nothing, Nothing)) => Pickler.this.global.AnnotationInfo
-1 times = 0ms
-
-
-
-x$17.type => ?{def INT_==: ?}
-
-x$17.type => ?{def INT_==: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PatternExpansion.this.global.Type],PatternExpansion.this.global.Type,List[PatternExpansion.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[PatternExpansion.this.global.Type],PatternExpansion.this.global.Type,List[PatternExpansion.this.global.Type]]
-3 times = 2ms
-
-
-
-List[LambdaLift.this.global.Tree] => ?{def ::=: ?}
-
-List[LambdaLift.this.global.Tree] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-x.type => ?{def toInt: ?}
-
-x.type => ?{def toInt: ?}
-1 times = 0ms
-
-
-
-scala.collection.immutable.Map[String,String] => ?{def ++=: ?}
-
-scala.collection.immutable.Map[String,String] => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[Int]
-
-((Nothing, Nothing)) => Array[Int]
-1 times = 0ms
-
-
-
-Array[Boolean] => Array[Class[_]]
-
-Array[Boolean] => Array[Class[_]]
-3 times = 0ms
-
-
-
-Array[BCodeBodyBuilder.this.bTypes.BType] => Array[scala.tools.asm.Label]
-
-Array[BCodeBodyBuilder.this.bTypes.BType] => Array[scala.tools.asm.Label]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Type],Int,That]
-1 times = 0ms
-
-
-
-((MatchTreeMaking.this.global.Symbol, MatchTreeMaking.this.global.Tree)) => (A1, A2)
-
-((MatchTreeMaking.this.global.Symbol, MatchTreeMaking.this.global.Tree)) => (A1, A2)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Symbol],Checkable.this.global.TypeVar,That]
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Symbol],Checkable.this.global.TypeVar,That]
-1 times = 2ms
-
-
-
-List[TreeGen.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-
-List[TreeGen.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-java.util.List[Object] => ?{def asScala: ?}
-
-java.util.List[Object] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-Option[Parsers.this.global.Tree] => Traversable[?]
-
-Option[Parsers.this.global.Tree] => Traversable[?]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => SyntheticMethods.this.global.Symbol
-
-(=> (Nothing, Nothing)) => SyntheticMethods.this.global.Symbol
-6 times = 0ms
-
-
-
-(=> List[BCodeIdiomatic.this.global.LabelDef]) => ?{def ::=: ?}
-
-(=> List[BCodeIdiomatic.this.global.LabelDef]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-List[(scala.tools.asm.Label, BCodeBodyBuilder.this.global.Tree)] => ?{def ::=: ?}
-
-List[(scala.tools.asm.Label, BCodeBodyBuilder.this.global.Tree)] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> Char(',')) => String
-
-(=> Char(',')) => String
-3 times = 0ms
-
-
-
-str.type => ?{def toInt: ?}
-
-str.type => ?{def toInt: ?}
-1 times = 0ms
-
-
-
-Metalevels.this.global.Symbol => ?{def metalevel: ?}
-
-Metalevels.this.global.Symbol => ?{def metalevel: ?}
-1 times = 0ms
-
-
-
-String('materializing requested %s.%s[%s] using %s') => ?{def format: ?}
-
-String('materializing requested %s.%s[%s] using %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => EtaExpansion.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => EtaExpansion.this.global.Symbol
-4 times = 0ms
-
-
-
-str.type => ?{def tail: ?}
-
-str.type => ?{def tail: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.DefDef],Reshape.this.global.DefDef,List[Reshape.this.global.DefDef]]
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.DefDef],Reshape.this.global.DefDef,List[Reshape.this.global.DefDef]]
-2 times = 4ms
-
-
-
-scala.io.Codec
-
-scala.io.Codec
-24 times = 3ms
-
-
-
-(=> Int) => ?{def +=: ?}
-
-(=> Int) => ?{def +=: ?}
-140 times = 8ms
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.InsnList
-
-(=> (Nothing, Nothing)) => scala.tools.asm.tree.InsnList
-14 times = 0ms
-
-
-
-((Nothing, Nothing)) => Namers.this.global.ClassDef
-
-((Nothing, Nothing)) => Namers.this.global.ClassDef
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Symbol],Interface.this.global.Symbol,List[Interface.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[Interface.this.global.Symbol],Interface.this.global.Symbol,List[Interface.this.global.Symbol]]
-1 times = 0ms
-
-
-
-AsmAnalyzer.this.analyzer.type => ?{def frameAt: ?}
-
-AsmAnalyzer.this.analyzer.type => ?{def frameAt: ?}
-1 times = 0ms
-
-
-
-(Solver.this.Sym, Boolean) <:< (Solver.this.Sym, Boolean)
-
-(Solver.this.Sym, Boolean) <:< (Solver.this.Sym, Boolean)
-1 times = 0ms
-
-
-
-(=> Context.this.type) => ?{def reporter_=: ?}
-
-(=> Context.this.type) => ?{def reporter_=: ?}
-3 times = 0ms
-
-
-
-java.util.List[scala.tools.asm.tree.LabelNode] => ?{def asScala: ?}
-
-java.util.List[scala.tools.asm.tree.LabelNode] => ?{def asScala: ?}
-2 times = 1ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.PatternAlternative.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.PatternAlternative.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],Calculate.this.global.TypeTree,That]
-
-scala.collection.generic.CanBuildFrom[List[Any],Calculate.this.global.TypeTree,That]
-1 times = 2ms
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => Boolean
-
-scala.tools.nsc.Settings#BooleanSetting => Boolean
-80 times = 30ms
-
-
-
-String('\nNote: %s exists, but it has no companion object.') => ?{def format: ?}
-
-String('
-Note: %s exists, but it has no companion object.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.NEWkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.NEWkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-CleanUp.this.global.gen.global.RefTree => ?{def OBJ_NE: ?}
-
-CleanUp.this.global.gen.global.RefTree => ?{def OBJ_NE: ?}
-1 times = 0ms
-
-
-
-String('NoType()') => scala.text.Document
-
-String('NoType()') => scala.text.Document
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[UnCurry.this.global.TypeParamVarargsAttachment]
-
-scala.reflect.ClassTag[UnCurry.this.global.TypeParamVarargsAttachment]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[Reshape.this.global.analyzer.MacroExpansionAttachment]
-
-scala.reflect.ClassTag[Reshape.this.global.analyzer.MacroExpansionAttachment]
-1 times = 3ms
-
-
-
-MatchTreeMaking.this.global.gen.global.RefTree => ?{def OBJ_NE: ?}
-
-MatchTreeMaking.this.global.gen.global.RefTree => ?{def OBJ_NE: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximator.this.TreeMaker],MatchApproximator.this.Test,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximator.this.TreeMaker],MatchApproximator.this.Test,That]
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.StarPatterns.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.StarPatterns.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-sym.NameType => ?{def getterName: ?}
-
-sym.NameType => ?{def getterName: ?}
-2 times = 0ms
-
-
-
-Array[String] => ?{def ++: ?}
-
-Array[String] => ?{def ++: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BackendUtils.this.postProcessor.bTypes.ClassBType],BackendUtils.this.postProcessor.bTypes.ClassBType,That]
-
-scala.collection.generic.CanBuildFrom[List[BackendUtils.this.postProcessor.bTypes.ClassBType],BackendUtils.this.postProcessor.bTypes.ClassBType,That]
-1 times = 0ms
-
-
-
-String('List\\[.*?\\]') => ?{def r: ?}
-
-String('List\[.*?\]') => ?{def r: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.WITHkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.WITHkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('tree') => ?{def ->: ?}
-
-String('tree') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.net.Proxy
-
-((Nothing, Nothing)) => java.net.Proxy
-2 times = 0ms
-
-
-
-String('| ') => ?{def *: ?}
-
-String('| ') => ?{def *: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.THROWkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.THROWkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-p.name.type => ?{def +: ?}
-
-p.name.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[CleanUp.this.global.Symbol],CleanUp.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[CleanUp.this.global.Symbol],CleanUp.this.global.Type,That]
-1 times = 0ms
-
-
-
-Set[Implicits.this.global.Symbol]
-
-Set[Implicits.this.global.Symbol]
-16 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName),That]
-
-scala.collection.generic.CanBuildFrom[List[(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName)],(SymbolTables.this.global.Symbol, SymbolTables.this.global.TermName),That]
-1 times = 0ms
-
-
-
-(=> LambdaLift.this.global.Tree) => LambdaLift.this.global.Type
-
-(=> LambdaLift.this.global.Tree) => LambdaLift.this.global.Type
-1 times = 0ms
-
-
-
-String('\'%s\' is not an existing directory.') => ?{def format: ?}
-
-String(''%s' is not an existing directory.') => ?{def format: ?}
-2 times = 0ms
-
-
-
-(=> (Nothing, Unit, Unit)) => NodePrinters.this.global.Position
-
-(=> (Nothing, Unit, Unit)) => NodePrinters.this.global.Position
-1 times = 0ms
-
-
-
-String('renaming in %s: %s => %s') => ?{def format: ?}
-
-String('renaming in %s: %s => %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-params.type => ?{def +:: ?}
-
-params.type => ?{def +:: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Parsers.this.global.Symbol
-
-(=> (Nothing, Nothing)) => Parsers.this.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.treeInfo.global.Tree],Macros.this.global.treeInfo.global.Type,List[Macros.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Macros.this.global.treeInfo.global.Tree],Macros.this.global.treeInfo.global.Type,List[Macros.this.global.Type]]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode]) => ?{def +=: ?}
-2 times = 0ms
-
-
-
-v.insns.type => ?{def asScala: ?}
-
-v.insns.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-(Constructors.this.global.Symbol, Constructors.this.global.Tree) <:< (T, U)
-
-(Constructors.this.global.Symbol, Constructors.this.global.Tree) <:< (T, U)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.global.DefDef],AccessorSynthesis.this.global.Tree,List[AccessorSynthesis.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.global.DefDef],AccessorSynthesis.this.global.Tree,List[AccessorSynthesis.this.global.Tree]]
-1 times = 0ms
-
-
-
-Unit => Array[Char]
-
-Unit => Array[Char]
-5 times = 0ms
-
-
-
-Array[Solver.this.Clause] => List[List[?A]]
-
-Array[Solver.this.Clause] => List[List[?A]]
-1 times = 0ms
-
-
-
-String('--') => Seq[Char]
-
-String('--') => Seq[Char]
-1 times = 0ms
-
-
-
-List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)] => ?{def +:=: ?}
-
-List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)] => ?{def +:=: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => Long
-
-(=> Unit) => Long
-6 times = 0ms
-
-
-
-((Nothing, Nothing)) => Parsers.this.global.Position
-
-((Nothing, Nothing)) => Parsers.this.global.Position
-32 times = 4ms
-
-
-
-Some[TreeAndTypeAnalysis.this.global.Type] => scala.collection.GenTraversableOnce[?]
-
-Some[TreeAndTypeAnalysis.this.global.Type] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-String('[Connecting to compilation daemon at port %d failed; re-trying...]') => ?{def format: ?}
-
-String('[Connecting to compilation daemon at port %d failed; re-trying...]') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.THENkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.THENkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)]) => ?{def +:=: ?}
-
-(=> List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)]) => ?{def +:=: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => scala.tools.nsc.Settings
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => scala.tools.nsc.Settings
-2 times = 0ms
-
-
-
-String('scala-library.jar') => scala.reflect.io.Path
-
-String('scala-library.jar') => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[SwitchEmission.this.TreeMaker]],Option[MatchOptimization.this.global.Tree],That]
-
-scala.collection.generic.CanBuildFrom[List[List[SwitchEmission.this.TreeMaker]],Option[MatchOptimization.this.global.Tree],That]
-1 times = 0ms
-
-
-
-Set[SymbolTrackers.this.global.Symbol] => List[SymbolTrackers.this.global.Symbol]
-
-Set[SymbolTrackers.this.global.Symbol] => List[SymbolTrackers.this.global.Symbol]
-1 times = 2ms
-
-
-
-Set[SymbolTrackers.this.global.Symbol] => List[SymbolTrackers.this.global.Symbol]->Ordering[SymbolTrackers.this.global.Symbol]
-
-
-
-
-
-String('xml') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-
-String('xml') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => ToolBoxGlobal.this.analyzer.global.Tree
-
-((Nothing, Nothing, Nothing)) => ToolBoxGlobal.this.analyzer.global.Tree
-1 times = 0ms
-
-
-
-frames.type => ?{def takeWhile: ?}
-
-frames.type => ?{def takeWhile: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => SymbolicXMLBuilder.this.global.Tree
-
-((Nothing, Nothing)) => SymbolicXMLBuilder.this.global.Tree
-11 times = 4ms
-
-
-
-((Nothing, Nothing)) => Throwable
-
-((Nothing, Nothing)) => Throwable
-7 times = 1ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => MethodSynthesis.this.global.Symbol
-4 times = 0ms
-
-
-
-(=> Unit) => Char
-
-(=> Unit) => Char
-3 times = 0ms
-
-
-
-String('Unparsed') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-
-String('Unparsed') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmltypes.NameType
-1 times = 0ms
-
-
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,List[BackendUtils.this.postProcessor.bTypes.ClassBType]] => ?{def get: ?}
-
-Either[tools.nsc.backend.jvm.BackendReporting.NoClassBTypeInfo,List[BackendUtils.this.postProcessor.bTypes.ClassBType]] => ?{def get: ?}
-1 times = 0ms
-
-
-
-String('residual: %s, tparams: %s, env: %s') => ?{def format: ?}
-
-String('residual: %s, tparams: %s, env: %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => BCodeBodyBuilder.this.global.Tree
-
-(=> (Nothing, Nothing)) => BCodeBodyBuilder.this.global.Tree
-41 times = 3ms
-
-
-
-args.type => ?{def contains: ?}
-
-args.type => ?{def contains: ?}
-1 times = 1ms
-
-
-
-((Nothing, Nothing, Nothing)) => TreeCheckers.this.global.Tree
-
-((Nothing, Nothing, Nothing)) => TreeCheckers.this.global.Tree
-2 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.ByteTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.ByteTpe.type => ?{def ->: ?}
-1 times = 5ms
-
-
-
-Array[java.lang.reflect.TypeVariable[Class[_$1]]] => ?{def map: ?}
-
-Array[java.lang.reflect.TypeVariable[Class[_$1]]] => ?{def map: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.Symbol],MatchOptimization.this.global.Type,List[MatchOptimization.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[MatchOptimization.this.global.Symbol],MatchOptimization.this.global.Type,List[MatchOptimization.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Metalevels.this.global.Tree],Metalevels.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Metalevels.this.global.Tree],Metalevels.this.global.Symbol,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Symbol],TreeAndTypeAnalysis.this.global.Type,List[TreeAndTypeAnalysis.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Symbol],TreeAndTypeAnalysis.this.global.Type,List[TreeAndTypeAnalysis.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[CNF.this.Sym],scala.tools.nsc.transform.patmat.Lit,That]
-
-scala.collection.generic.CanBuildFrom[List[CNF.this.Sym],scala.tools.nsc.transform.patmat.Lit,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Sym],MatchAnalyzer.this.Const,List[MatchAnalyzer.this.Const]]
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.Sym],MatchAnalyzer.this.Const,List[MatchAnalyzer.this.Const]]
-3 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[() => Any],AnyRef,That]
-
-scala.collection.generic.CanBuildFrom[List[() => Any],AnyRef,That]
-1 times = 0ms
-
-
-
-(=> Validators.this.global.AnnotationInfo) => Validators.this.global.Type
-
-(=> Validators.this.global.AnnotationInfo) => Validators.this.global.Type
-1 times = 0ms
-
-
-
-(=> (List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-
-(=> (List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type], List[Infer.this.global.Type], List[Infer.this.global.Symbol])
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.ValDef],SpecializeTypes.this.global.Symbol,List[SpecializeTypes.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.ValDef],SpecializeTypes.this.global.Symbol,List[SpecializeTypes.this.global.Symbol]]
-3 times = 1ms
-
-
-
-((Nothing, Nothing)) => TreeGen.this.global.Symbol
-
-((Nothing, Nothing)) => TreeGen.this.global.Symbol
-4 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => EtaExpansion.this.global.gen.global.ValDef
-
-(=> (Nothing, Nothing)) => EtaExpansion.this.global.gen.global.ValDef
-1 times = 0ms
-
-
-
-x$8.type => ?{def ->: ?}
-
-x$8.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[Double]
-
-((Nothing, Nothing)) => Array[Double]
-1 times = 0ms
-
-
-
-Int(128) => scala.tools.nsc.typechecker.ContextMode
-
-Int(128) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-String('%s accesses protected %s from self type %s.') => ?{def format: ?}
-
-String('%s accesses protected %s from self type %s.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type])
-
-((List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type])
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Any]],Seq[String],That]
-
-scala.collection.generic.CanBuildFrom[List[List[Any]],Seq[String],That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[EtaExpansion.this.global.Symbol],Boolean,That]
-
-scala.collection.generic.CanBuildFrom[List[EtaExpansion.this.global.Symbol],Boolean,That]
-1 times = 0ms
-
-
-
-((Nothing, Unit, Unit)) => LambdaLift.this.global.Symbol
-
-((Nothing, Unit, Unit)) => LambdaLift.this.global.Symbol
-1 times = 1ms
-
-
-
-Array[Byte] => Array[CNF.this.Clause]
-
-Array[Byte] => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[BoxUnbox.this.BoxConsumer],scala.tools.asm.tree.AbstractInsnNode,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[BoxUnbox.this.BoxConsumer],scala.tools.asm.tree.AbstractInsnNode,That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Parsers.this.global.AtBoundIdentifierAttachment.type]
-
-scala.reflect.ClassTag[Parsers.this.global.AtBoundIdentifierAttachment.type]
-2 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Type],Erasure.this.global.TypeTree,That]
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Type],Erasure.this.global.TypeTree,That]
-1 times = 0ms
-
-
-
-(=> Duplicators.this.global.Scope) => Duplicators.this.global.Type
-
-(=> Duplicators.this.global.Scope) => Duplicators.this.global.Type
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[Global.this.Symbol],Global.this.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[Iterable[Global.this.Symbol],Global.this.Symbol,That]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[InlinerHeuristics.this.InlineRequest] => ?{def +=: ?}
-
-scala.collection.immutable.Set[InlinerHeuristics.this.InlineRequest] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-Array[AccessorSynthesis.this.global.TermSymbol] => scala.collection.GenTraversableOnce[?]
-
-Array[AccessorSynthesis.this.global.TermSymbol] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-x$2.type => ?{def stripPrefix: ?}
-
-x$2.type => ?{def stripPrefix: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Constructors.this.global.Tree, Constructors.this.global.Tree)],d.global.Tree forSome { val d: Constructors.this.global.specializeTypes.Duplicator },List[Constructors.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[(Constructors.this.global.Tree, Constructors.this.global.Tree)],d.global.Tree forSome { val d: Constructors.this.global.specializeTypes.Duplicator },List[Constructors.this.global.Tree]]
-1 times = 1ms
-
-
-
-(SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol) <:< (SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol)
-
-(SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol) <:< (SymbolTrackers.this.global.Symbol, SymbolTrackers.this.global.Symbol)
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[Erasure.this.global.Symbol]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[Erasure.this.global.Symbol]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.mutable.ListBuffer[Flatten.this.global.Tree] => scala.collection.GenTraversableOnce[B]
-
-scala.collection.mutable.ListBuffer[Flatten.this.global.Tree] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.UnitTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.UnitTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Duplicators.this.global.Ident],Duplicators.this.global.Ident,That]
-
-scala.collection.generic.CanBuildFrom[List[Duplicators.this.global.Ident],Duplicators.this.global.Ident,That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[tools.nsc.io.Directory]
-
-scala.reflect.ClassTag[tools.nsc.io.Directory]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[Contexts.this.global.ImportSelector]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[Contexts.this.global.ImportSelector]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Type],ContextErrors.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[ContextErrors.this.global.Type],ContextErrors.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => MatchOptimization.this.global.Symbol
-
-((Nothing, Nothing)) => MatchOptimization.this.global.Symbol
-4 times = 0ms
-
-
-
-String('flatten') => ?{def ->: ?}
-
-String('flatten') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Int(1024) => scala.tools.nsc.typechecker.ContextMode
-
-Int(1024) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-Some[Parsers.this.global.ValDef] => scala.collection.GenTraversableOnce[?]
-
-Some[Parsers.this.global.ValDef] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.Tree],Namers.this.global.LazyAnnotationInfo,List[Namers.this.global.AnnotationInfo]]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.Tree],Namers.this.global.LazyAnnotationInfo,List[Namers.this.global.AnnotationInfo]]
-1 times = 0ms
-
-
-
-Option[TreesAndTypesDomain.this.Sym] => scala.collection.GenTraversableOnce[?]
-
-Option[TreesAndTypesDomain.this.Sym] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],List[(Typers.this.global.Type, Typers.this.global.Symbol)],That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],List[(Typers.this.global.Type, Typers.this.global.Symbol)],That]
-1 times = 0ms
-
-
-
-(=> List[TypeDiagnostics.this.global.Symbol]) => ?{def ::=: ?}
-
-(=> List[TypeDiagnostics.this.global.Symbol]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-prevSym.NameType => ?{def +: ?}
-
-prevSym.NameType => ?{def +: ?}
-1 times = 0ms
-
-
-
-String('%s definition needs %s because \'%s\' is used as a named argument in its body.') => ?{def format: ?}
-
-String('%s definition needs %s because '%s' is used as a named argument in its body.') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Long => Parsers.this.Offset
-
-Long => Parsers.this.Offset
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Tree],MatchTranslation.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Tree],MatchTranslation.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Queue[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.AbstractInsnNode,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.Queue[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.AbstractInsnNode,That]
-1 times = 3ms
-
-
-
-Option[String] <:< Option[String]
-
-Option[String] <:< Option[String]
-1 times = 0ms
-
-
-
-Float => String
-
-Float => String
-3 times = 0ms
-
-
-
-(=> Boolean) => ?{def |=: ?}
-
-(=> Boolean) => ?{def |=: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Extractors.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => Extractors.this.global.Symbol
-12 times = 2ms
-
-
-
-JavaScanners.this.global.javanme.PRIVATEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.PRIVATEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Char('$')) => String
-
-(=> Char('$')) => String
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.plugins.Plugin],String,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.plugins.Plugin],String,That]
-1 times = 0ms
-
-
-
-((Nothing, (Any, Any) => Nothing)) => Array[Char]
-
-((Nothing, (Any, Any) => Nothing)) => Array[Char]
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.DOkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.DOkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Char => CharSequence
-
-Char => CharSequence
-8 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Tree],Erasure.this.global.Tree,List[Erasure.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Erasure.this.global.Tree],Erasure.this.global.Tree,List[Erasure.this.global.Tree]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)],(Holes.this.global.Type, scala.reflect.quasiquotes.Rank),List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)]]
-
-scala.collection.generic.CanBuildFrom[List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)],(Holes.this.global.Type, scala.reflect.quasiquotes.Rank),List[(Holes.this.global.Type, scala.reflect.quasiquotes.Rank)]]
-1 times = 2ms
-
-
-
-Array[Object] => ?{def foreach: ?}
-
-Array[Object] => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => RefChecks.this.global.analyzer.global.Symbol
-
-(=> (Nothing, Nothing)) => RefChecks.this.global.analyzer.global.Symbol
-1 times = 0ms
-
-
-
-String('RESIDUAL: \'scala %s\'\n') => ?{def format: ?}
-
-String('RESIDUAL: 'scala %s'
-') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Macros.this.global.Scope => Macros.this.global.Type
-
-Macros.this.global.Scope => Macros.this.global.Type
-1 times = 1ms
-
-
-
-(Any => Nothing) => scala.tools.nsc.GenericRunnerSettings
-
-(Any => Nothing) => scala.tools.nsc.GenericRunnerSettings
-1 times = 0ms
-
-
-
-(=> List[LambdaLift.this.global.Tree]) => ?{def ::=: ?}
-
-(=> List[LambdaLift.this.global.Tree]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-s.type => ?{def forall: ?}
-
-s.type => ?{def forall: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalysis.this.global.Symbol],MatchAnalysis.this.global.Symbol,List[MatchAnalysis.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalysis.this.global.Symbol],MatchAnalysis.this.global.Symbol,List[MatchAnalysis.this.global.Symbol]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.global.Tree],AccessorSynthesis.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[AccessorSynthesis.this.global.Tree],AccessorSynthesis.this.global.Symbol,That]
-1 times = 2ms
-
-
-
-(=> (Nothing, Nothing, Unit)) => SpecializeTypes.this.global.Symbol
-
-(=> (Nothing, Nothing, Unit)) => SpecializeTypes.this.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],scala.reflect.internal.Variance,List[scala.tools.nsc.Variance]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.Symbol],scala.reflect.internal.Variance,List[scala.tools.nsc.Variance]]
-2 times = 0ms
-
-
-
-scala.collection.mutable.Set[Implicits.this.global.Type]
-
-scala.collection.mutable.Set[Implicits.this.global.Type]
-16 times = 1ms
-
-
-
-java.util.jar.Attributes.Name.MANIFEST_VERSION.type => ?{def ->: ?}
-
-java.util.jar.Attributes.Name.MANIFEST_VERSION.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('(?i)m(\\d*)') => ?{def r: ?}
-
-String('(?i)m(\d*)') => ?{def r: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[settings.Setting],String,That]
-
-scala.collection.generic.CanBuildFrom[List[settings.Setting],String,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.TypeVar],Implicits.this.global.TypeConstraint,Any]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.TypeVar],Implicits.this.global.TypeConstraint,Any]
-1 times = 0ms
-
-
-
-args.type => ?{def dropRight: ?}
-
-args.type => ?{def dropRight: ?}
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.FINALLYkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.FINALLYkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('caught %s: while typing %s') => ?{def format: ?}
-
-String('caught %s: while typing %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Iterable[scala.collection.immutable.Set[TypeDiagnostics.this.TypeDiag]],scala.collection.immutable.Set[TypeDiagnostics.this.TypeDiag],That]
-
-scala.collection.generic.CanBuildFrom[Iterable[scala.collection.immutable.Set[TypeDiagnostics.this.TypeDiag]],scala.collection.immutable.Set[TypeDiagnostics.this.TypeDiag],That]
-1 times = 0ms
-
-
-
-(=> Unit) => Extractors.this.global.Type
-
-(=> Unit) => Extractors.this.global.Type
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Delambdafy.this.global.SAMFunction]
-
-scala.reflect.ClassTag[Delambdafy.this.global.SAMFunction]
-1 times = 1ms
-
-
-
-Array[scala.tools.asm.Type] => ?{def toList: ?}
-
-Array[scala.tools.asm.Type] => ?{def toList: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ss.PhasesSetting],List[String],That]
-
-scala.collection.generic.CanBuildFrom[List[ss.PhasesSetting],List[String],That]
-1 times = 1ms
-
-
-
-String('tree tpe') => ?{def ->: ?}
-
-String('tree tpe') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-s1.type => ?{def take: ?}
-
-s1.type => ?{def take: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslator.this.TreeMaker],MatchTranslator.this.TreeMaker,That]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslator.this.TreeMaker],MatchTranslator.this.TreeMaker,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Symbol],Checkable.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Checkable.this.global.Symbol],Checkable.this.global.Type,That]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => MethodSynthesis.this.global.Type
-
-(=> Any => Nothing) => MethodSynthesis.this.global.Type
-1 times = 0ms
-
-
-
-from.type => ?{def OBJ_EQ: ?}
-
-from.type => ?{def OBJ_EQ: ?}
-1 times = 0ms
-
-
-
-includedFiles.type => ?{def isEmpty: ?}
-
-includedFiles.type => ?{def isEmpty: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[ExtensionMethods.this.global.Name],ExtensionMethods.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[ExtensionMethods.this.global.Name],ExtensionMethods.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-Array[Unit] => Array[CNF.this.Clause]
-
-Array[Unit] => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.ValDef],Namers.this.global.ValDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.ValDef],Namers.this.global.ValDef,That]
-1 times = 0ms
-
-
-
-(String, String) <:< (T, U)
-
-(String, String) <:< (T, U)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.util.Try[(scala.tools.nsc.plugins.PluginDescription, scala.reflect.internal.util.ScalaClassLoader)]],scala.util.Try[scala.tools.nsc.plugins.Plugin.AnyClass],That]
-
-scala.collection.generic.CanBuildFrom[List[scala.util.Try[(scala.tools.nsc.plugins.PluginDescription, scala.reflect.internal.util.ScalaClassLoader)]],scala.util.Try[scala.tools.nsc.plugins.Plugin.AnyClass],That]
-1 times = 0ms
-
-
-
-List[T] => ?{def +:=: ?}
-
-List[T] => ?{def +:=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.DocDef,List[Typers.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.DocDef,List[Typers.this.global.Tree]]
-1 times = 0ms
-
-
-
-String('specialization transforms %s%s parents to %s') => ?{def format: ?}
-
-String('specialization transforms %s%s parents to %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => TypeAdaptingTransformer.this.global.Tree
-
-((Nothing, Nothing)) => TypeAdaptingTransformer.this.global.Tree
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => BCodeBodyBuilder.this.global.scalaPrimitives.global.Symbol
-
-((Nothing, Nothing)) => BCodeBodyBuilder.this.global.scalaPrimitives.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(MatchTranslation.this.global.Symbol, Int)],MatchTranslation.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[(MatchTranslation.this.global.Symbol, Int)],MatchTranslation.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-(=> TreeAndTypeAnalysis.this.global.Tree) => TreeAndTypeAnalysis.this.global.Type
-
-(=> TreeAndTypeAnalysis.this.global.Tree) => TreeAndTypeAnalysis.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],Validators.this.global.analyzer.global.TypeVar,That]
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],Validators.this.global.analyzer.global.TypeVar,That]
-1 times = 68ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.AmbiguousErrors.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.AmbiguousErrors.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[SpecializeTypes.this.global.Symbol] => SpecializeTypes.this.global.Type
-
-List[SpecializeTypes.this.global.Symbol] => SpecializeTypes.this.global.Type
-1 times = 0ms
-
-
-
-(=> Array[Char]) => Array[Class[_]]
-
-(=> Array[Char]) => Array[Class[_]]
-3 times = 0ms
-
-
-
-(Mixin.this.global.Symbol, List[Mixin.this.global.Symbol]) <:< (Mixin.this.global.Symbol, List[Mixin.this.global.Symbol])
-
-(Mixin.this.global.Symbol, List[Mixin.this.global.Symbol]) <:< (Mixin.this.global.Symbol, List[Mixin.this.global.Symbol])
-1 times = 0ms
-
-
-
-defines.type => ?{def isEmpty: ?}
-
-defines.type => ?{def isEmpty: ?}
-1 times = 0ms
-
-
-
-String('Usage: %s <options> <source files>') => ?{def format: ?}
-
-String('Usage: %s <options> <source files>') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Fields.this.global.Symbol],Fields.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Fields.this.global.Symbol],Fields.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-FormatInterpolator.this.c.universe.TypeTag[java.util.Formattable]
-
-FormatInterpolator.this.c.universe.TypeTag[java.util.Formattable]
-1 times = 4ms
-
-
-
-String('Allowing %s to override %s because %s <:< %s') => ?{def format: ?}
-
-String('Allowing %s to override %s because %s <:< %s') => ?{def format: ?}
-1 times = 1ms
-
-
-
-CleanUp.this.global.gen.global.Tree => ?{def GETCLASS: ?}
-
-CleanUp.this.global.gen.global.Tree => ?{def GETCLASS: ?}
-2 times = 0ms
-
-
-
-SpecializeTypes.this.global.TermName => ?{def setterName: ?}
-
-SpecializeTypes.this.global.TermName => ?{def setterName: ?}
-1 times = 0ms
-
-
-
-Unapplies.this.global.Ident => ?{def DOT: ?}
-
-Unapplies.this.global.Ident => ?{def DOT: ?}
-2 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Contexts.this.global.ScopeEntry],Contexts.this.global.Symbol,List[Contexts.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[Contexts.this.global.ScopeEntry],Contexts.this.global.Symbol,List[Contexts.this.global.Symbol]]
-1 times = 0ms
-
-
-
-Option[BTypesFromSymbols.this.global.Type] => scala.collection.GenTraversableOnce[?]
-
-Option[BTypesFromSymbols.this.global.Type] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-List[Parsers.this.OpInfo] => ?{def ::=: ?}
-
-List[Parsers.this.OpInfo] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-String('\nOptions for plugin \'%s\':\n%s\n') => ?{def format: ?}
-
-String('
-Options for plugin '%s':
-%s
-') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ToolBoxGlobal.this.FreeTypeSymbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[ToolBoxGlobal.this.FreeTypeSymbol],String,That]
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.transform.patmat.Lit],(Solver.this.Sym, Boolean),That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.transform.patmat.Lit],(Solver.this.Sym, Boolean),That]
-1 times = 0ms
-
-
-
-Array[Short] => Array[Class[_]]
-
-Array[Short] => Array[Class[_]]
-3 times = 0ms
-
-
-
-((Nothing, Nothing)) => DestructureTypes.this.global.Type
-
-((Nothing, Nothing)) => DestructureTypes.this.global.Type
-11 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.SHORT.type),That]
-
-scala.collection.generic.CanBuildFrom[List[Int],(Int, CoreBTypesFromSymbols.this.bTypes.SHORT.type),That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Parsers.this.global.Position
-
-(=> (Nothing, Nothing, Nothing)) => Parsers.this.global.Position
-2 times = 0ms
-
-
-
-NamesDefaults.this.global.Symbol => ?{def ->: ?}
-
-NamesDefaults.this.global.Symbol => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.CounterExample],(MatchAnalyzer.this.CounterExample, MatchAnalyzer.this.CounterExample),That]
-
-scala.collection.generic.CanBuildFrom[List[MatchAnalyzer.this.CounterExample],(MatchAnalyzer.this.CounterExample, MatchAnalyzer.this.CounterExample),That]
-1 times = 0ms
-
-
-
-java.util.List[_$1] => ?{def asScala: ?}
-
-java.util.List[_$1] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[CommonSubconditionElimination.this.Prop],CommonSubconditionElimination.this.Prop,Set[CommonSubconditionElimination.this.Prop]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[CommonSubconditionElimination.this.Prop],CommonSubconditionElimination.this.Prop,Set[CommonSubconditionElimination.this.Prop]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Type,List[Typers.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Type,List[Typers.this.global.Type]]
-3 times = 1ms
-
-
-
-Scanners.this.global.nme.PRIVATEkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.PRIVATEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.immutable.Map[String,String] => ?{def asJava: ?}
-
-scala.collection.immutable.Map[String,String] => ?{def asJava: ?}
-1 times = 0ms
-
-
-
-List[scala.tools.nsc.typechecker.Fingerprint] => scala.collection.GenTraversableOnce[B]
-
-List[scala.tools.nsc.typechecker.Fingerprint] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-Infer.this.global.Scope => Infer.this.global.Type
-
-Infer.this.global.Scope => Infer.this.global.Type
-3 times = 1ms
-
-
-
-c.type => ?{def isDigit: ?}
-
-c.type => ?{def isDigit: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Errors.this.global.Type],String,That]
-
-scala.collection.generic.CanBuildFrom[Seq[Errors.this.global.Type],String,That]
-1 times = 2ms
-
-
-
-String => ?{def foreach: ?}
-
-String => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-String => ?{def drop: ?}
-
-String => ?{def drop: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => CharSequence
-
-(=> Unit) => CharSequence
-1 times = 0ms
-
-
-
-until.type => ?{def tail: ?}
-
-until.type => ?{def tail: ?}
-1 times = 0ms
-
-
-
-((Nothing, Unit)) => TailCalls.this.global.Tree
-
-((Nothing, Unit)) => TailCalls.this.global.Tree
-1 times = 0ms
-
-
-
-List[scala.tools.asm.Label] => ?{def ::=: ?}
-
-List[scala.tools.asm.Label] => ?{def ::=: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[AnyRef],Class[_],That]
-
-scala.collection.generic.CanBuildFrom[List[AnyRef],Class[_],That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],scala.tools.nsc.classpath.PackageEntry,That]
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],scala.tools.nsc.classpath.PackageEntry,That]
-1 times = 0ms
-
-
-
-(=> (List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type])
-
-(=> (List[Nothing], List[Nothing], List[Nothing])) => (List[Infer.this.global.Symbol], List[Infer.this.global.Type])
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],String,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(ToolBoxGlobal.this.FreeTermSymbol, ToolBoxGlobal.this.TermName)],ToolBoxGlobal.this.ValDef,That]
-
-scala.collection.generic.CanBuildFrom[List[(ToolBoxGlobal.this.FreeTermSymbol, ToolBoxGlobal.this.TermName)],ToolBoxGlobal.this.ValDef,That]
-1 times = 0ms
-
-
-
-List[MatchApproximation.this.global.Tree] => scala.collection.IterableLike[El2,Repr2]
-
-List[MatchApproximation.this.global.Tree] => scala.collection.IterableLike[El2,Repr2]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => SymbolicXMLBuilder.this.global.Tree
-
-(=> (Nothing, Nothing)) => SymbolicXMLBuilder.this.global.Tree
-11 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SyntheticMethods.this.global.Symbol],SyntheticMethods.this.global.Apply,That]
-
-scala.collection.generic.CanBuildFrom[List[SyntheticMethods.this.global.Symbol],SyntheticMethods.this.global.Apply,That]
-1 times = 0ms
-
-
-
-Set[SpecializeTypes.this.global.Symbol] => ?{def ++=: ?}
-
-Set[SpecializeTypes.this.global.Symbol] => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-unboxMethodSym.type => ?{def ->: ?}
-
-unboxMethodSym.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SyntheticMethods.this.global.Apply],SyntheticMethods.this.global.gen.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[SyntheticMethods.this.global.Apply],SyntheticMethods.this.global.gen.global.Tree,That]
-1 times = 0ms
-
-
-
-Long => JavaScanner.this.ScanPosition
-
-Long => JavaScanner.this.ScanPosition
-1 times = 0ms
-
-
-
-(=> Double) => String
-
-(=> Double) => String
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[CNF.this.Sym],(CNF.this.Sym, Int),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[CNF.this.Sym],(CNF.this.Sym, Int),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.TypeVar,List[Infer.this.global.TypeVar]]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.TypeVar,List[Infer.this.global.TypeVar]]
-1 times = 0ms
-
-
-
-TreeAndTypeAnalysis.this.global.Scope => TreeAndTypeAnalysis.this.global.Type
-
-TreeAndTypeAnalysis.this.global.Scope => TreeAndTypeAnalysis.this.global.Type
-1 times = 1ms
-
-
-
-target.type => ?{def ->: ?}
-
-target.type => ?{def ->: ?}
-2 times = 1ms
-
-
-
-Global.this.cleanup.type => ?{def ->: ?}
-
-Global.this.cleanup.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-member.NameType => ?{def getterName: ?}
-
-member.NameType => ?{def getterName: ?}
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.TypeConstructorAllowed.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.TypeConstructorAllowed.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-List[RefChecks.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-
-List[RefChecks.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-args.type => ?{def foreach: ?}
-
-args.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-times.type => ?{def sorted: ?}
-
-times.type => ?{def sorted: ?}
-1 times = 1ms
-
-
-
-file.type => ?{def isPackage: ?}
-
-file.type => ?{def isPackage: ?}
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]],scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])],List[Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]]]
-
-scala.collection.generic.CanBuildFrom[List[scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]],scala.collection.immutable.Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])],List[Map[MatchAnalyzer.this.Var,(Seq[MatchAnalyzer.this.Const], Seq[MatchAnalyzer.this.Const])]]]
-1 times = 0ms
-
-
-
-s.type => ?{def stripPrefix: ?}
-
-s.type => ?{def stripPrefix: ?}
-1 times = 0ms
-
-
-
-MultiChoiceSetting.this.domain.ValueSet => ?{def +=: ?}
-
-MultiChoiceSetting.this.domain.ValueSet => ?{def +=: ?}
-4 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.LONGkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.LONGkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Parsers.this.global.FlagSet
-
-((Nothing, Nothing)) => Parsers.this.global.FlagSet
-1 times = 0ms
-
-
-
-(=> List[SpecializeTypes.this.global.Symbol]) => SpecializeTypes.this.global.Type
-
-(=> List[SpecializeTypes.this.global.Symbol]) => SpecializeTypes.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.Set[Delambdafy.this.global.Symbol] => ?{def +=: ?}
-
-scala.collection.Set[Delambdafy.this.global.Symbol] => ?{def +=: ?}
-2 times = 2ms
-
-
-
-JavaScanners.this.global.javanme.DEFAULTkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.DEFAULTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.FINALkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.FINALkw.type => ?{def ->: ?}
-1 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[T],Node,List[Node]]
-
-scala.collection.generic.CanBuildFrom[List[T],Node,List[Node]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],java.net.URL,Array[java.net.URL]]
-
-scala.collection.generic.CanBuildFrom[Array[String],java.net.URL,Array[java.net.URL]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],java.net.URL,Array[java.net.URL]]->scala.reflect.ClassTag[java.net.URL]
-
-
-
-
-
-clauses.type => ?{def size: ?}
-
-clauses.type => ?{def size: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Typers.this.global.Position
-
-(=> (Nothing, Nothing, Nothing)) => Typers.this.global.Position
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],scala.reflect.internal.Variance,List[scala.tools.nsc.Variance]]
-
-scala.collection.generic.CanBuildFrom[List[Validators.this.global.Symbol],scala.reflect.internal.Variance,List[scala.tools.nsc.Variance]]
-1 times = 2ms
-
-
-
-String('internal error: %s (%s) is not supported') => ?{def format: ?}
-
-String('internal error: %s (%s) is not supported') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Symbol],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Constructors.this.global.Symbol],String,That]
-1 times = 0ms
-
-
-
-x$15.type => ?{def INT_>=: ?}
-
-x$15.type => ?{def INT_>=: ?}
-1 times = 0ms
-
-
-
-s.type => ?{def tail: ?}
-
-s.type => ?{def tail: ?}
-1 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.DOUBLE.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.DOUBLE.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Erasure.this.global.Tree) => Erasure.this.global.Type
-
-(=> Erasure.this.global.Tree) => Erasure.this.global.Type
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Type,That]
-1 times = 0ms
-
-
-
-x$10.type => ?{def ->: ?}
-
-x$10.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Symbol],(MatchTranslation.this.global.Symbol, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[MatchTranslation.this.global.Symbol],(MatchTranslation.this.global.Symbol, Int),That]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Map[Int,scala.tools.asm.Type]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Map[Int,scala.tools.asm.Type]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-MatchCodeGen.this.CODE.SelectStart => MatchCodeGen.this.global.Tree
-
-MatchCodeGen.this.CODE.SelectStart => MatchCodeGen.this.global.Tree
-9 times = 1ms
-
-
-
-String => Char
-
-String => Char
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[ToolBoxGlobal.this.Tree],ToolBoxGlobal.this.Symbol,List[ToolBoxGlobal.this.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[ToolBoxGlobal.this.Tree],ToolBoxGlobal.this.Symbol,List[ToolBoxGlobal.this.Symbol]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(NodePrinters.this.global.Name, NodePrinters.this.global.ClassfileAnnotArg)],((NodePrinters.this.global.Name, NodePrinters.this.global.ClassfileAnnotArg), Int),That]
-
-scala.collection.generic.CanBuildFrom[List[(NodePrinters.this.global.Name, NodePrinters.this.global.ClassfileAnnotArg)],((NodePrinters.this.global.Name, NodePrinters.this.global.ClassfileAnnotArg), Int),That]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[List[RefChecks.this.global.Type]] => ?{def +=: ?}
-
-scala.collection.immutable.Set[List[RefChecks.this.global.Type]] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-String('\\u%04x') => ?{def format: ?}
-
-String('\u%04x') => ?{def format: ?}
-2 times = 0ms
-
-
-
-scala.collection.immutable.Set[Contexts.this.global.ImportSelector] => ?{def +=: ?}
-
-scala.collection.immutable.Set[Contexts.this.global.ImportSelector] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-String('([0-7]{1,3}).*') => ?{def r: ?}
-
-String('([0-7]{1,3}).*') => ?{def r: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.transform.UnCurry.UnCurryTransformer.dependentParamTypeErasure.ParamTransform],(UnCurry.this.global.ValDef, UnCurry.this.global.ValDef),That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.transform.UnCurry.UnCurryTransformer.dependentParamTypeErasure.ParamTransform],(UnCurry.this.global.ValDef, UnCurry.this.global.ValDef),That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => scala.tools.asm.tree.ClassNode
-
-((Nothing, Nothing)) => scala.tools.asm.tree.ClassNode
-1 times = 0ms
-
-
-
-Boolean => ?{def &&=: ?}
-
-Boolean => ?{def &&=: ?}
-1 times = 0ms
-
-
-
-String('scala.collection.generic.') => ?{def ->: ?}
-
-String('scala.collection.generic.') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeBuilder.this.global.Tree],TreeBuilder.this.global.ValDef,That]
-
-scala.collection.generic.CanBuildFrom[List[TreeBuilder.this.global.Tree],TreeBuilder.this.global.ValDef,That]
-1 times = 1ms
-
-
-
-String('$scope') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-
-String('$scope') => scala.tools.nsc.ast.parser.SymbolicXMLBuilder.xmlterms.NameType
-1 times = 0ms
-
-
-
-List[Unapplies.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-
-List[Unapplies.this.global.ValDef] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Duplicators.this.global.Position
-
-((Nothing, Nothing, Nothing)) => Duplicators.this.global.Position
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.Tree],Reifiers.this.UnapplyHole,That]
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.Tree],Reifiers.this.UnapplyHole,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Tree],NamesDefaults.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[NamesDefaults.this.global.Tree],NamesDefaults.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],scala.tools.nsc.util.ClassPath,That]
-
-scala.collection.generic.CanBuildFrom[Seq[scala.tools.nsc.util.ClassPath],scala.tools.nsc.util.ClassPath,That]
-1 times = 0ms
-
-
-
-AbstractFileReader.this.buf.type => ?{def slice: ?}
-
-AbstractFileReader.this.buf.type => ?{def slice: ?}
-1 times = 1ms
-
-
-
-clauses.type => ?{def head: ?}
-
-clauses.type => ?{def head: ?}
-1 times = 0ms
-
-
-
-String('scala-devel') => scala.reflect.io.Path
-
-String('scala-devel') => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-Array[Long] => Array[CNF.this.Clause]
-
-Array[Long] => Array[CNF.this.Clause]
-3 times = 0ms
-
-
-
-initialLabels.type => ?{def iterator: ?}
-
-initialLabels.type => ?{def iterator: ?}
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MultiChoiceSetting.this.domain.Choice],String,That]
-
-scala.collection.generic.CanBuildFrom[List[MultiChoiceSetting.this.domain.Choice],String,That]
-1 times = 0ms
-
-
-
-bSeven.type => ?{def slice: ?}
-
-bSeven.type => ?{def slice: ?}
-2 times = 4ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.TypeTree,That]
-
-scala.collection.generic.CanBuildFrom[List[Reshape.this.global.Tree],Reshape.this.global.TypeTree,That]
-1 times = 5ms
-
-
-
-JavaScanners.this.global.javanme.INTERFACEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.INTERFACEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Unit => Reshape.this.global.Type
-
-Unit => Reshape.this.global.Type
-1 times = 0ms
-
-
-
-Ordering[Int]
-
-Ordering[Int]
-8 times = 8ms
-
-
-
-includedFiles.type => ?{def map: ?}
-
-includedFiles.type => ?{def map: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => Typers.this.ContextReporter
-
-(=> Unit) => Typers.this.ContextReporter
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => GenSymbols.this.global.Tree
-
-((Nothing, Nothing, Nothing)) => GenSymbols.this.global.Tree
-1 times = 0ms
-
-
-
-String => ?{def toLong: ?}
-
-String => ?{def toLong: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.delambdafy.LambdaMetaFactoryCapable]
-
-scala.reflect.ClassTag[BCodeBodyBuilder.this.global.delambdafy.LambdaMetaFactoryCapable]
-2 times = 3ms
-
-
-
-String('apos') => ?{def ->: ?}
-
-String('apos') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Symbol],scala.tools.asm.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[BCodeBodyBuilder.this.global.Symbol],scala.tools.asm.Type,That]
-1 times = 0ms
-
-
-
-Array[java.lang.reflect.Field] => ?{def find: ?}
-
-Array[java.lang.reflect.Field] => ?{def find: ?}
-1 times = 0ms
-
-
-
-TreeAndTypeAnalysis.this.global.Tree => TreeAndTypeAnalysis.this.global.Type
-
-TreeAndTypeAnalysis.this.global.Tree => TreeAndTypeAnalysis.this.global.Type
-1 times = 0ms
-
-
-
-Double => Int
-
-Double => Int
-478 times = 47ms
-
-
-
-other.type => ?{def AS: ?}
-
-other.type => ?{def AS: ?}
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Tree],Typers.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-x$4.type => ?{def ->: ?}
-
-x$4.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Printers.this.Tree],List[Printers.this.Tree],That]
-
-scala.collection.generic.CanBuildFrom[List[Printers.this.Tree],List[Printers.this.Tree],That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => MarkupParsers.this.Offset
-
-(=> (Nothing, Nothing, Nothing)) => MarkupParsers.this.Offset
-9 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Tree],MatchApproximation.this.global.Tree,To2]
-
-scala.collection.generic.CanBuildFrom[List[MatchApproximation.this.global.Tree],MatchApproximation.this.global.Tree,To2]
-1 times = 0ms
-
-
-
-ClassfileParser.this.symbolTable.Name => ?{def dropModule: ?}
-
-ClassfileParser.this.symbolTable.Name => ?{def dropModule: ?}
-1 times = 0ms
-
-
-
-List[Typers.this.global.Symbol] => Typers.this.global.Type
-
-List[Typers.this.global.Symbol] => Typers.this.global.Type
-3 times = 0ms
-
-
-
-((Nothing, Nothing)) => Set[MatchApproximator.this.Prop]
-
-((Nothing, Nothing)) => Set[MatchApproximator.this.Prop]
-2 times = 0ms
-
-
-
-Null <:< tools.nsc.io.AbstractFile
-
-Null <:< tools.nsc.io.AbstractFile
-1 times = 0ms
-
-
-
-(=> (Any, Any) => Nothing) => java.util.Comparator[_ >: =?Nothing]
-
-(=> (Any, Any) => Nothing) => java.util.Comparator[_ >: =?Nothing]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.ValDef],TreeGen.this.global.Type,List[TreeGen.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[TreeGen.this.global.ValDef],TreeGen.this.global.Type,List[TreeGen.this.global.Type]]
-1 times = 0ms
-
-
-
-String('verdict: rolled back to original %s') => ?{def format: ?}
-
-String('verdict: rolled back to original %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[CoreBTypesFromSymbols.this.bTypes.global.ClassSymbol],CoreBTypesFromSymbols.this.bTypes.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[CoreBTypesFromSymbols.this.bTypes.global.ClassSymbol],CoreBTypesFromSymbols.this.bTypes.global.Symbol,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.DefDef,That]
-
-scala.collection.generic.CanBuildFrom[List[LambdaLift.this.global.Symbol],LambdaLift.this.global.DefDef,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Unapplies.this.global.Tree
-
-((Nothing, Nothing)) => Unapplies.this.global.Tree
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[PatternExpansion.this.global.Type],String,That]
-
-scala.collection.generic.CanBuildFrom[List[PatternExpansion.this.global.Type],String,That]
-1 times = 0ms
-
-
-
-GenUtils.this.global.nme.UNIVERSE_PREFIX.type => ?{def +: ?}
-
-GenUtils.this.global.nme.UNIVERSE_PREFIX.type => ?{def +: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Symbol],TreeAndTypeAnalysis.this.global.WildcardType.type,That]
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Symbol],TreeAndTypeAnalysis.this.global.WildcardType.type,That]
-1 times = 0ms
-
-
-
-(=> Float) => Long
-
-(=> Float) => Long
-20 times = 0ms
-
-
-
-((Nothing, Nothing)) => Namers.this.global.Symbol
-
-((Nothing, Nothing)) => Namers.this.global.Symbol
-3 times = 0ms
-
-
-
-clauses.type => ?{def filterNot: ?}
-
-clauses.type => ?{def filterNot: ?}
-1 times = 0ms
-
-
-
-(=> Fields.this.global.AnnotationInfo) => Fields.this.global.Type
-
-(=> Fields.this.global.AnnotationInfo) => Fields.this.global.Type
-1 times = 0ms
-
-
-
-(=> Fields.this.global.Tree) => Fields.this.global.Type
-
-(=> Fields.this.global.Tree) => Fields.this.global.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],String,List[String]]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[TypeDiagnostics.this.global.AtBoundIdentifierAttachment.type]
-
-scala.reflect.ClassTag[TypeDiagnostics.this.global.AtBoundIdentifierAttachment.type]
-1 times = 1ms
-
-
-
-Scanners.this.global.nme.IMPORTkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.IMPORTkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[InlinerHeuristics.this.postProcessor.callGraph.postProcessor.bTypes.ClassBType],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IntMap[InlinerHeuristics.this.postProcessor.callGraph.postProcessor.bTypes.ClassBType],String,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.io.Path],scala.util.Success[(scala.tools.nsc.plugins.PluginDescription, scala.reflect.internal.util.ScalaClassLoader)],PDResults]
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.io.Path],scala.util.Success[(scala.tools.nsc.plugins.PluginDescription, scala.reflect.internal.util.ScalaClassLoader)],PDResults]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[UnCurry.this.global.SAMFunction]
-
-scala.reflect.ClassTag[UnCurry.this.global.SAMFunction]
-2 times = 5ms
-
-
-
-Scanners.this.global.nme.USCOREkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.USCOREkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[Int],ExtensionMethods.this.global.TermName,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Stream[Int],ExtensionMethods.this.global.TermName,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Int, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType with Product with Serializable)],(Int, Product with Serializable with CoreBTypesFromSymbols.this.bTypes.BType),That]
-
-scala.collection.generic.CanBuildFrom[List[(Int, CoreBTypesFromSymbols.this.bTypes.PrimitiveBType with Product with Serializable)],(Int, Product with Serializable with CoreBTypesFromSymbols.this.bTypes.BType),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.io.File],(scala.reflect.io.File, scala.util.Try[scala.tools.nsc.plugins.PluginDescription]),That]
-
-scala.collection.generic.CanBuildFrom[List[scala.reflect.io.File],(scala.reflect.io.File, scala.util.Try[scala.tools.nsc.plugins.PluginDescription]),That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => scala.tools.nsc.typechecker.Analyzer.packageObjects.global.Symbol
-
-(=> (Nothing, Nothing)) => scala.tools.nsc.typechecker.Analyzer.packageObjects.global.Symbol
-1 times = 0ms
-
-
-
-(=> List[Erasure.this.global.Symbol]) => Erasure.this.global.Type
-
-(=> List[Erasure.this.global.Symbol]) => Erasure.this.global.Type
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTracker.this.Node],SymbolTrackers.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTracker.this.Node],SymbolTrackers.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-x$20.type => ?{def forall: ?}
-
-x$20.type => ?{def forall: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[CommonSubconditionElimination.this.Test],CommonSubconditionElimination.this.Substitution,That]
-
-scala.collection.generic.CanBuildFrom[List[CommonSubconditionElimination.this.Test],CommonSubconditionElimination.this.Substitution,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit],Unit,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.nsc.transform.patmat.Lit],Unit,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(ContextErrors.this.global.Tree, ContextErrors.this.global.Tree)],ContextErrors.this.global.Name,That]
-
-scala.collection.generic.CanBuildFrom[List[(ContextErrors.this.global.Tree, ContextErrors.this.global.Tree)],ContextErrors.this.global.Name,That]
-1 times = 0ms
-
-
-
-List[(scala.tools.nsc.Phase, scala.tools.nsc.typechecker.TreeCheckers.SymbolTracker.PhaseMap)] => ?{def ::=: ?}
-
-List[(scala.tools.nsc.Phase, scala.tools.nsc.typechecker.TreeCheckers.SymbolTracker.PhaseMap)] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => PatternTypers.this.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => PatternTypers.this.global.Tree
-1 times = 0ms
-
-
-
-(=> Float) => Scanners.this.Offset
-
-(=> Float) => Scanners.this.Offset
-11 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.ClassSymbol],SpecializeTypes.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.ClassSymbol],SpecializeTypes.this.global.Type,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Type],Unit,To]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Type],Unit,To]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[GenSymbols.this.ReifyBindingAttachment]
-
-scala.reflect.ClassTag[GenSymbols.this.ReifyBindingAttachment]
-1 times = 3ms
-
-
-
-((Nothing, (Any, Any) => Nothing)) => Array[Float]
-
-((Nothing, (Any, Any) => Nothing)) => Array[Float]
-1 times = 0ms
-
-
-
-String('(?s)^[\\s&&[^\n\r]]*(.*?)\\s*$') => ?{def r: ?}
-
-String('(?s)^[\s&&[^
-]]*(.*?)\s*$') => ?{def r: ?}
-1 times = 2ms
-
-
-
-(=> Unit) => scala.io.Codec
-
-(=> Unit) => scala.io.Codec
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => MatchAnalyzer.this.Var
-
-(=> (Nothing, Nothing, Nothing)) => MatchAnalyzer.this.Var
-1 times = 0ms
-
-
-
-(=> Set[SpecializeTypes.this.global.Symbol]) => ?{def ++=: ?}
-
-(=> Set[SpecializeTypes.this.global.Symbol]) => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-MatchTranslation.this.global.Symbol => ?{def ->: ?}
-
-MatchTranslation.this.global.Symbol => ?{def ->: ?}
-1 times = 1ms
-
-
-
-TypersStats.this.Counter => Ordered[TypersStats.this.Counter]
-
-TypersStats.this.Counter => Ordered[TypersStats.this.Counter]
-1 times = 0ms
-
-
-
-scala.math.Ordering[RefChecks.this.global.Symbol#NameType]
-
-scala.math.Ordering[RefChecks.this.global.Symbol#NameType]
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.ImplicitsEnabled.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.ImplicitsEnabled.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Array[java.net.URL] => ?{def toArray: ?}
-
-Array[java.net.URL] => ?{def toArray: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[Short]
-
-((Nothing, Nothing)) => Array[Short]
-1 times = 0ms
-
-
-
-String('isBundle') => ?{def ->: ?}
-
-String('isBundle') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[Product,List[MatchOptimization.this.global.Tree]],MatchOptimization.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[Product,List[MatchOptimization.this.global.Tree]],MatchOptimization.this.global.Tree,That]
-1 times = 0ms
-
-
-
-String('.scalac') => scala.reflect.io.Path
-
-String('.scalac') => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => NamesDefaults.this.global.Tree
-
-(=> (Nothing, Nothing)) => NamesDefaults.this.global.Tree
-1 times = 0ms
-
-
-
-ToolBoxGlobal.this.settings.BooleanSetting => Boolean
-
-ToolBoxGlobal.this.settings.BooleanSetting => Boolean
-1 times = 0ms
-
-
-
-proxyName.type => ?{def setterName: ?}
-
-proxyName.type => ?{def setterName: ?}
-1 times = 0ms
-
-
-
-List[LambdaLift.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-
-List[LambdaLift.this.global.Symbol] => scala.collection.GenTraversableOnce[B]
-1 times = 0ms
-
-
-
-LambdaLift.this.global.Scope => LambdaLift.this.global.Type
-
-LambdaLift.this.global.Scope => LambdaLift.this.global.Type
-1 times = 1ms
-
-
-
-Int(64) => scala.tools.nsc.typechecker.ContextMode
-
-Int(64) => scala.tools.nsc.typechecker.ContextMode
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.MethodInsnNode,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[scala.tools.asm.tree.AbstractInsnNode],scala.tools.asm.tree.MethodInsnNode,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Nothing],DependencyGraph.this.Edge,List[DependencyGraph.this.Edge]]
-
-scala.collection.generic.CanBuildFrom[List[Nothing],DependencyGraph.this.Edge,List[DependencyGraph.this.Edge]]
-1 times = 0ms
-
-
-
-String('reifee %s of type %s is not supported') => ?{def format: ?}
-
-String('reifee %s of type %s is not supported') => ?{def format: ?}
-2 times = 1ms
-
-
-
-(=> Unit) => java.util.Map[_ <: K, _ <: V]
-
-(=> Unit) => java.util.Map[_ <: K, _ <: V]
-1 times = 0ms
-
-
-
-String('imported `%s\' is permanently hidden by definition of %s') => ?{def format: ?}
-
-String('imported `%s' is permanently hidden by definition of %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[SpecializeTypes.this.global.Symbol,SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[SpecializeTypes.this.global.Symbol,SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-(=> TreeAndTypeAnalysis.this.global.Scope) => TreeAndTypeAnalysis.this.global.Type
-
-(=> TreeAndTypeAnalysis.this.global.Scope) => TreeAndTypeAnalysis.this.global.Type
-1 times = 0ms
-
-
-
-String('last tree to typer') => ?{def ->: ?}
-
-String('last tree to typer') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-java.util.Iterator[java.nio.file.Path] => ?{def asScala: ?}
-
-java.util.Iterator[java.nio.file.Path] => ?{def asScala: ?}
-3 times = 1ms
-
-
-
-RefChecks.this.global.Type => ?{def +: ?}
-
-RefChecks.this.global.Type => ?{def +: ?}
-1 times = 0ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.BooleanClass.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.global.definitions.BooleanClass.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.BREAKkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.BREAKkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.TypeDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.TypeDef],Namers.this.global.TypeDef,That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Contexts.this.global.Symbol
-
-((Nothing, Nothing, Nothing)) => Contexts.this.global.Symbol
-1 times = 0ms
-
-
-
-badFlags.type => ?{def foreach: ?}
-
-badFlags.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Int],AccessorSynthesis.this.global.TermSymbol,That]
-
-scala.collection.generic.CanBuildFrom[Array[Int],AccessorSynthesis.this.global.TermSymbol,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Int],AccessorSynthesis.this.global.TermSymbol,That]->scala.reflect.ClassTag[AccessorSynthesis.this.global.TermSymbol]
-
-
-
-
-
-Some[Parsers.this.global.TypeDef] => scala.collection.GenTraversableOnce[?]
-
-Some[Parsers.this.global.TypeDef] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[Infer.this.global.TypeVar] => ?{def +=: ?}
-
-scala.collection.immutable.Set[Infer.this.global.TypeVar] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Macros.this.MacroRuntimeAttachment]
-
-scala.reflect.ClassTag[Macros.this.MacroRuntimeAttachment]
-4 times = 3ms
-
-
-
-((Nothing, Nothing)) => Array[Float]
-
-((Nothing, Nothing)) => Array[Float]
-1 times = 0ms
-
-
-
-parent.type => ?{def +: ?}
-
-parent.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-BCodeSkelBuilder.this.global.Symbol => ?{def ->: ?}
-
-BCodeSkelBuilder.this.global.Symbol => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => SymbolTables.this.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => SymbolTables.this.global.Tree
-1 times = 0ms
-
-
-
-StdOpts.this.Bash.name.type => ?{def -->: ?}
-
-StdOpts.this.Bash.name.type => ?{def -->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.SubComponent],scala.tools.nsc.SubComponent,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.tools.nsc.SubComponent],scala.tools.nsc.SubComponent,That]
-1 times = 0ms
-
-
-
-String(' %s(%s)') => ?{def format: ?}
-
-String(' %s(%s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-FastTrack.this.macros.global.Symbol => FastTrack.this.macros.global.Tree
-
-FastTrack.this.macros.global.Symbol => FastTrack.this.macros.global.Tree
-6 times = 1ms
-
-
-
-Option[scala.tools.nsc.util.ClassPath] => Traversable[scala.tools.nsc.util.ClassPath]
-
-Option[scala.tools.nsc.util.ClassPath] => Traversable[scala.tools.nsc.util.ClassPath]
-1 times = 0ms
-
-
-
-until.type => ?{def head: ?}
-
-until.type => ?{def head: ?}
-1 times = 0ms
-
-
-
-String => ?{def +=: ?}
-
-String => ?{def +=: ?}
-6 times = 1ms
-
-
-
-thenp.type => ?{def ->: ?}
-
-thenp.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => UnCurry.this.global.Tree
-
-((Nothing, Nothing, Nothing)) => UnCurry.this.global.Tree
-1 times = 0ms
-
-
-
-Global.this.extensionMethods.type => ?{def ->: ?}
-
-Global.this.extensionMethods.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-resources.type => ?{def asScala: ?}
-
-resources.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Symbol],(SymbolTrackers.this.global.Symbol, Long),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[SymbolTrackers.this.global.Symbol],(SymbolTrackers.this.global.Symbol, Long),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Type],TreeAndTypeAnalysis.this.global.WildcardType.type,That]
-
-scala.collection.generic.CanBuildFrom[List[TreeAndTypeAnalysis.this.global.Type],TreeAndTypeAnalysis.this.global.WildcardType.type,That]
-1 times = 0ms
-
-
-
-List[TreeCheckers.this.global.DefTree] => ?{def ::=: ?}
-
-List[TreeCheckers.this.global.DefTree] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[java.net.URL],scala.tools.nsc.util.ClassPath,That]
-
-scala.collection.generic.CanBuildFrom[List[java.net.URL],scala.tools.nsc.util.ClassPath,That]
-1 times = 0ms
-
-
-
-javaFiles.type => ?{def isEmpty: ?}
-
-javaFiles.type => ?{def isEmpty: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(ScannersCommon.this.global.Name, ScannersCommon.this.Token)],(Int, ScannersCommon.this.Token),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(ScannersCommon.this.global.Name, ScannersCommon.this.Token)],(Int, ScannersCommon.this.Token),That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.TypeVar,That]
-
-scala.collection.generic.CanBuildFrom[List[Infer.this.global.TypeVar],Infer.this.global.TypeVar,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[RefChecks.this.global.Symbol]],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[List[RefChecks.this.global.Symbol]],Int,That]
-1 times = 0ms
-
-
-
-String('className') => ?{def ->: ?}
-
-String('className') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Set[MatchApproximator.this.Prop]
-
-(=> (Nothing, Nothing)) => Set[MatchApproximator.this.Prop]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Typers.this.global.ValDef]],List[Typers.this.global.ValDef],List[List[Typers.this.global.ValDef]]]
-
-scala.collection.generic.CanBuildFrom[List[List[Typers.this.global.ValDef]],List[Typers.this.global.ValDef],List[List[Typers.this.global.ValDef]]]
-1 times = 0ms
-
-
-
-String(',(') => ?{def filter: ?}
-
-String(',(') => ?{def filter: ?}
-1 times = 0ms
-
-
-
-MatchOptimization.this.CODE.SelectStart => MatchOptimization.this.global.Tree
-
-MatchOptimization.this.CODE.SelectStart => MatchOptimization.this.global.Tree
-3 times = 0ms
-
-
-
-String('Compiling %d file%s to %s') => ?{def format: ?}
-
-String('Compiling %d file%s to %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Array[BCodeHelpers.this.bTypes.BType] => Array[String]
-
-Array[BCodeHelpers.this.bTypes.BType] => Array[String]
-1 times = 0ms
-
-
-
-expr.type => ?{def tail: ?}
-
-expr.type => ?{def tail: ?}
-1 times = 0ms
-
-
-
-String('_(\\d{1,2}).*') => ?{def r: ?}
-
-String('_(\d{1,2}).*') => ?{def r: ?}
-1 times = 0ms
-
-
-
-Float => Int
-
-Float => Int
-478 times = 28ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[s.BooleanSetting],String,That]
-
-scala.collection.generic.CanBuildFrom[List[s.BooleanSetting],String,That]
-1 times = 2ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => SymbolTables.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => SymbolTables.this.global.Symbol
-6 times = 1ms
-
-
-
-(=> (Nothing, Unit)) => Typers.this.global.Symbol
-
-(=> (Nothing, Unit)) => Typers.this.global.Symbol
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => ToolBoxGlobal.this.CompilationUnit
-
-(=> (Nothing, Nothing)) => ToolBoxGlobal.this.CompilationUnit
-1 times = 0ms
-
-
-
-Scanners.this.global.nme.RETURNkw.type => ?{def ->: ?}
-
-Scanners.this.global.nme.RETURNkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-String('quot') => ?{def ->: ?}
-
-String('quot') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Contexts.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing)) => Contexts.this.global.Symbol
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Any],String,Seq[String]]
-
-scala.collection.generic.CanBuildFrom[Seq[Any],String,Seq[String]]
-2 times = 0ms
-
-
-
-String('during phase') => ?{def ->: ?}
-
-String('during phase') => ?{def ->: ?}
-1 times = 4ms
-
-
-
-(=> (Nothing, Nothing)) => Set[MatchAnalyzer.this.Prop]
-
-(=> (Nothing, Nothing)) => Set[MatchAnalyzer.this.Prop]
-1 times = 0ms
-
-
-
-c.type => ?{def AND: ?}
-
-c.type => ?{def AND: ?}
-1 times = 2ms
-
-
-
-from.type => ?{def dropModule: ?}
-
-from.type => ?{def dropModule: ?}
-1 times = 0ms
-
-
-
-(=> Array[Long]) => Array[AnyRef]
-
-(=> Array[Long]) => Array[AnyRef]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.Symbol,List[Typers.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.Symbol,List[Typers.this.global.Symbol]]
-1 times = 0ms
-
-
-
-(=> Macros.this.global.AnnotationInfo) => Macros.this.global.Type
-
-(=> Macros.this.global.AnnotationInfo) => Macros.this.global.Type
-1 times = 0ms
-
-
-
-Unit => List[MatchCodeGen.this.global.Tree]
-
-Unit => List[MatchCodeGen.this.global.Tree]
-1 times = 0ms
-
-
-
-String('/') => scala.reflect.io.Path
-
-String('/') => scala.reflect.io.Path
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Typers.this.global.ClassfileAnnotArg]
-
-scala.reflect.ClassTag[Typers.this.global.ClassfileAnnotArg]
-1 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[Class[_]]
-
-(=> Array[Byte]) => Array[Class[_]]
-3 times = 0ms
-
-
-
-tree.type => ?{def +: ?}
-
-tree.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => EtaExpansion.this.global.gen.global.Symbol
-
-(=> (Nothing, Nothing)) => EtaExpansion.this.global.gen.global.Symbol
-1 times = 0ms
-
-
-
-String('Locatable: %s (%s) owned by %s (%s) at %s') => ?{def format: ?}
-
-String('Locatable: %s (%s) owned by %s (%s) at %s') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.io.FileDescriptor
-
-((Nothing, Nothing)) => java.io.FileDescriptor
-2 times = 0ms
-
-
-
-synthesizer.clazz.NameType => ?{def +: ?}
-
-synthesizer.clazz.NameType => ?{def +: ?}
-1 times = 0ms
-
-
-
-List[String] => ?{def +:=: ?}
-
-List[String] => ?{def +:=: ?}
-2 times = 0ms
-
-
-
-String('tough type: %s (%s)') => ?{def format: ?}
-
-String('tough type: %s (%s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-Global.this.mixer.type => ?{def ->: ?}
-
-Global.this.mixer.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => Implicits.this.global.TypeBounds
-
-(=> Unit) => Implicits.this.global.TypeBounds
-1 times = 0ms
-
-
-
-CleanUp.this.global.gen.global.RefTree => ?{def ===: ?}
-
-CleanUp.this.global.gen.global.RefTree => ?{def ===: ?}
-1 times = 0ms
-
-
-
-scala.tools.nsc.typechecker.ContextMode.SelfSuperCall.type => ?{def ->: ?}
-
-scala.tools.nsc.typechecker.ContextMode.SelfSuperCall.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Double) => Int
-
-(=> Double) => Int
-478 times = 25ms
-
-
-
-bits.type => ?{def toLong: ?}
-
-bits.type => ?{def toLong: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.BOOLEANkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.BOOLEANkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.ObjectTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.ObjectTpe.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Unit) => List[MatchCodeGen.this.global.Tree]
-
-(=> Unit) => List[MatchCodeGen.this.global.Tree]
-1 times = 0ms
-
-
-
-Taggers.this.c.universe.definitions.AnyTpe.type => ?{def ->: ?}
-
-Taggers.this.c.universe.definitions.AnyTpe.type => ?{def ->: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],Implicits.this.global.TypeVar,That]
-
-scala.collection.generic.CanBuildFrom[List[Implicits.this.global.Symbol],Implicits.this.global.TypeVar,That]
-1 times = 0ms
-
-
-
-List[Validators.this.global.Symbol] => scala.collection.GenTraversableOnce[Validators.this.global.Symbol]
-
-List[Validators.this.global.Symbol] => scala.collection.GenTraversableOnce[Validators.this.global.Symbol]
-2 times = 2ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => JavaParsers.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => JavaParsers.this.global.Symbol
-12 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],java.io.File,That]
-
-scala.collection.generic.CanBuildFrom[List[String],java.io.File,That]
-1 times = 0ms
-
-
-
-(=> List[(scala.tools.asm.Label, BCodeBodyBuilder.this.global.Tree)]) => ?{def ::=: ?}
-
-(=> List[(scala.tools.asm.Label, BCodeBodyBuilder.this.global.Tree)]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-List[Int] => ?{def ::=: ?}
-
-List[Int] => ?{def ::=: ?}
-2 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.CONTINUEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.CONTINUEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Int]
-
-(=> (Nothing, (Any, Any) => Nothing)) => Array[Int]
-1 times = 0ms
-
-
-
-((Any, Any) => Nothing) => java.util.Comparator[_ >: =?Nothing]
-
-((Any, Any) => Nothing) => java.util.Comparator[_ >: =?Nothing]
-1 times = 0ms
-
-
-
-Typers.this.global.Scope => Typers.this.global.Type
-
-Typers.this.global.Scope => Typers.this.global.Type
-3 times = 1ms
-
-
-
-scala.tools.nsc.Settings#BooleanSetting => ?{def unary_!: ?}
-
-scala.tools.nsc.Settings#BooleanSetting => ?{def unary_!: ?}
-10 times = 2ms
-
-
-
-space.type => ?{def *: ?}
-
-space.type => ?{def *: ?}
-1 times = 0ms
-
-
-
-UnCurry.this.global.Symbol => ?{def ->: ?}
-
-UnCurry.this.global.Symbol => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> List[Validators.this.global.Symbol]) => Validators.this.global.Type
-
-(=> List[Validators.this.global.Symbol]) => Validators.this.global.Type
-1 times = 1ms
-
-
-
-maxLen.type => ?{def min: ?}
-
-maxLen.type => ?{def min: ?}
-1 times = 0ms
-
-
-
-String => ?{def stripSuffix: ?}
-
-String => ?{def stripSuffix: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => TreeCheckers.this.global.Tree
-
-(=> (Nothing, Nothing, Nothing)) => TreeCheckers.this.global.Tree
-2 times = 0ms
-
-
-
-proxyName.type => ?{def getterName: ?}
-
-proxyName.type => ?{def getterName: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[(CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.global.Symbol, CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.TypeEnv),CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.global.Symbol],CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[(CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.global.Symbol, CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.TypeEnv),CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.global.Symbol],CoreBTypesFromSymbols.this.bTypes.global.specializeTypes.global.Symbol,That]
-1 times = 5ms
-
-
-
-scala.runtime.Tuple2Zipped[MatchTreeMaking.this.global.Symbol,List[MatchTreeMaking.this.global.Symbol],MatchTreeMaking.this.global.Tree,List[MatchTreeMaking.this.global.Tree]] => ?{def partition: ?}
-
-scala.runtime.Tuple2Zipped[MatchTreeMaking.this.global.Symbol,List[MatchTreeMaking.this.global.Symbol],MatchTreeMaking.this.global.Tree,List[MatchTreeMaking.this.global.Tree]] => ?{def partition: ?}
-1 times = 0ms
-
-
-
-fs.type => ?{def exists: ?}
-
-fs.type => ?{def exists: ?}
-1 times = 0ms
-
-
-
-(=> List[Typers.this.global.Symbol]) => Typers.this.global.Type
-
-(=> List[Typers.this.global.Symbol]) => Typers.this.global.Type
-3 times = 0ms
-
-
-
-n.type => ?{def /:: ?}
-
-n.type => ?{def /:: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Typers.this.global.Symbol
-
-((Nothing, Nothing)) => Typers.this.global.Symbol
-8 times = 0ms
-
-
-
-list.type => ?{def asScala: ?}
-
-list.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-Some[Reshape.this.global.Tree] => scala.collection.GenTraversableOnce[?]
-
-Some[Reshape.this.global.Tree] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-(=> (Nothing, Unit, Unit)) => Macros.this.global.FlagSet
-
-(=> (Nothing, Unit, Unit)) => Macros.this.global.FlagSet
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Parsers.this.Offset
-
-((Nothing, Nothing, Nothing)) => Parsers.this.Offset
-10 times = 1ms
-
-
-
-scala.reflect.ClassTag[BigInt]
-
-scala.reflect.ClassTag[BigInt]
-1 times = 0ms
-
-
-
-Boolean(true) => Macros.this.global.BooleanFlag
-
-Boolean(true) => Macros.this.global.BooleanFlag
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[Typers.this.global.SAMFunction]
-
-scala.reflect.ClassTag[Typers.this.global.SAMFunction]
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.PACKAGEkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.PACKAGEkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[AnyRef]
-
-scala.reflect.ClassTag[AnyRef]
-6 times = 9ms
-
-
-
-files.type => ?{def map: ?}
-
-files.type => ?{def map: ?}
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.treeInfo.global.ValDef],UnCurry.this.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.treeInfo.global.ValDef],UnCurry.this.global.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[TreeAndTypeAnalysis.this.global.Type]],List[TreeAndTypeAnalysis.this.global.Type],List[List[TreeAndTypeAnalysis.this.global.Type]]]
-
-scala.collection.generic.CanBuildFrom[List[List[TreeAndTypeAnalysis.this.global.Type]],List[TreeAndTypeAnalysis.this.global.Type],List[List[TreeAndTypeAnalysis.this.global.Type]]]
-1 times = 0ms
-
-
-
-(=> MultiStringSetting.this.T) => ?{def ++=: ?}
-
-(=> MultiStringSetting.this.T) => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-(=> Long) => ?{def |=: ?}
-
-(=> Long) => ?{def |=: ?}
-6 times = 0ms
-
-
-
-scala.collection.immutable.Set[scala.tools.asm.tree.TryCatchBlockNode] => ?{def ++=: ?}
-
-scala.collection.immutable.Set[scala.tools.asm.tree.TryCatchBlockNode] => ?{def ++=: ?}
-1 times = 0ms
-
-
-
-(=> Double) => Scanners.this.Offset
-
-(=> Double) => Scanners.this.Offset
-11 times = 1ms
-
-
-
-(=> Array[Boolean]) => Array[Int]
-
-(=> Array[Boolean]) => Array[Int]
-6 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Erasure.this.global.Tree
-
-((Nothing, Nothing, Nothing)) => Erasure.this.global.Tree
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.Tree],Delambdafy.this.global.Tree,List[Delambdafy.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.Tree],Delambdafy.this.global.Tree,List[Delambdafy.this.global.Tree]]
-1 times = 0ms
-
-
-
-Duplicators.this.global.Scope => Duplicators.this.global.Type
-
-Duplicators.this.global.Scope => Duplicators.this.global.Type
-8 times = 1ms
-
-
-
-scala.reflect.ClassTag[scala.runtime.BoxedUnit]
-
-scala.reflect.ClassTag[scala.runtime.BoxedUnit]
-1 times = 1ms
-
-
-
-((Nothing, Nothing)) => Typers.this.global.constfold.global.Tree
-
-((Nothing, Nothing)) => Typers.this.global.constfold.global.Tree
-1 times = 0ms
-
-
-
-((List[MatchTreeMaking.this.global.Symbol], List[MatchTreeMaking.this.global.Tree])) => ?{def zipped: ?}
-
-((List[MatchTreeMaking.this.global.Symbol], List[MatchTreeMaking.this.global.Tree])) => ?{def zipped: ?}
-1 times = 2ms
-
-
-
-(=> scala.tools.asm.tree.analysis.Analyzer[scala.tools.asm.tree.analysis.BasicValue]) => scala.tools.asm.tree.analysis.Analyzer[V]
-
-(=> scala.tools.asm.tree.analysis.Analyzer[scala.tools.asm.tree.analysis.BasicValue]) => scala.tools.asm.tree.analysis.Analyzer[V]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Symbol,List[SpecializeTypes.this.global.Symbol]]
-
-scala.collection.generic.CanBuildFrom[List[SpecializeTypes.this.global.Type],SpecializeTypes.this.global.Symbol,List[SpecializeTypes.this.global.Symbol]]
-2 times = 0ms
-
-
-
-OptimizedCasegen.this.nextCase.type => ?{def APPLY: ?}
-
-OptimizedCasegen.this.nextCase.type => ?{def APPLY: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Internals.this.global.Symbol
-
-((Nothing, Nothing)) => Internals.this.global.Symbol
-1 times = 0ms
-
-
-
-java.util.List[scala.tools.asm.tree.LocalVariableNode] => ?{def asScala: ?}
-
-java.util.List[scala.tools.asm.tree.LocalVariableNode] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Placeholders.this.global.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => Placeholders.this.global.Symbol
-8 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.Tree],Namers.this.global.Type,That]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.Tree],Namers.this.global.Type,That]
-1 times = 0ms
-
-
-
-Global.this.patmat.type => ?{def ->: ?}
-
-Global.this.patmat.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[CommonSubconditionElimination.this.Test]],List[CommonSubconditionElimination.this.TreeMaker],That]
-
-scala.collection.generic.CanBuildFrom[List[List[CommonSubconditionElimination.this.Test]],List[CommonSubconditionElimination.this.TreeMaker],That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[Object]
-
-((Nothing, Nothing)) => Array[Object]
-1 times = 0ms
-
-
-
-Infer.this.global.Tree => Infer.this.global.Type
-
-Infer.this.global.Tree => Infer.this.global.Type
-3 times = 0ms
-
-
-
-(=> GenSymbols.this.SymbolTable) => ?{def +=: ?}
-
-(=> GenSymbols.this.SymbolTable) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],RefChecks.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[RefChecks.this.global.Symbol],RefChecks.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-trimmed.type => ?{def reverse: ?}
-
-trimmed.type => ?{def reverse: ?}
-1 times = 0ms
-
-
-
-s.type => ?{def replaceAllLiterally: ?}
-
-s.type => ?{def replaceAllLiterally: ?}
-1 times = 0ms
-
-
-
-scala.collection.immutable.Map[SuperAccessors.this.global.Symbol,SuperAccessors.this.global.analyzer.Typer] => ?{def -=: ?}
-
-scala.collection.immutable.Map[SuperAccessors.this.global.Symbol,SuperAccessors.this.global.analyzer.Typer] => ?{def -=: ?}
-1 times = 0ms
-
-
-
-JavaParsers.this.global.Position => Int
-
-JavaParsers.this.global.Position => Int
-6 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.WildcardType.type,List[Typers.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.Symbol],Typers.this.global.WildcardType.type,List[Typers.this.global.Type]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,MultiStringSetting.this.T]
-
-scala.collection.generic.CanBuildFrom[List[String],String,MultiStringSetting.this.T]
-1 times = 0ms
-
-
-
-ManifestResourcesClassPath.this.file.type => ?{def toURLs: ?}
-
-ManifestResourcesClassPath.this.file.type => ?{def toURLs: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[Errors.this.global.Symbol]],String,That]
-
-scala.collection.generic.CanBuildFrom[List[List[Errors.this.global.Symbol]],String,That]
-1 times = 2ms
-
-
-
-CoreBTypesFromSymbols.this.bTypes.INT.type => ?{def ->: ?}
-
-CoreBTypesFromSymbols.this.bTypes.INT.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.ValDef],UnCurry.this.global.Symbol,That]
-
-scala.collection.generic.CanBuildFrom[List[UnCurry.this.global.ValDef],UnCurry.this.global.Symbol,That]
-1 times = 0ms
-
-
-
-String('implementation restriction: cannot reify type %s (%s)') => ?{def format: ?}
-
-String('implementation restriction: cannot reify type %s (%s)') => ?{def format: ?}
-1 times = 0ms
-
-
-
-((Nothing, (Any, Any) => Nothing)) => Array[Byte]
-
-((Nothing, (Any, Any) => Nothing)) => Array[Byte]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.AnnotationInfo],Unit,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.AnnotationInfo],Unit,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.Symbol],Namers.this.global.Type,List[Namers.this.global.Type]]
-
-scala.collection.generic.CanBuildFrom[List[Namers.this.global.Symbol],Namers.this.global.Type,List[Namers.this.global.Type]]
-1 times = 0ms
-
-
-
-String('Use classpath and sourcepath options like in the case of e.g. \'scala\' command.\n | There\'s also one additional option:\n | -requiredInstances <int value> Determine how many times classpath should be loaded\n ') => ?{def stripMargin: ?}
-
-String('Use classpath and sourcepath options like in the case of e.g. 'scala' command.
- | There's also one additional option:
- | -requiredInstances <int value> Determine how many times classpath should be loaded
- ') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => List[Typers.this.global.Type]
-
-((Nothing, Nothing)) => List[Typers.this.global.Type]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.gen.global.Tree],Typers.this.global.gen.global.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[Typers.this.global.gen.global.Tree],Typers.this.global.gen.global.Tree,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Throwable
-
-(=> (Nothing, Nothing)) => Throwable
-7 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => SymbolicXMLBuilder.this.global.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => SymbolicXMLBuilder.this.global.Symbol
-8 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => FormatInterpolator.this.c.universe.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => FormatInterpolator.this.c.universe.Symbol
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[SymbolTables.this.ReifyBindingAttachment]
-
-scala.reflect.ClassTag[SymbolTables.this.ReifyBindingAttachment]
-4 times = 7ms
-
-
-
-origMeth.type => ?{def ->: ?}
-
-origMeth.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-treeStrings.type => ?{def ::: ?}
-
-treeStrings.type => ?{def ::: ?}
-1 times = 2ms
-
-
-
-treeStrings.type => ?{def ::: ?}->Ordering[String]
-
-
-
-
-
-clauses.type => ?{def isEmpty: ?}
-
-clauses.type => ?{def isEmpty: ?}
-1 times = 0ms
-
-
-
-JavaScanners.this.global.javanme.IFkw.type => ?{def ->: ?}
-
-JavaScanners.this.global.javanme.IFkw.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Array[StackTraceElement] => ?{def dropWhile: ?}
-
-Array[StackTraceElement] => ?{def dropWhile: ?}
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.TermSymbol],Delambdafy.this.global.ValDef,That]
-
-scala.collection.generic.CanBuildFrom[List[Delambdafy.this.global.TermSymbol],Delambdafy.this.global.ValDef,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.ValDef],Reifiers.this.global.Tree,List[Reifiers.this.global.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[Reifiers.this.global.ValDef],Reifiers.this.global.Tree,List[Reifiers.this.global.Tree]]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[String,Option[String]],(String, String),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[String,Option[String]],(String, String),That]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Typers.this.OriginalTreeAttachment]
-
-scala.reflect.ClassTag[Typers.this.OriginalTreeAttachment]
-1 times = 0ms
-
-
-
-Validators.this.global.Tree => Validators.this.global.Type
-
-Validators.this.global.Tree => Validators.this.global.Type
-1 times = 0ms
-
-
-
-Array[scala.tools.asm.Type] => scala.collection.GenSeq[?]
-
-Array[scala.tools.asm.Type] => scala.collection.GenSeq[?]
-2 times = 1ms
-
-
-
-scala.collection.immutable.Set[TypeDiagnostics.this.TypeDiag] => ?{def +=: ?}
-
-scala.collection.immutable.Set[TypeDiagnostics.this.TypeDiag] => ?{def +=: ?}
-2 times = 0ms
-
-
-
-List[scala.tools.asm.tree.LocalVariableNode] => ?{def asJava: ?}
-
-List[scala.tools.asm.tree.LocalVariableNode] => ?{def asJava: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Array[Char]
-
-(=> (Nothing, Nothing)) => Array[Char]
-2 times = 0ms
-
-
-
-ch.type => ?{def isDigit: ?}
-
-ch.type => ?{def isDigit: ?}
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.lang.reflect.Method
-
-((Nothing, Nothing)) => java.lang.reflect.Method
-1 times = 0ms
-
-
-
diff --git a/docs/scalatest-core-flamegraph.svg b/docs/scalatest-core-flamegraph.svg
deleted file mode 100644
index a67342a..0000000
--- a/docs/scalatest-core-flamegraph.svg
+++ /dev/null
@@ -1,5146 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Flame Graph
-
-Reset Zoom
-Search
-
-
-paramTypes.type => ?{def isEmpty: ?} (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E, Throwable)],(Int, E, Throwable),That] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.GenericApply, Int)],List[DiagrammedExprMacro.this.context.universe.Tree],List[List[DiagrammedExprMacro.this.context.universe.Tree]]] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing)) => Int (5 ms, 0.05%)
-
-
-
-org.scalactic.anyvals.PosZInt => Int (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with U] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-Array[Long] => Array[String] (12 ms, 0.12%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-Array[StackTraceElement] => ?{def drop: ?} (5 ms, 0.05%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-scala.languageFeature.experimental.macros (29 ms, 0.28%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS] => org.scalatest.matchers.Matcher[T with U] (2 ms, 0.02%)
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-asserting.Result => asserting.Result (24 ms, 0.23%)
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-scala.math.Ordering[org.scalatest.events.Ordinal] (3 ms, 0.03%)
-
-
-
-Array[sbt.testing.TaskDef] => ?{def map: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Writability[T] (6 ms, 0.06%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with U] (177 ms, 1.71%)
-
-
-
-Array[String] => ?{def map: ?} (7 ms, 0.07%)
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-TC2[V] (13 ms, 0.13%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],org.scalatest.events.RecordableEvent,That] (5 ms, 0.05%)
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (2 ms, 0.02%)
-
-
-
-that.stamps.type => ?{def deep: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Existence[T with AnyRef] (18 ms, 0.17%)
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Emptiness[T with AnyRef] (47 ms, 0.45%)
-
-
-
-org.scalatest.enablers.Timed[org.scalatest.FutureOutcome] (1 ms, 0.01%)
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with AnyRef with U] (11 ms, 0.11%)
-
-
-
-((Nothing, Nothing)) => java.awt.Component (1 ms, 0.01%)
-
-
-
-Array[String] => ?{def isEmpty: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrContainWord => (T with U => org.scalatest.matchers.MatchResult) (1 ms, 0.01%)
-
-
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFunSuiteLike.this.FixtureParam => org.scalatest.AsyncOutcome) (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.Elem,Any] (1 ms, 0.01%)
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-(=> (Any => Nothing, Nothing, Nothing)) => Int (4 ms, 0.04%)
-
-
-
-ResultOfBeWordForAny.this.left.type => ?{def isDefinedAt: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-stackTrace.type => ?{def indexWhere: ?} (1 ms, 0.01%)
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[RandomTestOrder.this.DeferredSuiteRun],RandomTestOrder.this.DeferredSuiteRun,List[RandomTestOrder.this.DeferredSuiteRun]] (1 ms, 0.01%)
-
-
-
-String => ?{def stripMargin: ?} (11 ms, 0.11%)
-
-
-
-Long => Int (19 ms, 0.18%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (4 ms, 0.04%)
-
-
-
-e.type => ?{def indexOf: ?} (3 ms, 0.03%)
-
-
-
-rightRegexString.type => ?{def r: ?} (5 ms, 0.05%)
-
-
-
-methodTags.type => ?{def map: ?} (4 ms, 0.04%)
-
-
-
-List[AsyncSuperEngine.this.Node] => ?{def ::=: ?} (53 ms, 0.51%)
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-Array[java.lang.reflect.Method] => ?{def withFilter: ?} (5 ms, 0.05%)
-
-
-
-(=> Array[Unit]) => Array[String] (8 ms, 0.08%)
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (191 ms, 1.84%)
-o..
-
-
-org.scalacheck.Arbitrary[C] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[context.universe.AppliedTypeTree] (9 ms, 0.09%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing] (13 ms, 0.13%)
-
-
-
-Unit => java.awt.Rectangle (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (4 ms, 0.04%)
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Timed[T] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with String] (5 ms, 0.05%)
-
-
-
-methodTags.type => ?{def contains: ?} (3 ms, 0.03%)
-
-
-
-org.scalatest.enablers.TableAsserting[scala.concurrent.Future[ASSERTION]] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (2 ms, 0.02%)
-
-
-
-Int(0) => ?{def until: ?} (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],String,That] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.Matcher[T] (3 ms, 0.03%)
-
-
-
-(=> Array[Long]) => Array[String] (7 ms, 0.07%)
-
-
-
-((Nothing, Nothing, Nothing)) => => String (22 ms, 0.21%)
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (2 ms, 0.02%)
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-Array[(String, String)] => scala.collection.GenTraversableOnce[(String, ?V1)] (1 ms, 0.01%)
-
-
-
-Ordinal.this.stamps.type => ?{def zipWithIndex: ?} (2 ms, 0.02%)
-
-
-
-suiteTags.type => ?{def size: ?} (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[(Int, Int)] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-(Any => Nothing) => Option[String] (7 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Function] (29 ms, 0.28%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with AnyRef] (53 ms, 0.51%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Tuple2[Int, _]],Any,That] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> Any => Nothing) => Option[String] (5 ms, 0.05%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.collection.immutable.Set[org.scalatest.tools.ReporterConfigParam] => ?{def +=: ?} (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing] (3 ms, 0.03%)
-
-
-
-Array[StackTraceElement] => ?{def mkString: ?} (1 ms, 0.01%)
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality] => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => DiagrammedExprMacro.this.context.universe.Symbol (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.RecordableEvent,scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent]] (6 ms, 0.06%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.tools.Fragment],org.scalatest.tools.Fragment,Vector[org.scalatest.tools.Fragment]] (5 ms, 0.05%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[org.scalatest.tools.ReporterConfiguration],org.scalatest.Reporter,That] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.tools.Fragment],String,That] (1 ms, 0.01%)
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-org.scalacheck.Prop => org.scalacheck.Prop (8 ms, 0.08%)
-
-
-
-ResultOfNotWordForAny.this.left.type => ?{def endsWith: ?} (1 ms, 0.01%)
-
-
-
-C => org.scalacheck.util.Pretty (15 ms, 0.14%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating] (4 ms, 0.04%)
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-scala.math.Ordering[java.io.File] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating] (29 ms, 0.28%)
-
-
-
-String(" ") => ?{def *: ?} (12 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.annotation.Annotation],(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation },That] (21 ms, 0.20%)
-
-
-
-((Nothing, Nothing)) => String (3 ms, 0.03%)
-
-
-
-(=> (Nothing, Nothing)) => Boolean (2 ms, 0.02%)
-
-
-
-Array[Float] => Array[String] (12 ms, 0.12%)
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T] (9 ms, 0.09%)
-
-
-
-TC8[V] (5 ms, 0.05%)
-
-
-
-String => ?{def apply: ?} (13 ms, 0.13%)
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (4 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[context.universe.Template] (8 ms, 0.08%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (135 ms, 1.30%)
-
-
-
-String => ?{def contains(x$1: ? >: Char('.')): ?} (1 ms, 0.01%)
-
-
-
-Array[Unit] => Array[Any] (39 ms, 0.38%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (4 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.TypeApply] (41 ms, 0.40%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-Unit => Int (13 ms, 0.13%)
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],String,That] (88 ms, 0.85%)
-
-
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFeatureSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome) (1 ms, 0.01%)
-
-
-
-wildcardTestNames.type => ?{def find: ?} (1 ms, 0.01%)
-
-
-
-arr.type => ?{def exists: ?} (2 ms, 0.02%)
-
-
-
-Array[Float] => scala.collection.GenTraversableOnce[?] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (2 ms, 0.02%)
-
-
-
-(=> Float) => Int (13 ms, 0.13%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-TC2[T] (4 ms, 0.04%)
-
-
-
-Unit => org.scalatest.concurrent.PatienceConfiguration.Timeout (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-(=> scala.collection.immutable.Stream[A]) => ?{def #::: ?} (1 ms, 0.01%)
-
-
-
-all (10,360 ms, 100%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (7 ms, 0.07%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing] (22 ms, 0.21%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-Unit => Boolean (5 ms, 0.05%)
-
-
-
-org.scalacheck.Shrink[D] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],scala.xml.NodeSeq,That] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-rawClassArr.type => ?{def map: ?} (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[A],(A, Int),That] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[JUnitXmlReporter.this.Testcase],scala.xml.Elem,Any] (1 ms, 0.01%)
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[Any] (209 ms, 2.02%)
-s..
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-Unit => org.scalatest.concurrent.PatienceConfiguration.Interval (2 ms, 0.02%)
-
-
-
-Array[Int] => Array[String] (11 ms, 0.11%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (2 ms, 0.02%)
-
-
-
-(=> Array[Int]) => Array[Any] (18 ms, 0.17%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-rightNonEmptyArray.toArray.type => ?{def deep: ?} (15 ms, 0.14%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-args.type => ?{def toArray: ?} (2 ms, 0.02%)
-
-
-
-(=> org.scalacheck.Prop.Result) => org.scalacheck.Prop (1 ms, 0.01%)
-
-
-
-(=> Unit) => Throwable (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[T],(T, Int),That] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T] (15 ms, 0.14%)
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],DocSpecLike.this.Snippet,IndexedSeq[DocSpecLike.this.Snippet]] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-scala.math.Ordering[org.scalatest.events.Event] (3 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.GenericApply],(DiagrammedExprMacro.this.context.universe.GenericApply, Int),That] (2 ms, 0.02%)
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-ths.type => ?{def withFilter: ?} (1 ms, 0.01%)
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],scala.xml.Elem,Any] (5 ms, 0.05%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalactic.Every[E] => scala.collection.GenTraversable[E] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, Boolean),That] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping] (4 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[Object] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (4 ms, 0.04%)
-
-
-
-Array[Byte] => Array[String] (11 ms, 0.11%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-HtmlReporter.this.type => ?{def eventList_=(x$1: ? >: scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]): scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-scala.math.Ordering[Int] (5 ms, 0.05%)
-
-
-
-org.scalatest.enablers.Emptiness[T] (18 ms, 0.17%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-col.type => ?{def asScala: ?} (10 ms, 0.10%)
-
-
-
-Array[String] => ?{def toSet: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with AnyRef] (29 ms, 0.28%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.openqa.selenium.WebElement,That] (1 ms, 0.01%)
-
-
-
-(=> (Nothing, Nothing, Nothing)) => => String (13 ms, 0.13%)
-
-
-
-TC7[V] (7 ms, 0.07%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.Matcher[T with U] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> Matcher.this.AndContainWord) => (T with String => org.scalatest.matchers.MatchResult) (1 ms, 0.01%)
-
-
-
-(=> scala.collection.immutable.Set[org.scalatest.tools.ReporterConfigParam]) => ?{def +=: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-Unit => java.io.PrintWriter (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],Int,List[Int]] (2 ms, 0.02%)
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.New] (14 ms, 0.14%)
-
-
-
-org.scalatest.enablers.Sortable[T] (6 ms, 0.06%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-Matcher.this.AndContainWord => (T with U => org.scalatest.matchers.MatchResult) (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[context.universe.Match] (10 ms, 0.10%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[org.scalatest.Tag],String,That] (11 ms, 0.11%)
-
-
-
-Unit => java.util.Collection[_ <: T] (3 ms, 0.03%)
-
-
-
-Array[Class[_]] => ?{def isEmpty: ?} (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with AnyRef] (24 ms, 0.23%)
-
-
-
-o.type => ?{def sliding: ?} (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing] (4 ms, 0.04%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-Array[Long] => scala.collection.GenTraversableOnce[?] (3 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[String],String,That] (8 ms, 0.08%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-Array[java.lang.reflect.Method] => ?{def find: ?} (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with U] (77 ms, 0.74%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,List[String]] (4 ms, 0.04%)
-
-
-
-java.util.Iterator[E] => ?{def asScala: ?} (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[String]],String,That] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[AnyRef] (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[context.universe.DefDef] (41 ms, 0.40%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-TC1[T] (39 ms, 0.38%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-remoteArgs.type => ?{def isEmpty: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6] (2 ms, 0.02%)
-
-
-
-selectors.type => ?{def foreach: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-scala.reflect.api.Universe#WeakTypeTag[Nothing] (5 ms, 0.05%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-TC1[T] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T] (10 ms, 0.10%)
-
-
-
-Short => T (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }],String,That] (14 ms, 0.14%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-Array[Int] => Array[Any] (32 ms, 0.31%)
-
-
-
-org.scalatest.Suite.CHOSEN_STYLES.type => ?{def ->: ?} (1 ms, 0.01%)
-
-
-
-x.type => ?{def ->: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-Ordering[String] (1 ms, 0.01%)
-
-
-
-(=> List[AsyncSuperEngine.this.Node]) => ?{def ::=: ?} (1 ms, 0.01%)
-
-
-
-String => scala.collection.GenTraversable[?] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, org.scalacheck.Prop.Arg[Any])],org.scalacheck.Prop.Arg[Any],That] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Doc.this.Snippet],Doc.this.Snippet,scala.collection.immutable.Vector[Doc.this.Snippet]] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[context.universe.Block] (42 ms, 0.41%)
-
-
-
-((Nothing, Nothing)) => Boolean (6 ms, 0.06%)
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing, Nothing)) => org.scalatest.exceptions.TestFailedException (46 ms, 0.44%)
-
-
-
-o.type => ?{def asScala: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with AnyRef with U] (10 ms, 0.10%)
-
-
-
-(=> Array[Boolean]) => Array[String] (7 ms, 0.07%)
-
-
-
-selectTestList.type => ?{def map: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping] (2 ms, 0.02%)
-
-
-
-DiagrammedExprMacro.this.context.WeakTypeTag[T] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[context.universe.Typed] (8 ms, 0.08%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with U] (55 ms, 0.53%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Definition[T] (10 ms, 0.10%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[A,B],(A, B),That] (4 ms, 0.04%)
-
-
-
-(=> Unit) => String (5 ms, 0.05%)
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-TC3[T] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-e.type => ?{def endsWith: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-(=> Double) => Int (13 ms, 0.13%)
-
-
-
-Ordinal.this.stamps.type => ?{def toList: ?} (1 ms, 0.01%)
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],scala.xml.Elem,Any] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Any],org.scalatest.matchers.LazyArg,IndexedSeq[Any]] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(org.scalacheck.Prop.Arg[_], Int)],String,That] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating] (42 ms, 0.41%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Emptiness[T with U] (105 ms, 1.01%)
-
-
-
-Unit => StringBuilder (1 ms, 0.01%)
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-collection.type => ?{def asScala: ?} (1 ms, 0.01%)
-
-
-
-org.scalacheck.Prop.Result => org.scalacheck.Prop (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[XmlReporter.this.Testcase],scala.xml.Elem,Any] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.TableAsserting[ASSERTION] (18 ms, 0.17%)
-
-
-
-(=> Array[Boolean]) => Array[Any] (18 ms, 0.17%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (2 ms, 0.02%)
-
-
-
-Double => Int (37 ms, 0.36%)
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[c.Tree],c.Tree,List[c.Tree]] (2 ms, 0.02%)
-
-
-
-(=> Array[Int]) => Array[String] (10 ms, 0.10%)
-
-
-
-suiteTags.type => ?{def toSet: ?} (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.Event,scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]] (1 ms, 0.01%)
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (4 ms, 0.04%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing] (36 ms, 0.35%)
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Sortable[T with AnyRef] (17 ms, 0.16%)
-
-
-
-Array[Char] => scala.collection.GenTraversableOnce[?] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],String,That] (2 ms, 0.02%)
-
-
-
-Array[Byte] => Array[Any] (28 ms, 0.27%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-args.type => ?{def contains: ?} (1 ms, 0.01%)
-
-
-
-(=> Array[Char]) => Array[String] (7 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[context.universe.Literal] (12 ms, 0.12%)
-
-
-
-(=> Float) => Long (1 ms, 0.01%)
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingInformer.this.Tup],org.scalatest.events.RecordableEvent,That] (24 ms, 0.23%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[context.universe.ClassDef] (33 ms, 0.32%)
-
-
-
-scala.reflect.ClassTag[context.universe.Select] (855 ms, 8.25%)
-scala.refle..
-
-
-scala.languageFeature.higherKinds (45 ms, 0.43%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, org.scalacheck.Prop.Arg[Any]),That] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[c.universe.ValDef] (181 ms, 1.75%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[String] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Apply] (96 ms, 0.93%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[ElementCount],ElementCount,IndexedSeq[ElementCount]] (3 ms, 0.03%)
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T] (20 ms, 0.19%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Int],(Int, Int),That] (2 ms, 0.02%)
-
-
-
-Array[String] => ?{def mkString: ?} (10 ms, 0.10%)
-
-
-
-Array[sbt.testing.TaskDef] => ?{def ++: ?} (1 ms, 0.01%)
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-TC5[T] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingNotifier.this.Tup],org.scalatest.events.NoteProvided,That] (4 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[String] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, T, Throwable)],(Int, T, Throwable),That] (4 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.Tree],(DiagrammedExprMacro.this.context.universe.Tree, Int),That] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with U] (118 ms, 1.14%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-Array[Char] => Array[Any] (28 ms, 0.27%)
-
-
-
-F => org.scalacheck.util.Pretty (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping] (2 ms, 0.02%)
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-nestedSuitesArray.type => ?{def foreach: ?} (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],(String, scala.collection.immutable.Set[String]),That] (8 ms, 0.08%)
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-Array[String] => ?{def ++: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-java.util.List[org.openqa.selenium.WebElement] => ?{def asScala: ?} (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (2 ms, 0.02%)
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],scala.xml.Elem,That] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping] (4 ms, 0.04%)
-
-
-
-org.scalacheck.Arbitrary[A] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.RunningTest],org.scalatest.Slowpoke,IndexedSeq[org.scalatest.Slowpoke]] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Block] (8 ms, 0.08%)
-
-
-
-((Nothing, Nothing, Nothing)) => Int (2 ms, 0.02%)
-
-
-
-Array[Byte] => scala.collection.GenTraversableOnce[?] (1 ms, 0.01%)
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-TYPECLASS1[T] (6 ms, 0.06%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (2 ms, 0.02%)
-
-
-
-(=> scala.collection.immutable.Stream[Int]) => ?{def #::: ?} (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[org.scalatest.tools.NestedSuiteParam] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-(=> Array[Char]) => Array[Any] (18 ms, 0.17%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-Unit => Array[Thread] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Emptiness[T with AnyRef with U] (10 ms, 0.10%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (4 ms, 0.04%)
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-array.type => ?{def size: ?} (4 ms, 0.04%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (2 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Writability[T with U] (40 ms, 0.39%)
-
-
-
-Double => T (1 ms, 0.01%)
-
-
-
-Array[(sbt.testing.TaskDef, Framework.this.ScalaTestTask)] => ?{def withFilter: ?} (1 ms, 0.01%)
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],Boolean,List[Boolean]] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Sortable[T with U] (40 ms, 0.39%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with AnyRef with U] (15 ms, 0.14%)
-
-
-
-String => ?{def ->: ?} (5 ms, 0.05%)
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-(=> Unit) => Boolean (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with AnyRef with U] (6 ms, 0.06%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping] (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-Array[String] => scala.collection.GenTraversableOnce[?B] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[StackTraceElement] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping] (3 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }] (8 ms, 0.08%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with AnyRef with U] (5 ms, 0.05%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2] (179 ms, 1.73%)
-
-
-
-(=> Array[Double]) => Array[String] (7 ms, 0.07%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.ExceptionalEvent,Vector[org.scalatest.events.ExceptionalEvent]] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-Array[Double] => Array[String] (11 ms, 0.11%)
-
-
-
-Array[?T] => scala.collection.GenTraversableOnce[?] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.matchers.HavePropertyMatcher[T, _]],org.scalatest.matchers.HavePropertyMatchResult[_],That] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[c.Tree],c.Tree,That] (7 ms, 0.07%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-(=> (Nothing, Nothing, Nothing)) => $u.FlagSet (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing, Nothing)) => org.scalactic.source.Position (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, scala.collection.immutable.Set[String]),That] (1 ms, 0.01%)
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating] (12 ms, 0.12%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],String,That] (1 ms, 0.01%)
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-paramTypes.type => ?{def toList: ?} (1 ms, 0.01%)
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosZDouble],org.scalactic.anyvals.PosZDouble,List[org.scalactic.anyvals.PosZDouble]] (3 ms, 0.03%)
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-Map[String,AsyncSuperEngine.this.TestLeaf] => ?{def +=: ?} (17 ms, 0.16%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (2 ms, 0.02%)
-
-
-
-Array[java.io.File] => ?{def filter: ?} (1 ms, 0.01%)
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.GenericApply, Int)],DiagrammedExprMacro.this.context.universe.ValDef,List[DiagrammedExprMacro.this.context.universe.ValDef]] (1 ms, 0.01%)
-
-
-
-(=> (Nothing, Nothing, Nothing)) => String (12 ms, 0.12%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (2 ms, 0.02%)
-
-
-
-Array[Object] => ?{def mkString: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-Array[StackTraceElement] => ?{def toList: ?} (4 ms, 0.04%)
-
-
-
-stackTraces.type => ?{def map: ?} (1 ms, 0.01%)
-
-
-
-(=> Array[Short]) => Array[Any] (18 ms, 0.17%)
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing] (6 ms, 0.06%)
-
-
-
-v.type => ?{def longValue: ?} (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.Matcher[T with AnyRef] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing] (7 ms, 0.07%)
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-String => ?{def toInt: ?} (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-Array[E] => scala.collection.GenTraversable[E] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],String,That] (5 ms, 0.05%)
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],String,Array[String]] (3 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalacheck.Prop.Arg[_]],(org.scalacheck.Prop.Arg[_], Int),That] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with AnyRef] (27 ms, 0.26%)
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing] (4 ms, 0.04%)
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[String] (147 ms, 1.42%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with AnyRef] (39 ms, 0.38%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E)],(Int, E),That] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],org.scalatest.Tag,That] (4 ms, 0.04%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating] (6 ms, 0.06%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Option[Throwable]],Throwable,That] (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-String => Int (21 ms, 0.20%)
-
-
-
-B => org.scalacheck.util.Pretty (19 ms, 0.18%)
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (2 ms, 0.02%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => $u.Symbol (5 ms, 0.05%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFunSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome) (1 ms, 0.01%)
-
-
-
-TC1[T] (3 ms, 0.03%)
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-Array[Long] => Array[Any] (28 ms, 0.27%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-List[SuperEngine.this.Node] => ?{def ::=: ?} (1 ms, 0.01%)
-
-
-
-Array[Double] => Array[Any] (28 ms, 0.27%)
-
-
-
-(=> Array[Long]) => Array[Any] (21 ms, 0.20%)
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (2 ms, 0.02%)
-
-
-
-right.type => ?{def r: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[c.universe.Apply] (682 ms, 6.58%)
-scala.re..
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating] (6 ms, 0.06%)
-
-
-
-((Nothing, Nothing)) => org.scalatest.words.ResultOfSizeWordApplication (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, T)],(Int, T),That] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length] (1 ms, 0.01%)
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[context.universe.CaseDef] (8 ms, 0.08%)
-
-
-
-stackTrace.type => ?{def toList: ?} (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[String] (7 ms, 0.07%)
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[org.scalatest.Slowpoke],String,That] (2 ms, 0.02%)
-
-
-
-Boolean => ?{def ==>: ?} (7 ms, 0.07%)
-
-
-
-(=> Matcher.this.OrContainWord) => (T with String => org.scalatest.matchers.MatchResult) (1 ms, 0.01%)
-
-
-
-D => org.scalacheck.util.Pretty (11 ms, 0.11%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],org.scalatest.tools.Fragment,That] (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => context.universe.Symbol (5 ms, 0.05%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],(String, Option[String]),That] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (4 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[context.universe.TypeApply] (39 ms, 0.38%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.xml.Node],scala.xml.Node,That] (3 ms, 0.03%)
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-Array[java.lang.reflect.Method] => ?{def sorted: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with U] (77 ms, 0.74%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-TC1[T] (7 ms, 0.07%)
-
-
-
-jMap.type => ?{def asScala: ?} (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-Array[String] => ?{def foreach: ?} (5 ms, 0.05%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (2 ms, 0.02%)
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-TC7[T] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-suiteParam.testNames.type => ?{def map: ?} (1 ms, 0.01%)
-
-
-
-(=> Unit) => Long (4 ms, 0.04%)
-
-
-
-(=> asserting.Result) => asserting.Result (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Boolean],(Boolean, Boolean),That] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[org.scalatest.ConfigMap,String,That] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Byte],String,That] (2 ms, 0.02%)
-
-
-
-Matcher.this.AndContainWord => (T with String => org.scalatest.matchers.MatchResult) (5 ms, 0.05%)
-
-
-
-Int => ?{def +=: ?} (8 ms, 0.08%)
-
-
-
-Boolean => asserting.Result (2 ms, 0.02%)
-
-
-
-org.scalactic.Every[E] => scala.collection.GenTraversableOnce[E] (1 ms, 0.01%)
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with U] (53 ms, 0.51%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-DiagrammedExprMacro.this.context.universe.Tree => DiagrammedExprMacro.this.context.universe.GenericApply (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing, Nothing)) => java.util.Map[_ <: java.text.AttributedCharacterIterator.Attribute, _] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-Unit => java.awt.LayoutManager (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (8 ms, 0.08%)
-
-
-
-constructorList.type => ?{def exists: ?} (1 ms, 0.01%)
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-scala.collection.immutable.Stream[A] => ?{def #::: ?} (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating] (17 ms, 0.16%)
-
-
-
-org.scalatest.enablers.Readability[T with AnyRef with U] (3 ms, 0.03%)
-
-
-
-Unit => String (13 ms, 0.13%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[() => Unit],() => Unit,IndexedSeq[() => Unit]] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-scala.concurrent.ExecutionContext (32 ms, 0.31%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-Array[Unit] => scala.collection.GenTraversableOnce[?] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[Int,List[org.scalatest.AnchorValue]],org.scalatest.AnchorValue,That] (3 ms, 0.03%)
-
-
-
-Array[Boolean] => scala.collection.GenTraversableOnce[?] (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.Matcher[T with U] (2 ms, 0.02%)
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-Array[java.lang.reflect.Field] => ?{def find: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with AnyRef] (23 ms, 0.22%)
-
-
-
-e.type => ?{def isDefinedAt: ?} (4 ms, 0.04%)
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T] (8 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],org.scalatest.tools.SuiteConfig,That] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.openqa.selenium.WebDriver (10 ms, 0.10%)
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with AnyRef] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, Option[Any], org.scalatest.MessageRecorder.RecordedMessageEventFun, Option[org.scalatest.events.Location])],org.scalatest.events.RecordableEvent,That] (2 ms, 0.02%)
-
-
-
-ResultOfNotWordForAny.this.left.type => ?{def indexOf: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (3 ms, 0.03%)
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-(=> Any => Nothing) => String (5 ms, 0.05%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (2 ms, 0.02%)
-
-
-
-(=> Long) => Int (13 ms, 0.13%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T with String] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-javaColl.type => ?{def asScala: ?} (5 ms, 0.05%)
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrContainWord => (T with String => org.scalatest.matchers.MatchResult) (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Map[A,B]],(A, B),That] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with U] (4 ms, 0.04%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing] (15 ms, 0.14%)
-
-
-
-scala.reflect.ClassTag[c.universe.Literal] (273 ms, 2.64%)
-sc..
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with String] (92 ms, 0.89%)
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],Set[String],List[Set[String]]] (1 ms, 0.01%)
-
-
-
-Option[org.scalatest.tools.Fragment] => scala.collection.GenTraversableOnce[org.scalatest.tools.Fragment] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing] (20 ms, 0.19%)
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-Array[Double] => scala.collection.GenTraversableOnce[?] (4 ms, 0.04%)
-
-
-
-A => org.scalacheck.util.Pretty (24 ms, 0.23%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[RandomTestOrder.this.DeferredSuiteRun],Unit,That] (1 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[D] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],String,Vector[String]] (3 ms, 0.03%)
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.RecordableEvent,That] (1 ms, 0.01%)
-
-
-
-rightArray.type => ?{def deep: ?} (17 ms, 0.16%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosDouble],org.scalactic.anyvals.PosDouble,List[org.scalactic.anyvals.PosDouble]] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteParam],org.scalatest.tools.SuiteConfig,That] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Definition[T with AnyRef] (21 ms, 0.20%)
-
-
-
-TC9[V] (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T] (8 ms, 0.08%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-TC6[T] (2 ms, 0.02%)
-
-
-
-Array[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }] => ?{def withFilter: ?} (19 ms, 0.18%)
-
-
-
-((Nothing, Nothing)) => Long (1 ms, 0.01%)
-
-
-
-Array[java.lang.annotation.Annotation] => ?{def map: ?} (13 ms, 0.13%)
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.PolyType] (5 ms, 0.05%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.Matcher[T with U] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping] (1 ms, 0.01%)
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-scala.collection.immutable.IndexedSeq[org.scalatest.events.Event] => scala.collection.mutable.ListBuffer[org.scalatest.events.Event] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[(T, Int)],scala.concurrent.Future[(T, Int, scala.util.Try[ASSERTION])],IndexedSeq[scala.concurrent.Future[(T, Int, scala.util.Try[ASSERTION])]]] (1 ms, 0.01%)
-
-
-
-HtmlReporter.this.type => ?{def eventList_=(x$1: ? >: scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]): ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-Unit => Throwable (4 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.NodeBuffer,That] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[String] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],String,scala.collection.immutable.IndexedSeq[String]] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (2 ms, 0.02%)
-
-
-
-Array[Byte] => ?{def map: ?} (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (2 ms, 0.02%)
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-T => String (7 ms, 0.07%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteConfig],org.scalatest.Status,That] (1 ms, 0.01%)
-
-
-
-Double => Long (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-Map[String,Set[String]] => ?{def +=: ?} (17 ms, 0.16%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],org.scalatest.tools.Fragment,Vector[org.scalatest.tools.Fragment]] (7 ms, 0.07%)
-
-
-
-firstChar.type => ?{def isWhitespace: ?} (6 ms, 0.06%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Throwable],String,IndexedSeq[String]] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing] (3 ms, 0.03%)
-
-
-
-args.type => ?{def flatMap: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping] (4 ms, 0.04%)
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[org.scalatest.events.Event] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-Numeric[Long] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing] (19 ms, 0.18%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.Matcher[T with U] (2 ms, 0.02%)
-
-
-
-Array[Boolean] => Array[String] (10 ms, 0.10%)
-
-
-
-Array[java.lang.reflect.Method] => ?{def filter: ?} (4 ms, 0.04%)
-
-
-
-(=> Array[Float]) => Array[String] (7 ms, 0.07%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-Array[Unit] => Array[String] (47 ms, 0.45%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T] (12 ms, 0.12%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[String],(String, Int),That] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Int (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[org.scalatest.tools.SuiteResult],Long,That] (1 ms, 0.01%)
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing)) => java.awt.PopupMenu (3 ms, 0.03%)
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.xml.Node],scala.xml.Node,That] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-leftNonEmptyArray.toArray.type => ?{def deep: ?} (19 ms, 0.18%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping] (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing] (5 ms, 0.05%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[String],String,IndexedSeq[String]] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (2 ms, 0.02%)
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[context.universe.Constant] (5 ms, 0.05%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[org.scalatest.tools.SuiteResult],scala.xml.Elem,Any] (1 ms, 0.01%)
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (2 ms, 0.02%)
-
-
-
-org.scalactic.Every[E] => scala.collection.GenTraversable[?] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => String (2 ms, 0.02%)
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Tuple2[Int, _]],Int,That] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.events.RecordableEvent],Vector[org.scalatest.tools.Fragment],That] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6] (3 ms, 0.03%)
-
-
-
-org.scalacheck.Shrink[A] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with AnyRef] (25 ms, 0.24%)
-
-
-
-Float => Int (19 ms, 0.18%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[context.universe.Bind] (35 ms, 0.34%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Readability[T with U] (41 ms, 0.40%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-Array[StackTraceElement] => ?{def map: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[B] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-TC1[T] (5 ms, 0.05%)
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing)) => org.scalacheck.Prop (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Select] (193 ms, 1.86%)
-s..
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-java.util.Set[java.util.Map.Entry[K,V]] => ?{def asScala: ?} (6 ms, 0.06%)
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-TC3[V] (12 ms, 0.12%)
-
-
-
-org.scalatest.enablers.Definition[T with AnyRef with U] (5 ms, 0.05%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping] (6 ms, 0.06%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Ident] (19 ms, 0.18%)
-
-
-
-org.scalactic.anyvals.PosInt => Int (8 ms, 0.08%)
-
-
-
-testName.type => ?{def ->: ?} (6 ms, 0.06%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[StackTraceElement],scala.xml.Elem,Any] (5 ms, 0.05%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing] (24 ms, 0.23%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[org.scalatest.Tag] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-clueStr.type => ?{def head: ?} (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (2 ms, 0.02%)
-
-
-
-(Any => Nothing) => String (29 ms, 0.28%)
-
-
-
-java.util.Iterator[java.util.Map.Entry[K,V]] => ?{def asScala: ?} (2 ms, 0.02%)
-
-
-
-Unit => org.pegdown.Parser (2 ms, 0.02%)
-
-
-
-(=> Array[Byte]) => Array[Any] (18 ms, 0.17%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-(=> Array[Float]) => Array[Any] (18 ms, 0.17%)
-
-
-
-org.scalacheck.Shrink[B] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L)],((A, B, C, D, E, F, G, H, I, J, K, L), Int),That] (1 ms, 0.01%)
-
-
-
-TC8[T] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping] (6 ms, 0.06%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.GenTraversable[Throwable with org.scalatest.exceptions.StackDepth],String,That] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (3 ms, 0.03%)
-
-
-
-Array[Boolean] => Array[Any] (27 ms, 0.26%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-(=> Array[Double]) => Array[Any] (17 ms, 0.16%)
-
-
-
-((Nothing, Nothing, Nothing)) => $u.FlagSet (5 ms, 0.05%)
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-candidateMethods.type => ?{def find: ?} (4 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.Tree, Int)],DiagrammedExprMacro.this.context.universe.ValDef,That] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],String,That] (6 ms, 0.06%)
-
-
-
-scala.reflect.ClassTag[c.universe.Constant] (113 ms, 1.09%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[String,Int],String,That] (13 ms, 0.13%)
-
-
-
-left.type => ?{def deep: ?} (6 ms, 0.06%)
-
-
-
-String => ?{def headOption: ?} (16 ms, 0.15%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, scala.collection.immutable.Set[String])],String,List[String]] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Existence[T with String] (43 ms, 0.42%)
-
-
-
-nestedSuites.type => ?{def partition: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-Array[E] => scala.collection.GenTraversableOnce[E] (5 ms, 0.05%)
-
-
-
-leftArray.type => ?{def deep: ?} (19 ms, 0.18%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Any],String,That] (2 ms, 0.02%)
-
-
-
-(=> String) => Int (10 ms, 0.10%)
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Existence[T] (6 ms, 0.06%)
-
-
-
-scala.languageFeature.implicitConversions (17 ms, 0.16%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.This] (15 ms, 0.14%)
-
-
-
-text.type => ?{def lines: ?} (2 ms, 0.02%)
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.DiagrammedExpr[_]],org.scalatest.AnchorValue,That] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Existence[T with AnyRef with U] (7 ms, 0.07%)
-
-
-
-Unit => Long (6 ms, 0.06%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing)) => javax.swing.Icon (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[C] (2 ms, 0.02%)
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-(=> Array[Byte]) => Array[String] (7 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[c.universe.Block] (51 ms, 0.49%)
-
-
-
-(=> (Nothing, Nothing, Nothing)) => org.scalatest.exceptions.TestFailedException (24 ms, 0.23%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],(Any, Class[_]),That] (1 ms, 0.01%)
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing] (11 ms, 0.11%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-Array[StackTraceElement] => ?{def deep: ?} (3 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Boolean, Boolean)],Boolean,List[Boolean]] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (2 ms, 0.02%)
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-orderedEvents.type => ?{def size: ?} (5 ms, 0.05%)
-
-
-
-Array[Char] => Array[String] (11 ms, 0.11%)
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => String (14 ms, 0.14%)
-
-
-
-Array[Short] => Array[String] (11 ms, 0.11%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-zipped.type => ?{def withFilter: ?} (1 ms, 0.01%)
-
-
-
-taskDefs.type => ?{def filter: ?} (2 ms, 0.02%)
-
-
-
-DiagrammedExprMacro.this.context.universe.Tree => DiagrammedExprMacro.this.context.universe.Apply (2 ms, 0.02%)
-
-
-
-Array[sbt.testing.TaskDef] => ?{def distinct: ?} (1 ms, 0.01%)
-
-
-
-Ordering[T] (5 ms, 0.05%)
-
-
-
-Array[Short] => scala.collection.GenTraversableOnce[?] (1 ms, 0.01%)
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[T] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with AnyRef with U] (4 ms, 0.04%)
-
-
-
-((Any => Nothing, Nothing, Nothing, Nothing)) => Int (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7] (2 ms, 0.02%)
-
-
-
-args.type => ?{def iterator: ?} (3 ms, 0.03%)
-
-
-
-TC5[V] (10 ms, 0.10%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (2 ms, 0.02%)
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing] (4 ms, 0.04%)
-
-
-
-context.WeakTypeTag[T] (127 ms, 1.23%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingAlerter.this.Tup],org.scalatest.events.AlertProvided,That] (5 ms, 0.05%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.reflect.Method],String,That] (4 ms, 0.04%)
-
-
-
-List[SlowRecord] => ?{def ::=: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[org.scalatest.events.Event],org.scalatest.events.Event,scala.collection.mutable.ListBuffer[org.scalatest.events.Event]] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Sortable[T with AnyRef with U] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (2 ms, 0.02%)
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping] (1 ms, 0.01%)
-
-
-
-scala.collection.immutable.TreeMap[Int,org.scalatest.AnchorValue] => ?{def +=: ?} (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing] (3 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.TestSpec],String,That] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(T, Int, scala.util.Try[ASSERTION])],String,That] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E, Throwable)],Throwable,That] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[org.scalatest.tools.NestedSuiteElement] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (2 ms, 0.02%)
-
-
-
-((Nothing, Nothing)) => org.scalacheck.Gen[?T1] (3 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.tools.Fragment],org.scalatest.tools.Fragment,That] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, Any),That] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with String] (63 ms, 0.61%)
-
-
-
-IndexedSeq[(Int, T)] => IndexedSeq[(Int, T)] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (2 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Existence[T with U] (35 ms, 0.34%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[E] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-scala.collection.generic.CanBuildFrom[org.scalatest.ConfigMap,scala.xml.Elem,Any] (4 ms, 0.04%)
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-SbtLogInfoReporter.this.loggers.type => ?{def foreach: ?} (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing] (29 ms, 0.28%)
-
-
-
-TC4[V] (11 ms, 0.11%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating] (20 ms, 0.19%)
-
-
-
-(=> (Nothing, Nothing)) => String (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[A],(A,),Seq[(A,)]] (2 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Readability[T with AnyRef] (19 ms, 0.18%)
-
-
-
-scala.reflect.ClassTag[String] (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2] (1 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Readability[T] (7 ms, 0.07%)
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[A],A,List[A]] (2 ms, 0.02%)
-
-
-
-Array[Float] => Array[Any] (28 ms, 0.27%)
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.matchers.HavePropertyMatcher[U, _]],org.scalatest.matchers.HavePropertyMatchResult[_],That] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (2 ms, 0.02%)
-
-
-
-constructorList.type => ?{def find: ?} (4 ms, 0.04%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating] (29 ms, 0.28%)
-
-
-
-org.scalatest.enablers.Definition[T with U] (61 ms, 0.59%)
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Any, Class[_])],Any,That] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.GenericApply] (15 ms, 0.14%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-testMethods.type => ?{def foreach: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.Matcher[T with U] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[context.universe.Apply] (641 ms, 6.19%)
-scala.re..
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,That] (4 ms, 0.04%)
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],String,That] (3 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Writability[T with AnyRef] (18 ms, 0.17%)
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with AnyRef] (1 ms, 0.01%)
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-Ordinal.this.stamps.type => ?{def deep: ?} (1 ms, 0.01%)
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => $u.Symbol (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-String => ?{def last: ?} (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-((Nothing, Nothing, Nothing)) => String (18 ms, 0.17%)
-
-
-
-(=> Double) => Long (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.Suite,scala.collection.immutable.IndexedSeq[org.scalatest.Suite]] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-(=> Array[Short]) => Array[String] (7 ms, 0.07%)
-
-
-
-(=> Array[Unit]) => Array[Any] (19 ms, 0.18%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, Any)],String,That] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[scala.xml.Elem] (1 ms, 0.01%)
-
-
-
-TC6[V] (8 ms, 0.08%)
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Any],String,That] (85 ms, 0.82%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-((Any => Nothing, Nothing, Nothing)) => Int (7 ms, 0.07%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.Matcher[T with U] (3 ms, 0.03%)
-
-
-
-((Nothing, Nothing)) => java.net.URI (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-scala.languageFeature.reflectiveCalls (5 ms, 0.05%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with AnyRef with U] (4 ms, 0.04%)
-
-
-
-org.scalatest.enablers.Writability[T with AnyRef with U] (4 ms, 0.04%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.MethodType] (4 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.ValDef],DiagrammedExprMacro.this.context.universe.Ident,List[DiagrammedExprMacro.this.context.universe.Tree]] (2 ms, 0.02%)
-
-
-
-(=> Unit) => Int (3 ms, 0.03%)
-
-
-
-TC4[T] (3 ms, 0.03%)
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T with String] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with U] (54 ms, 0.52%)
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-Array[String] => scala.collection.GenTraversableOnce[?] (7 ms, 0.07%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing] (2 ms, 0.02%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, Int),That] (1 ms, 0.01%)
-
-
-
-Array[String] => scala.collection.GenTraversableOnce[String] (6 ms, 0.06%)
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5] (1 ms, 0.01%)
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with String] (3 ms, 0.03%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.NodeBuffer,Any] (1 ms, 0.01%)
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3] (1 ms, 0.01%)
-
-
-
-Array[Short] => Array[Any] (30 ms, 0.29%)
-
-
-
-Array[java.io.File] => ?{def toList: ?} (2 ms, 0.02%)
-
-
-
-(=> (Nothing, Nothing)) => Int (1 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Thread],Thread,Seq[Thread]] (1 ms, 0.01%)
-
-
-
-Char => T (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-Array[Int] => scala.collection.GenTraversableOnce[?] (1 ms, 0.01%)
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-E => org.scalacheck.util.Pretty (7 ms, 0.07%)
-
-
-
-Byte => T (1 ms, 0.01%)
-
-
-
-Float => Long (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing] (9 ms, 0.09%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6] (1 ms, 0.01%)
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3] (2 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[c.universe.Select] (763 ms, 7.36%)
-scala.refl..
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1] (1 ms, 0.01%)
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T with U] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS] => org.scalatest.matchers.Matcher[T] (2 ms, 0.02%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[String],String,scala.collection.immutable.IndexedSeq[String]] (7 ms, 0.07%)
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4] (1 ms, 0.01%)
-
-
-
-(=> Int) => ?{def +=: ?} (3 ms, 0.03%)
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Int (1 ms, 0.01%)
-
-
-
-array.type => ?{def head: ?} (2 ms, 0.02%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating] (2 ms, 0.02%)
-
-
-
-OPT[E] => scala.collection.GenTraversableOnce[E] (1 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[context.universe.Ident] (25 ms, 0.24%)
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing] (3 ms, 0.03%)
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating] (1 ms, 0.01%)
-
-
-
diff --git a/docs/scalatest-core.html b/docs/scalatest-core.html
deleted file mode 100644
index 57de24f..0000000
--- a/docs/scalatest-core.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-
-
-
- Click node to highlight; Shift-scroll to zoom; Esc to unhighlight
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/scalatest-core.svg b/docs/scalatest-core.svg
deleted file mode 100644
index 3a7feea..0000000
--- a/docs/scalatest-core.svg
+++ /dev/null
@@ -1,53566 +0,0 @@
-
-
-
-
-
-
-implicit-searches-1510255680233
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Array[Short]) => Array[Object]
-
-(=> Array[Short]) => Array[Object]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-12 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-((A, B)) => asserting.Result
-
-((A, B)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-4 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[c.universe.Constant]
-
-scala.reflect.ClassTag[c.universe.Constant]
-2 times = 12ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-TYPECLASS[V]
-
-TYPECLASS[V]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Short) => T
-
-(=> Short) => T
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-Unit => Long
-
-Unit => Long
-100 times = 5ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }],String,That]
-
-scala.collection.generic.CanBuildFrom[Array[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }],String,That]
-1 times = 3ms
-
-
-
-scala.reflect.ClassTag[String]
-
-scala.reflect.ClassTag[String]
-151 times = 148ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }],String,That]->scala.reflect.ClassTag[String]
-
-
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Unit) => context.universe.Type
-
-(=> Unit) => context.universe.Type
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-args.type => ?{def flatMap: ?}
-
-args.type => ?{def flatMap: ?}
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-((Nothing, Nothing)) => org.scalatest.Reporter
-
-((Nothing, Nothing)) => org.scalatest.Reporter
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5) => ?P
-1 times = 0ms
-
-
-
-o.type => ?{def asScala: ?}
-
-o.type => ?{def asScala: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with AnyRef]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 3ms
-
-
-
-org.scalatest.enablers.Writability[T with AnyRef]
-
-org.scalatest.enablers.Writability[T with AnyRef]
-1 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with AnyRef]->org.scalatest.enablers.Writability[T with AnyRef]
-
-
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.enablers.Length[T]
-
-org.scalatest.enablers.Length[T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 2ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> A) => asserting.Result
-
-(=> A) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.enablers.TableAsserting[ASSERTION]
-
-org.scalatest.enablers.TableAsserting[ASSERTION]
-44 times = 8ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> Unit) => Runnable
-
-(=> Unit) => Runnable
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Array[Double] => scala.collection.GenTraversableOnce[?]
-
-Array[Double] => scala.collection.GenTraversableOnce[?]
-1 times = 4ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-Array[Float] => Array[Int]
-
-Array[Float] => Array[Int]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingAlerter.this.Tup],org.scalatest.events.AlertProvided,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingAlerter.this.Tup],org.scalatest.events.AlertProvided,That]
-1 times = 5ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-nonWhiteLine.type => ?{def dropWhile: ?}
-
-nonWhiteLine.type => ?{def dropWhile: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Function]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Function]
-2 times = 29ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.enablers.Definition[T]
-
-org.scalatest.enablers.Definition[T]
-4 times = 10ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-Array[Float] => Array[Class[_]]
-
-Array[Float] => Array[Class[_]]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.Elem,That]
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.Elem,That]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> Unit) => org.scalatest.exceptions.TestCanceledException
-
-(=> Unit) => org.scalatest.exceptions.TestCanceledException
-1 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-paramTypes.type => ?{def isEmpty: ?}
-
-paramTypes.type => ?{def isEmpty: ?}
-1 times = 1ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Array[Unit]) => Array[String]
-
-(=> Array[Unit]) => Array[String]
-133 times = 8ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, Boolean),That]
-
-scala.collection.generic.CanBuildFrom[List[String],(String, Boolean),That]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => javax.swing.Action
-
-(=> (Nothing, Nothing)) => javax.swing.Action
-4 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-orderedEvents.type => ?{def size: ?}
-
-orderedEvents.type => ?{def size: ?}
-1 times = 1ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.events.Event => Comparable[org.scalatest.events.Event]
-
-org.scalatest.events.Event => Comparable[org.scalatest.events.Event]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-ns.suiteId.type => ?{def ->: ?}
-
-ns.suiteId.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory4[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> Byte) => T
-
-(=> Byte) => T
-2 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(Any => Nothing) => Option[String]
-
-(Any => Nothing) => Option[String]
-83 times = 7ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> Float) => Int
-
-(=> Float) => Int
-302 times = 13ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => java.awt.Insets
-
-((Nothing, Nothing, Nothing, Nothing)) => java.awt.Insets
-7 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.io.OutputStream
-
-(=> (Nothing, Nothing)) => java.io.OutputStream
-10 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Matcher.this.AndContainWord => (T with AnyRef => org.scalatest.matchers.MatchResult)
-
-Matcher.this.AndContainWord => (T with AnyRef => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-Array[Char] => CharSequence
-
-Array[Char] => CharSequence
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Long => Int
-
-Long => Int
-307 times = 19ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => org.scalacheck.Gen[=?Nothing]
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => org.scalacheck.Gen[=?Nothing]
-1 times = 0ms
-
-
-
-org.openqa.selenium.WebDriver
-
-org.openqa.selenium.WebDriver
-94 times = 9ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.DefDef]
-
-scala.reflect.ClassTag[context.universe.DefDef]
-1 times = 41ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => (T => org.scalatest.matchers.MatchResult)
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => (T => org.scalatest.matchers.MatchResult)
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3) => ?P
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3) => ?P
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => (T with U => org.scalatest.matchers.MatchResult)
-
-(=> Matcher.this.AndContainWord) => (T with U => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-args.type => ?{def filter: ?}
-
-args.type => ?{def filter: ?}
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-Unit => java.util.Map[_ <: K, _ <: V]
-
-Unit => java.util.Map[_ <: K, _ <: V]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],org.scalatest.events.RecordableEvent,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],org.scalatest.events.RecordableEvent,That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[c.universe.Apply]
-
-scala.reflect.ClassTag[c.universe.Apply]
-5 times = 74ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with AnyRef]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 3ms
-
-
-
-org.scalatest.enablers.Emptiness[T with AnyRef]
-
-org.scalatest.enablers.Emptiness[T with AnyRef]
-1 times = 4ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with AnyRef]->org.scalatest.enablers.Emptiness[T with AnyRef]
-
-
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> org.scalatest.matchers.MatcherFactory6[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-String('| <duration run=\'$run$\' millis=\'$millis$\'/>\n |') => ?{def stripMargin: ?}
-
-String('| <duration run='$run$' millis='$millis$'/>
- |') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-v.type => ?{def longValue: ?}
-
-v.type => ?{def longValue: ?}
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Array[Byte] => Array[Any]
-
-Array[Byte] => Array[Any]
-521 times = 28ms
-
-
-
-((Any => Nothing, Nothing, Nothing, Nothing)) => Int
-
-((Any => Nothing, Nothing, Nothing, Nothing)) => Int
-17 times = 2ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Thread],Thread,Seq[Thread]]
-
-scala.collection.generic.CanBuildFrom[Array[Thread],Thread,Seq[Thread]]
-1 times = 1ms
-
-
-
-DummyImplicit
-
-DummyImplicit
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Thread],Thread,Seq[Thread]]->DummyImplicit
-
-
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.net.URL
-
-((Nothing, Nothing)) => java.net.URL
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Unit => java.util.Collection[_ <: org.scalatest.RunningTest]
-
-Unit => java.util.Collection[_ <: org.scalatest.RunningTest]
-1 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> Boolean) => asserting.Result
-
-(=> Boolean) => asserting.Result
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-taskDefs.type => ?{def filter: ?}
-
-taskDefs.type => ?{def filter: ?}
-1 times = 1ms
-
-
-
-((Nothing, Nothing)) => Boolean
-
-((Nothing, Nothing)) => Boolean
-53 times = 6ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with AnyRef]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 1ms
-
-
-
-org.scalatest.enablers.Readability[T with AnyRef]
-
-org.scalatest.enablers.Readability[T with AnyRef]
-1 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with AnyRef]->org.scalatest.enablers.Readability[T with AnyRef]
-
-
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with U]
-1 times = 4ms
-
-
-
-org.scalatest.enablers.Definition[T with U]
-
-org.scalatest.enablers.Definition[T with U]
-1 times = 3ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with U]->org.scalatest.enablers.Definition[T with U]
-
-
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> Unit) => Int
-
-(=> Unit) => Int
-115 times = 3ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> Map[String,Set[String]]) => ?{def +=: ?}
-
-(=> Map[String,Set[String]]) => ?{def +=: ?}
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[AnyRef]
-
-scala.reflect.ClassTag[AnyRef]
-6 times = 3ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Unit) => javax.swing.ListModel[org.scalatest.tools.EventHolder]
-
-(=> Unit) => javax.swing.ListModel[org.scalatest.tools.EventHolder]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => (T with U => org.scalatest.matchers.MatchResult)
-
-Matcher.this.OrContainWord => (T with U => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[Thread]
-
-((Nothing, Nothing)) => Array[Thread]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Runnable
-
-(=> (Nothing, Nothing)) => Runnable
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-java.util.List[org.openqa.selenium.WebElement] => ?{def asScala: ?}
-
-java.util.List[org.openqa.selenium.WebElement] => ?{def asScala: ?}
-3 times = 2ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Array[Int] => Array[String]
-
-Array[Int] => Array[String]
-133 times = 11ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => (T with U => org.scalatest.matchers.MatchResult)
-
-(=> Matcher.this.OrContainWord) => (T with U => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[String],String,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[String],String,That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> Array[Long]) => Array[String]
-
-(=> Array[Long]) => Array[String]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-Unit => org.scalatest.concurrent.PatienceConfiguration.Interval
-
-Unit => org.scalatest.concurrent.PatienceConfiguration.Interval
-3 times = 2ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> asserting.Result) => asserting.Result
-
-(=> asserting.Result) => asserting.Result
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 3ms
-
-
-
-org.scalatest.enablers.Definition[T with AnyRef with U]
-
-org.scalatest.enablers.Definition[T with AnyRef with U]
-1 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with AnyRef with U]->org.scalatest.enablers.Definition[T with AnyRef with U]
-
-
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory7[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-6 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[org.scalatest.Slowpoke],String,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[org.scalatest.Slowpoke],String,That]
-1 times = 2ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Array[(String, String)] => scala.collection.GenTraversableOnce[=?(String, String)]
-
-Array[(String, String)] => scala.collection.GenTraversableOnce[=?(String, String)]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-s.type => ?{def lastIndexWhere: ?}
-
-s.type => ?{def lastIndexWhere: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R), Int),That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.languageFeature.reflectiveCalls
-
-scala.languageFeature.reflectiveCalls
-28 times = 5ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.DiagrammedExpr[_]],org.scalatest.AnchorValue,That]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.DiagrammedExpr[_]],org.scalatest.AnchorValue,That]
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[java.net.URL]
-
-scala.reflect.ClassTag[java.net.URL]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => org.scalatest.exceptions.TestFailedException
-
-(=> (Nothing, Nothing, Nothing)) => org.scalatest.exceptions.TestFailedException
-428 times = 24ms
-
-
-
-scala.collection.generic.CanBuildFrom[org.scalatest.ConfigMap,String,That]
-
-scala.collection.generic.CanBuildFrom[org.scalatest.ConfigMap,String,That]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.enablers.Writability[T]
-
-org.scalatest.enablers.Writability[T]
-1 times = 0ms
-
-
-
-String('|<durations>\n |$suites$</durations>\n |') => ?{def stripMargin: ?}
-
-String('|<durations>
- |$suites$</durations>
- |') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-64 times = 4ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-List[Durations.this.Duration] => ?{def ::=: ?}
-
-List[Durations.this.Duration] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-List[AsyncSuperEngine.this.Node] => ?{def ::=: ?}
-
-List[AsyncSuperEngine.this.Node] => ?{def ::=: ?}
-7 times = 53ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-Boolean => Char
-
-Boolean => Char
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-org.scalatest.matchers.MatcherFactory7[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-Unit => java.util.SortedSet[org.scalatest.RunningTest]
-
-Unit => java.util.SortedSet[org.scalatest.RunningTest]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[A]
-
-org.scalacheck.Arbitrary[A]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => org.scalacheck.Gen[=?Nothing]
-
-((Nothing, Nothing)) => org.scalacheck.Gen[=?Nothing]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalactic.Every[E] => scala.collection.GenTraversable[?]
-
-org.scalactic.Every[E] => scala.collection.GenTraversable[?]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalactic.anyvals.PosZInt) => Char
-
-(=> org.scalactic.anyvals.PosZInt) => Char
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-T => String
-
-T => String
-4 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-stackTrace.type => ?{def toList: ?}
-
-stackTrace.type => ?{def toList: ?}
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, String),That]
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, String),That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[(String, String)]
-
-scala.reflect.ClassTag[(String, String)]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, String),That]->scala.reflect.ClassTag[(String, String)]
-
-
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> Array[Double]) => Array[String]
-
-(=> Array[Double]) => Array[String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.Apply]
-
-scala.reflect.ClassTag[context.universe.Apply]
-1 times = 14ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[java.lang.reflect.Method]
-
-scala.reflect.ClassTag[java.lang.reflect.Method]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.AlertProvided,scala.collection.immutable.IndexedSeq[org.scalatest.events.NotificationEvent]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.AlertProvided,scala.collection.immutable.IndexedSeq[org.scalatest.events.NotificationEvent]]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[sbt.testing.Task]
-
-scala.reflect.ClassTag[sbt.testing.Task]
-2 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.ValDef],DiagrammedExprMacro.this.context.universe.Ident,List[DiagrammedExprMacro.this.context.universe.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.ValDef],DiagrammedExprMacro.this.context.universe.Ident,List[DiagrammedExprMacro.this.context.universe.Tree]]
-1 times = 2ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Unit => java.io.PrintStream
-
-Unit => java.io.PrintStream
-6 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrContainWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.OrContainWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with AnyRef]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 2ms
-
-
-
-org.scalatest.enablers.Definition[T with AnyRef]
-
-org.scalatest.enablers.Definition[T with AnyRef]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T with AnyRef]->org.scalatest.enablers.Definition[T with AnyRef]
-
-
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Array[java.net.URL]
-
-(=> (Nothing, Nothing)) => Array[java.net.URL]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-testMethods.type => ?{def foreach: ?}
-
-testMethods.type => ?{def foreach: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[?U] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.matchers.Matcher[?U] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> Unit) => Array[Thread]
-
-(=> Unit) => Array[Thread]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-ths.type => ?{def withFilter: ?}
-
-ths.type => ?{def withFilter: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFeatureSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFeatureSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-6 times = 1ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[JUnitXmlReporter.this.Testcase],scala.xml.Elem,Any]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[JUnitXmlReporter.this.Testcase],scala.xml.Elem,Any]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],(Any, Class[_]),That]
-
-scala.collection.generic.CanBuildFrom[List[Any],(Any, Class[_]),That]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Array[Float] => scala.collection.GenTraversableOnce[?]
-
-Array[Float] => scala.collection.GenTraversableOnce[?]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[?U]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.matchers.Matcher[?U]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with U]
-1 times = 4ms
-
-
-
-org.scalatest.enablers.Emptiness[T with U]
-
-org.scalatest.enablers.Emptiness[T with U]
-1 times = 4ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with U]->org.scalatest.enablers.Emptiness[T with U]
-
-
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,That]
-
-scala.collection.generic.CanBuildFrom[List[String],String,That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Array[sbt.testing.TaskDef] => ?{def map: ?}
-
-Array[sbt.testing.TaskDef] => ?{def map: ?}
-1 times = 1ms
-
-
-
-org.scalatest.enablers.Existence[T with U]
-
-org.scalatest.enablers.Existence[T with U]
-2 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-Array[String] => ?{def mkString: ?}
-
-Array[String] => ?{def mkString: ?}
-3 times = 6ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[D]
-
-org.scalacheck.Arbitrary[D]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4) => ?P
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Any => T
-
-Any => T
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Byte],Byte,List[Byte]]
-
-scala.collection.generic.CanBuildFrom[List[Byte],Byte,List[Byte]]
-1 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 1ms
-
-
-
-(=> Array[Boolean]) => Array[String]
-
-(=> Array[Boolean]) => Array[String]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Any],org.scalatest.matchers.LazyArg,IndexedSeq[Any]]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Any],org.scalatest.matchers.LazyArg,IndexedSeq[Any]]
-4 times = 2ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-scala.reflect.ClassTag[org.scalatest.tools.NestedSuiteParam]
-
-scala.reflect.ClassTag[org.scalatest.tools.NestedSuiteParam]
-5 times = 2ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 1ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, scala.collection.immutable.Set[String]),That]
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, scala.collection.immutable.Set[String]),That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[(String, scala.collection.immutable.Set[String])]
-
-scala.reflect.ClassTag[(String, scala.collection.immutable.Set[String])]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, scala.collection.immutable.Set[String]),That]->scala.reflect.ClassTag[(String, scala.collection.immutable.Set[String])]
-
-
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[?B] => T2
-
-scala.collection.immutable.Set[?B] => T2
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosZFloat],org.scalactic.anyvals.PosZFloat,List[org.scalactic.anyvals.PosZFloat]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosZFloat],org.scalactic.anyvals.PosZFloat,List[org.scalactic.anyvals.PosZFloat]]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-value.type => ?{def replaceAllLiterally: ?}
-
-value.type => ?{def replaceAllLiterally: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalacheck.Shrink[A]
-
-org.scalacheck.Shrink[A]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-suiteId.type => ?{def ->: ?}
-
-suiteId.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Throwable
-
-(=> (Nothing, Nothing)) => Throwable
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4) => ?P
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.Block]
-
-scala.reflect.ClassTag[context.universe.Block]
-1 times = 13ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndNotWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.AndNotWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-wildcardTestNames.type => ?{def find: ?}
-
-wildcardTestNames.type => ?{def find: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrContainWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.OrContainWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => (T with String => org.scalatest.matchers.MatchResult)
-
-(=> Matcher.this.OrContainWord) => (T with String => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.enablers.Existence[T with String]
-
-org.scalatest.enablers.Existence[T with String]
-2 times = 2ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Array[Float] => Array[Any]
-
-Array[Float] => Array[Any]
-521 times = 27ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-TC8[T]
-
-TC8[T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> Array[Long]) => Array[Any]
-
-(=> Array[Long]) => Array[Any]
-521 times = 21ms
-
-
-
-String('|<summary>\n | <runs>\n |$runs$ </runs>\n | <regressions>\n |$regressions$ </regressions>\n | <recentlySlower>\n |$recentlySlower$ </recentlySlower>\n |</summary>\n |') => ?{def stripMargin: ?}
-
-String('|<summary>
- | <runs>
- |$runs$ </runs>
- | <regressions>
- |$regressions$ </regressions>
- | <recentlySlower>
- |$recentlySlower$ </recentlySlower>
- |</summary>
- |') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-scala.languageFeature.implicitConversions
-
-scala.languageFeature.implicitConversions
-99 times = 17ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with AnyRef]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 3ms
-
-
-
-org.scalatest.enablers.Sortable[T with AnyRef]
-
-org.scalatest.enablers.Sortable[T with AnyRef]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with AnyRef]->org.scalatest.enablers.Sortable[T with AnyRef]
-
-
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Array[java.io.File] => ?{def toList: ?}
-
-Array[java.io.File] => ?{def toList: ?}
-2 times = 2ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> org.scalatest.matchers.MatcherFactory5[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => org.scalatest.Reporter
-
-(=> (Nothing, Nothing)) => org.scalatest.Reporter
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-scala.collection.GenTraversableOnce[B] => scala.collection.GenTraversableOnce[String]
-
-scala.collection.GenTraversableOnce[B] => scala.collection.GenTraversableOnce[String]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-2 times = 0ms
-
-
-
-x$2.type => ?{def isWhitespace: ?}
-
-x$2.type => ?{def isWhitespace: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with U]
-1 times = 1ms
-
-
-
-org.scalatest.enablers.Writability[T with U]
-
-org.scalatest.enablers.Writability[T with U]
-1 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with U]->org.scalatest.enablers.Writability[T with U]
-
-
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-4 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[List[Int]] => ?{def +=: ?}
-
-scala.collection.immutable.Set[List[Int]] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Array[Boolean] => Array[Class[_]]
-
-Array[Boolean] => Array[Class[_]]
-1 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-String => ?{def toInt: ?}
-
-String => ?{def toInt: ?}
-8 times = 2ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-TC4[V]
-
-TC4[V]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J)],((A, B, C, D, E, F, G, H, I, J), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J)],((A, B, C, D, E, F, G, H, I, J), Int),That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Unit => java.io.File
-
-Unit => java.io.File
-1 times = 0ms
-
-
-
-x$1.type => ?{def ->: ?}
-
-x$1.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-4 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Any],String,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Any],String,That]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-candidateMethods.type => ?{def size: ?}
-
-candidateMethods.type => ?{def size: ?}
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => String
-
-(=> (Nothing, Nothing)) => String
-33 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> Double) => Char
-
-(=> Double) => Char
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-org.scalatest.matchers.MatcherFactory9[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T]
-4 times = 9ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T]->org.scalatest.enablers.Writability[T]
-
-
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.enablers.Readability[T with AnyRef with U]
-
-org.scalatest.enablers.Readability[T with AnyRef with U]
-1 times = 1ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Double => Float
-
-Double => Float
-8 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Unit) => java.util.Collection[_ <: T]
-
-(=> Unit) => java.util.Collection[_ <: T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-TYPECLASS2[T]
-
-TYPECLASS2[T]
-1 times = 0ms
-
-
-
-Double => Int
-
-Double => Int
-302 times = 36ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => (T with U => org.scalatest.matchers.MatchResult)
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => (T with U => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalactic.anyvals.PosZInt => Char
-
-org.scalactic.anyvals.PosZInt => Char
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => org.scalatest.words.ResultOfSizeWordApplication
-
-(=> (Nothing, Nothing)) => org.scalatest.words.ResultOfSizeWordApplication
-19 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.reflect.api.Universe#WeakTypeTag[Nothing]
-
-scala.reflect.api.Universe#WeakTypeTag[Nothing]
-48 times = 5ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.Matcher[T]
-2 times = 0ms
-
-
-
-E => org.scalacheck.util.Pretty
-
-E => org.scalacheck.util.Pretty
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.Matcher[T]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Array[java.io.File] => ?{def filter: ?}
-
-Array[java.io.File] => ?{def filter: ?}
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-String('dropsuitecompleted') => ?{def ->: ?}
-
-String('dropsuitecompleted') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M)],((A, B, C, D, E, F, G, H, I, J, K, L, M), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M)],((A, B, C, D, E, F, G, H, I, J, K, L, M), Int),That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Unit) => java.util.Collection[_ <: String]
-
-(=> Unit) => java.util.Collection[_ <: String]
-1 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalactic.anyvals.PosZInt) => String
-
-(=> org.scalactic.anyvals.PosZInt) => String
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P)
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[org.scalatest.tools.SuiteResult],scala.xml.Elem,Any]
-
-scala.collection.generic.CanBuildFrom[Array[org.scalatest.tools.SuiteResult],scala.xml.Elem,Any]
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[scala.xml.Elem]
-
-scala.reflect.ClassTag[scala.xml.Elem]
-5 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[org.scalatest.tools.SuiteResult],scala.xml.Elem,Any]->scala.reflect.ClassTag[scala.xml.Elem]
-
-
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with String]
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-rightNonEmptyArray.toArray.type => ?{def deep: ?}
-
-rightNonEmptyArray.toArray.type => ?{def deep: ?}
-1 times = 6ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-((Nothing, Nothing)) => Int
-
-((Nothing, Nothing)) => Int
-32 times = 5ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => $u.FlagSet
-
-((Nothing, Nothing, Nothing)) => $u.FlagSet
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.events.ExceptionalEvent],org.scalatest.tools.Fragment,Vector[org.scalatest.tools.Fragment]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.events.ExceptionalEvent],org.scalatest.tools.Fragment,Vector[org.scalatest.tools.Fragment]]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.Matcher[T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Boolean => asserting.Result
-
-Boolean => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Array[Boolean] => Array[String]
-
-Array[Boolean] => Array[String]
-133 times = 10ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],String,That]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.Matcher[T]
-2 times = 0ms
-
-
-
-(=> org.scalactic.anyvals.PosZInt) => Byte
-
-(=> org.scalactic.anyvals.PosZInt) => Byte
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> List[(String, Option[Any], org.scalatest.MessageRecorder.RecordedMessageEventFun, Option[org.scalatest.events.Location])]) => ?{def ::=: ?}
-
-(=> List[(String, Option[Any], org.scalatest.MessageRecorder.RecordedMessageEventFun, Option[org.scalatest.events.Location])]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[org.scalatest.tools.SuiteResult],Long,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[org.scalatest.tools.SuiteResult],Long,That]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.reflect.ClassTag[c.universe.Select]
-
-scala.reflect.ClassTag[c.universe.Select]
-4 times = 89ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Unit => Throwable
-
-Unit => Throwable
-32 times = 4ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-java.util.Iterator[E] => ?{def asScala: ?}
-
-java.util.Iterator[E] => ?{def asScala: ?}
-3 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-java.util.Iterator[org.scalatest.RunningTest] => ?{def asScala: ?}
-
-java.util.Iterator[org.scalatest.RunningTest] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory5[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with AnyRef]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with AnyRef]
-2 times = 2ms
-
-
-
-org.scalatest.enablers.Existence[T with AnyRef]
-
-org.scalatest.enablers.Existence[T with AnyRef]
-2 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with AnyRef]->org.scalatest.enablers.Existence[T with AnyRef]
-
-
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> (Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit)) => String
-
-(=> (Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit)) => String
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.Typed]
-
-scala.reflect.ClassTag[context.universe.Typed]
-1 times = 8ms
-
-
-
-((Nothing, Nothing)) => org.scalacheck.Prop
-
-((Nothing, Nothing)) => org.scalacheck.Prop
-1 times = 1ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndBeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.AndBeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Unit) => DiagrammedExprMacro.this.context.universe.FlagSet
-
-(=> Unit) => DiagrammedExprMacro.this.context.universe.FlagSet
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-6 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Short) => Char
-
-(=> Short) => Char
-4 times = 0ms
-
-
-
-Option[String] => scala.collection.GenTraversableOnce[?]
-
-Option[String] => scala.collection.GenTraversableOnce[?]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-org.scalactic.anyvals.PosLong => org.scalactic.anyvals.PosZLong
-
-org.scalactic.anyvals.PosLong => org.scalactic.anyvals.PosZLong
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with U]
-2 times = 4ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with U]->org.scalatest.enablers.Existence[T with U]
-
-
-
-
-
-(=> Array[Long]) => Array[Class[_]]
-
-(=> Array[Long]) => Array[Class[_]]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 4ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.Elem,Any]
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.Elem,Any]
-2 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-s.type => ?{def indexWhere: ?}
-
-s.type => ?{def indexWhere: ?}
-1 times = 0ms
-
-
-
-(=> Array[Int]) => Array[Class[_]]
-
-(=> Array[Int]) => Array[Class[_]]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Array[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }] => ?{def withFilter: ?}
-
-Array[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }] => ?{def withFilter: ?}
-1 times = 3ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Double) => Boolean
-
-(=> Double) => Boolean
-4 times = 0ms
-
-
-
-Char => Short
-
-Char => Short
-4 times = 0ms
-
-
-
-rightRegexString.type => ?{def r: ?}
-
-rightRegexString.type => ?{def r: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[F]
-
-org.scalacheck.Shrink[F]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-F => org.scalacheck.util.Pretty
-
-F => org.scalacheck.util.Pretty
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-((A, B, C, D)) => asserting.Result
-
-((A, B, C, D)) => asserting.Result
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Array[Short] => Array[Object]
-
-Array[Short] => Array[Object]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H)],((A, B, C, D, E, F, G, H), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H)],((A, B, C, D, E, F, G, H), Int),That]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Block]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Block]
-1 times = 8ms
-
-
-
-String('\n') => ?{def *: ?}
-
-String('
-') => ?{def *: ?}
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrBeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.OrBeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Array[ThreadGroup]
-
-(=> (Nothing, Nothing)) => Array[ThreadGroup]
-1 times = 0ms
-
-
-
-Array[Unit] => Array[Int]
-
-Array[Unit] => Array[Int]
-1 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.Matcher[T]
-4 times = 0ms
-
-
-
-(=> Map[String,AsyncSuperEngine.this.TestLeaf]) => ?{def +=: ?}
-
-(=> Map[String,AsyncSuperEngine.this.TestLeaf]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Array[StackTraceElement] => ?{def toList: ?}
-
-Array[StackTraceElement] => ?{def toList: ?}
-5 times = 4ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-o.type => ?{def sliding: ?}
-
-o.type => ?{def sliding: ?}
-1 times = 4ms
-
-
-
-(=> Array[Char]) => Array[String]
-
-(=> Array[Char]) => Array[String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Unit => org.openqa.selenium.ie.InternetExplorerDriverService
-
-Unit => org.openqa.selenium.ie.InternetExplorerDriverService
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Long
-
-(=> (Nothing, Nothing)) => Long
-6 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrBeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.OrBeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],scala.xml.Elem,Any]
-
-scala.collection.generic.CanBuildFrom[Array[String],scala.xml.Elem,Any]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],scala.xml.Elem,Any]->scala.reflect.ClassTag[scala.xml.Elem]
-
-
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosLong],org.scalactic.anyvals.PosLong,List[org.scalactic.anyvals.PosLong]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosLong],org.scalactic.anyvals.PosLong,List[org.scalactic.anyvals.PosLong]]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Array[Unit]) => Array[Any]
-
-(=> Array[Unit]) => Array[Any]
-521 times = 19ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-String('dropteststarting') => ?{def ->: ?}
-
-String('dropteststarting') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-String('dropsuitestarting') => ?{def ->: ?}
-
-String('dropsuitestarting') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Char => Boolean
-
-Char => Boolean
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.This]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.This]
-1 times = 15ms
-
-
-
-(=> Array[Boolean]) => Array[sbt.testing.Fingerprint]
-
-(=> Array[Boolean]) => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-ResultOfBeWordForAny.this.left.type => ?{def isDefinedAt: ?}
-
-ResultOfBeWordForAny.this.left.type => ?{def isDefinedAt: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-e.type => ?{def isDefinedAt: ?}
-
-e.type => ?{def isDefinedAt: ?}
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndNotWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.AndNotWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> org.scalacheck.Prop.Result) => org.scalacheck.Prop
-
-(=> org.scalacheck.Prop.Result) => org.scalacheck.Prop
-30 times = 1ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> Int) => Char
-
-(=> Int) => Char
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-String => Int
-
-String => Int
-250 times = 21ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-Array[String] => ?{def toList: ?}
-
-Array[String] => ?{def toList: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.Select]
-
-scala.reflect.ClassTag[context.universe.Select]
-1 times = 22ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-javaColl.type => ?{def asScala: ?}
-
-javaColl.type => ?{def asScala: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-testName.type => ?{def ->: ?}
-
-testName.type => ?{def ->: ?}
-2 times = 2ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => ?A1 => ?P
-
-((Nothing, Nothing)) => ?A1 => ?P
-1 times = 0ms
-
-
-
-org.scalatest.enablers.Readability[T with U]
-
-org.scalatest.enablers.Readability[T with U]
-1 times = 1ms
-
-
-
-paramTypes.type => ?{def toList: ?}
-
-paramTypes.type => ?{def toList: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.Matcher[T]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteConfig],Int,That]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteConfig],Int,That]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(String, scala.collection.immutable.Set[String]) <:< (String, Set[String])
-
-(String, scala.collection.immutable.Set[String]) <:< (String, Set[String])
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.NodeBuffer,Any]
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.NodeBuffer,Any]
-2 times = 1ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E)],(Int, E),That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E)],(Int, E),That]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Unit => org.pegdown.Parser
-
-Unit => org.pegdown.Parser
-1 times = 2ms
-
-
-
-(=> (Nothing, Nothing)) => java.awt.PopupMenu
-
-(=> (Nothing, Nothing)) => java.awt.PopupMenu
-30 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-x$8.type => ?{def isWhitespace: ?}
-
-x$8.type => ?{def isWhitespace: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-64 times = 2ms
-
-
-
-scala.reflect.ClassTag[T]
-
-scala.reflect.ClassTag[T]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-Array[=?Char] => CharSequence
-
-Array[=?Char] => CharSequence
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-HtmlReporter.this.type => ?{def eventList_=(x$1: ? >: scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]): scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]}
-
-HtmlReporter.this.type => ?{def eventList_=(x$1: ? >: scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]): scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]}
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],Boolean,List[Boolean]]
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],Boolean,List[Boolean]]
-2 times = 1ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> List[SlowRecord$3]) => ?{def ::=: ?}
-
-(=> List[SlowRecord$3]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2) => ?P)
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrNotWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.OrNotWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Boolean => Short
-
-Boolean => Short
-4 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-((Nothing, Nothing)) => Class[_]
-
-((Nothing, Nothing)) => Class[_]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-nestedSuite.testNames.type => ?{def ++: ?}
-
-nestedSuite.testNames.type => ?{def ++: ?}
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrContainWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.OrContainWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-constructorList.type => ?{def exists: ?}
-
-constructorList.type => ?{def exists: ?}
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Map[String,AsyncSuperEngine.this.TestLeaf] => ?{def +=: ?}
-
-Map[String,AsyncSuperEngine.this.TestLeaf] => ?{def +=: ?}
-1 times = 17ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteParam],org.scalatest.tools.SuiteParam,List[org.scalatest.tools.SuiteParam]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteParam],org.scalatest.tools.SuiteParam,List[org.scalatest.tools.SuiteParam]]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Array[StackTraceElement] => ?{def drop: ?}
-
-Array[StackTraceElement] => ?{def drop: ?}
-6 times = 5ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-methodTags.type => ?{def contains: ?}
-
-methodTags.type => ?{def contains: ?}
-2 times = 2ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-Unit => java.util.Collection[_ <: java.util.concurrent.Future[_]]
-
-Unit => java.util.Collection[_ <: java.util.concurrent.Future[_]]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Unit => java.io.PrintWriter
-
-Unit => java.io.PrintWriter
-6 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],String,That]
-
-scala.collection.generic.CanBuildFrom[Array[String],String,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],String,That]->scala.reflect.ClassTag[String]
-
-
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-List[SlowRecord$3] => ?{def ::=: ?}
-
-List[SlowRecord$3] => ?{def ::=: ?}
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => org.scalacheck.Prop
-
-(=> (Nothing, Nothing)) => org.scalacheck.Prop
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.Constant]
-
-scala.reflect.ClassTag[context.universe.Constant]
-1 times = 5ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3) => ?P
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS] => org.scalatest.matchers.Matcher[T]
-1 times = 1ms
-
-
-
-TC1[T]
-
-TC1[T]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS] => org.scalatest.matchers.Matcher[T]->TC1[T]
-
-
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> Unit) => Array[Class[_]]
-
-(=> Unit) => Array[Class[_]]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => org.scalacheck.Gen[=?Nothing]
-
-((Nothing, Nothing, Nothing, Nothing)) => org.scalacheck.Gen[=?Nothing]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.Template]
-
-scala.reflect.ClassTag[context.universe.Template]
-1 times = 8ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> Int) => Boolean
-
-(=> Int) => Boolean
-4 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-6 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Array[Char] => Array[org.scalatools.testing.Fingerprint]
-
-Array[Char] => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-Unit => java.awt.Point
-
-Unit => java.awt.Point
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Array[Long] => Array[String]
-
-Array[Long] => Array[String]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => (T with AnyRef => org.scalatest.matchers.MatchResult)
-
-(=> Matcher.this.OrContainWord) => (T with AnyRef => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.Memento],org.scalatest.tools.SuiteParam,List[org.scalatest.tools.SuiteParam]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.Memento],org.scalatest.tools.SuiteParam,List[org.scalatest.tools.SuiteParam]]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T]
-4 times = 11ms
-
-
-
-org.scalatest.enablers.Readability[T]
-
-org.scalatest.enablers.Readability[T]
-4 times = 7ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T]->org.scalatest.enablers.Readability[T]
-
-
-
-
-
-Unit => Array[String]
-
-Unit => Array[String]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> Float) => Long
-
-(=> Float) => Long
-34 times = 1ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-String('droptestsucceeded') => ?{def ->: ?}
-
-String('droptestsucceeded') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with String]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with String]
-2 times = 3ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with String]->org.scalatest.enablers.Existence[T with String]
-
-
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-12 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Unit => Array[Class[_]]
-
-Unit => Array[Class[_]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.awt.Dimension
-
-((Nothing, Nothing)) => java.awt.Dimension
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-12 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Array[Short] => Array[sbt.testing.Fingerprint]
-
-Array[Short] => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],scala.xml.Elem,Any]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],scala.xml.Elem,Any]
-4 times = 5ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[?U]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.matchers.Matcher[?U]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-TYPECLASS1[V]
-
-TYPECLASS1[V]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Apply]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Apply]
-8 times = 96ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> Unit) => java.io.PrintStream
-
-(=> Unit) => java.io.PrintStream
-6 times = 0ms
-
-
-
-Unit => org.openqa.selenium.chrome.ChromeDriverService
-
-Unit => org.openqa.selenium.chrome.ChromeDriverService
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => org.scalactic.source.Position
-
-(=> (Nothing, Nothing)) => org.scalactic.source.Position
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Boolean
-
-(=> (Nothing, Nothing)) => Boolean
-53 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-64 times = 4ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Unit => Int
-
-Unit => Int
-115 times = 13ms
-
-
-
-String => ?{def init: ?}
-
-String => ?{def init: ?}
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> DiagrammedExprMacro.this.context.universe.Tree) => DiagrammedExprMacro.this.context.universe.GenericApply
-
-(=> DiagrammedExprMacro.this.context.universe.Tree) => DiagrammedExprMacro.this.context.universe.GenericApply
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.Matcher[T]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2) => ?P
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.net.URI
-
-(=> (Nothing, Nothing)) => java.net.URI
-10 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Array[Byte] => Array[org.scalatools.testing.Fingerprint]
-
-Array[Byte] => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Short) => Boolean
-
-(=> Short) => Boolean
-4 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-((A, B, C, D, E, F, G)) => asserting.Result
-
-((A, B, C, D, E, F, G)) => asserting.Result
-1 times = 0ms
-
-
-
-java.nio.channels.WritableByteChannel => java.nio.channels.ReadableByteChannel
-
-java.nio.channels.WritableByteChannel => java.nio.channels.ReadableByteChannel
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-scala.io.Codec
-
-scala.io.Codec
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Int => ?{def max: ?}
-
-Int => ?{def max: ?}
-4 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-IndexedSeq[(Int, T, Throwable)] => IndexedSeq[(Int, T, Throwable)]
-
-IndexedSeq[(Int, T, Throwable)] => IndexedSeq[(Int, T, Throwable)]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 2ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory8[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-12 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-Array[Double] => Array[sbt.testing.Fingerprint]
-
-Array[Double] => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[List[Int]]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[List[Int]]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-IndexedSeq[(Int, T)] => IndexedSeq[(Int, T)]
-
-IndexedSeq[(Int, T)] => IndexedSeq[(Int, T)]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalactic.anyvals.PosZInt => String
-
-org.scalactic.anyvals.PosZInt => String
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> Long) => T
-
-(=> Long) => T
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-String('fullstacks') => ?{def ->: ?}
-
-String('fullstacks') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFunSuiteLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFunSuiteLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-6 times = 1ms
-
-
-
-org.scalatest.enablers.Timed[T]
-
-org.scalatest.enablers.Timed[T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-List[(String, Option[Any], org.scalatest.MessageRecorder.RecordedMessageEventFun, Option[org.scalatest.events.Location])] => ?{def ::=: ?}
-
-List[(String, Option[Any], org.scalatest.MessageRecorder.RecordedMessageEventFun, Option[org.scalatest.events.Location])] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndBeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.AndBeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> Unit) => java.util.Locale
-
-(=> Unit) => java.util.Locale
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Float => Int
-
-Float => Int
-302 times = 19ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Boolean => ?{def ==>: ?}
-
-Boolean => ?{def ==>: ?}
-30 times = 7ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-that.stamps.type => ?{def deep: ?}
-
-that.stamps.type => ?{def deep: ?}
-1 times = 1ms
-
-
-
-Char => Byte
-
-Char => Byte
-4 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> Char) => Short
-
-(=> Char) => Short
-4 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Unit) => java.util.SortedSet[org.scalatest.RunningTest]
-
-(=> Unit) => java.util.SortedSet[org.scalatest.RunningTest]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-(=> scala.collection.immutable.TreeMap[Int,org.scalatest.AnchorValue]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.TreeMap[Int,org.scalatest.AnchorValue]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Select]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Select]
-9 times = 193ms
-
-
-
-(=> Array[Short]) => Array[sbt.testing.Fingerprint]
-
-(=> Array[Short]) => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[String],org.scalatest.Suite,scala.collection.immutable.IndexedSeq[org.scalatest.Suite]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[String],org.scalatest.Suite,scala.collection.immutable.IndexedSeq[org.scalatest.Suite]]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3) => ?P
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3) => ?P
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-Long => Short
-
-Long => Short
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.openqa.selenium.WebElement],String,scala.collection.immutable.IndexedSeq[String]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.openqa.selenium.WebElement],String,scala.collection.immutable.IndexedSeq[String]]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.NoteProvided,scala.collection.immutable.IndexedSeq[org.scalatest.events.NotificationEvent]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.NoteProvided,scala.collection.immutable.IndexedSeq[org.scalatest.events.NotificationEvent]]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-OPT[E] => scala.collection.GenTraversableOnce[E]
-
-OPT[E] => scala.collection.GenTraversableOnce[E]
-2 times = 1ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],java.net.URL,List[java.net.URL]]
-
-scala.collection.generic.CanBuildFrom[List[String],java.net.URL,List[java.net.URL]]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B)],((A, B), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B)],((A, B), Int),That]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Array[Double]) => Array[Object]
-
-(=> Array[Double]) => Array[Object]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-scala.reflect.ClassTag[(sbt.testing.TaskDef, Framework.this.ScalaTestTask)]
-
-scala.reflect.ClassTag[(sbt.testing.TaskDef, Framework.this.ScalaTestTask)]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> Array[Double]) => Array[Class[_]]
-
-(=> Array[Double]) => Array[Class[_]]
-1 times = 0ms
-
-
-
-(=> (A, B)) => asserting.Result
-
-(=> (A, B)) => asserting.Result
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => org.scalatest.words.ResultOfSizeWordApplication
-
-((Nothing, Nothing)) => org.scalatest.words.ResultOfSizeWordApplication
-19 times = 1ms
-
-
-
-Array[StackTraceElement] => ?{def mkString: ?}
-
-Array[StackTraceElement] => ?{def mkString: ?}
-2 times = 1ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Unit) => com.gargoylesoftware.htmlunit.BrowserVersion
-
-(=> Unit) => com.gargoylesoftware.htmlunit.BrowserVersion
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-configsArr.type => ?{def map: ?}
-
-configsArr.type => ?{def map: ?}
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-Int => ?{def +=: ?}
-
-Int => ?{def +=: ?}
-75 times = 8ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[c.universe.Literal]
-
-scala.reflect.ClassTag[c.universe.Literal]
-2 times = 19ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-configString.type => ?{def iterator: ?}
-
-configString.type => ?{def iterator: ?}
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, scala.collection.immutable.Set[String]),scala.collection.GenTraversableOnce[(String, Set[String])]]
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, scala.collection.immutable.Set[String]),scala.collection.GenTraversableOnce[(String, Set[String])]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],(String, scala.collection.immutable.Set[String]),scala.collection.GenTraversableOnce[(String, Set[String])]]->DummyImplicit
-
-
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-TYPECLASS1[T]
-
-TYPECLASS1[T]
-1 times = 2ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-org.scalatest.enablers.Writability[T with AnyRef with U]
-
-org.scalatest.enablers.Writability[T with AnyRef with U]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-(=> Array[Long]) => Array[org.scalatools.testing.Fingerprint]
-
-(=> Array[Long]) => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Array[Long]) => Array[Object]
-
-(=> Array[Long]) => Array[Object]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.events.Ordinal => Comparable[org.scalatest.events.Ordinal]
-
-org.scalatest.events.Ordinal => Comparable[org.scalatest.events.Ordinal]
-2 times = 0ms
-
-
-
-right.type => ?{def r: ?}
-
-right.type => ?{def r: ?}
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.TypeApply]
-
-scala.reflect.ClassTag[context.universe.TypeApply]
-1 times = 13ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[Any,org.scalatest.enablers.Existence,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory3[Any,org.scalatest.enablers.Existence,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, T, Throwable)],(Int, T, Throwable),That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, T, Throwable)],(Int, T, Throwable),That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-Array[java.lang.reflect.Method] => ?{def find: ?}
-
-Array[java.lang.reflect.Method] => ?{def find: ?}
-2 times = 2ms
-
-
-
-((Any => Nothing, Nothing, Nothing)) => Int
-
-((Any => Nothing, Nothing, Nothing)) => Int
-74 times = 6ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Array[Int] => Array[Object]
-
-Array[Int] => Array[Object]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => org.scalacheck.Gen[=?Nothing]
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => org.scalacheck.Gen[=?Nothing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],scala.xml.Elem,That]
-
-scala.collection.generic.CanBuildFrom[Array[String],scala.xml.Elem,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],scala.xml.Elem,That]->scala.reflect.ClassTag[scala.xml.Elem]
-
-
-
-
-
-(=> Float) => Char
-
-(=> Float) => Char
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> Array[Unit]) => Array[Object]
-
-(=> Array[Unit]) => Array[Object]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-Array[Char] => Array[Object]
-
-Array[Char] => Array[Object]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndBeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.AndBeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Int(1) => ?{def to: ?}
-
-Int(1) => ?{def to: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-suiteTags.type => ?{def toSet: ?}
-
-suiteTags.type => ?{def toSet: ?}
-1 times = 2ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndContainWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.AndContainWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Array[Short]) => Array[Int]
-
-(=> Array[Short]) => Array[Int]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E, Throwable)],Throwable,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E, Throwable)],Throwable,That]
-1 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4) => ?P
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4) => ?P
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Array[Float]) => Array[String]
-
-(=> Array[Float]) => Array[String]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalactic.Every[E] => scala.collection.GenTraversableOnce[E]
-
-org.scalactic.Every[E] => scala.collection.GenTraversableOnce[E]
-2 times = 1ms
-
-
-
-ConcurrentLinkedQueue.this.queue.type => ?{def asScala: ?}
-
-ConcurrentLinkedQueue.this.queue.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-context.WeakTypeTag[T]
-
-context.WeakTypeTag[T]
-1 times = 4ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Array[Boolean] => Array[Int]
-
-Array[Boolean] => Array[Int]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-Unit => javax.swing.ListModel[org.scalatest.tools.EventHolder]
-
-Unit => javax.swing.ListModel[org.scalatest.tools.EventHolder]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[(sbt.testing.TaskDef, Framework.this.ScalaTestTask)],Framework.this.ScalaTestTask,Array[sbt.testing.Task]]
-
-scala.collection.generic.CanBuildFrom[Array[(sbt.testing.TaskDef, Framework.this.ScalaTestTask)],Framework.this.ScalaTestTask,Array[sbt.testing.Task]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[(sbt.testing.TaskDef, Framework.this.ScalaTestTask)],Framework.this.ScalaTestTask,Array[sbt.testing.Task]]->scala.reflect.ClassTag[sbt.testing.Task]
-
-
-
-
-
-(=> ExistWord.this.matcherFactory.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-StringShouldWrapper.this.leftSideString.type => ?{def r: ?}
-
-StringShouldWrapper.this.leftSideString.type => ?{def r: ?}
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Int => Short
-
-Int => Short
-4 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Array[Float] => Array[sbt.testing.Fingerprint]
-
-Array[Float] => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Array[Short]) => Array[String]
-
-(=> Array[Short]) => Array[String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.annotation.Annotation],(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation },That]
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.annotation.Annotation],(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation },That]
-1 times = 9ms
-
-
-
-scala.reflect.ClassTag[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }]
-
-scala.reflect.ClassTag[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.annotation.Annotation],(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation },That]->scala.reflect.ClassTag[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }]
-
-
-
-
-
-Unit => Array[org.scalatest.tools.EventHolder]
-
-Unit => Array[org.scalatest.tools.EventHolder]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Double) => Short
-
-(=> Double) => Short
-4 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Array[Float]) => Array[Object]
-
-(=> Array[Float]) => Array[Object]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.openqa.selenium.WebElement,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.openqa.selenium.WebElement,That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosZLong],org.scalactic.anyvals.PosZLong,List[org.scalactic.anyvals.PosZLong]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosZLong],org.scalactic.anyvals.PosZLong,List[org.scalactic.anyvals.PosZLong]]
-1 times = 0ms
-
-
-
-Array[Byte] => Array[String]
-
-Array[Byte] => Array[String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Int
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => Int
-33 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.Tree],(DiagrammedExprMacro.this.context.universe.Tree, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.Tree],(DiagrammedExprMacro.this.context.universe.Tree, Int),That]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-java.util.Iterator[T] => ?{def asScala: ?}
-
-java.util.Iterator[T] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> scala.collection.GenTraversableOnce[B]) => scala.collection.GenTraversableOnce[String]
-
-(=> scala.collection.GenTraversableOnce[B]) => scala.collection.GenTraversableOnce[String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.Match]
-
-scala.reflect.ClassTag[context.universe.Match]
-1 times = 10ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Unit) => java.io.FileFilter
-
-(=> Unit) => java.io.FileFilter
-1 times = 0ms
-
-
-
-args.type => ?{def toArray: ?}
-
-args.type => ?{def toArray: ?}
-1 times = 2ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],String,Array[String]]
-
-scala.collection.generic.CanBuildFrom[Array[String],String,Array[String]]
-2 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],String,Array[String]]->scala.reflect.ClassTag[String]
-
-
-
-
-
-(=> Array[Boolean]) => Array[Object]
-
-(=> Array[Boolean]) => Array[Object]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => org.scalatest.words.ResultOfLengthWordApplication
-
-((Nothing, Nothing)) => org.scalatest.words.ResultOfLengthWordApplication
-19 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-TC6[V]
-
-TC6[V]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-x.type => ?{def ->: ?}
-
-x.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K)) => asserting.Result
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],org.scalatest.tools.SuiteConfig,List[org.scalatest.tools.SuiteConfig]]
-
-scala.collection.generic.CanBuildFrom[List[String],org.scalatest.tools.SuiteConfig,List[org.scalatest.tools.SuiteConfig]]
-1 times = 0ms
-
-
-
-Short => Byte
-
-Short => Byte
-4 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-tn.type => ?{def ->: ?}
-
-tn.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with U]
-1 times = 3ms
-
-
-
-org.scalatest.enablers.Sortable[T with U]
-
-org.scalatest.enablers.Sortable[T with U]
-1 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with U]->org.scalatest.enablers.Sortable[T with U]
-
-
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-string.type => ?{def size: ?}
-
-string.type => ?{def size: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.Matcher[T]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[org.scalatest.Tag],String,That]
-
-scala.collection.generic.CanBuildFrom[Seq[org.scalatest.Tag],String,That]
-1 times = 7ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-x$8.type => ?{def <: ?}
-
-x$8.type => ?{def <: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Array[Char]) => Array[sbt.testing.Fingerprint]
-
-(=> Array[Char]) => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.enablers.Sortable[T with AnyRef with U]
-
-org.scalatest.enablers.Sortable[T with AnyRef with U]
-1 times = 1ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.awt.Frame
-
-(=> (Nothing, Nothing)) => java.awt.Frame
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5) => ?P
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.Symbol],Boolean,That]
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.Symbol],Boolean,That]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-((=> Any) => Thread) => Thread
-
-((=> Any) => Thread) => Thread
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V), Int),That]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-firstChar.type => ?{def isWhitespace: ?}
-
-firstChar.type => ?{def isWhitespace: ?}
-1 times = 5ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-A => org.scalacheck.util.Pretty
-
-A => org.scalacheck.util.Pretty
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.AndContainWord => (T with AnyRef with U => org.scalatest.matchers.MatchResult)
-
-Matcher.this.AndContainWord => (T with AnyRef with U => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[sbt.testing.TaskDef],(sbt.testing.TaskDef, Framework.this.ScalaTestTask),That]
-
-scala.collection.generic.CanBuildFrom[Array[sbt.testing.TaskDef],(sbt.testing.TaskDef, Framework.this.ScalaTestTask),That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[sbt.testing.TaskDef],(sbt.testing.TaskDef, Framework.this.ScalaTestTask),That]->scala.reflect.ClassTag[(sbt.testing.TaskDef, Framework.this.ScalaTestTask)]
-
-
-
-
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Array[String] => scala.collection.GenTraversableOnce[String]
-
-Array[String] => scala.collection.GenTraversableOnce[String]
-6 times = 6ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P)
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.awt.image.ImageProducer
-
-(=> (Nothing, Nothing)) => java.awt.image.ImageProducer
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O), Int),That]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-Array[String] => ?{def foreach: ?}
-
-Array[String] => ?{def foreach: ?}
-2 times = 1ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Float) => Short
-
-(=> Float) => Short
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],String,That]
-1 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Double => T
-
-Double => T
-2 times = 0ms
-
-
-
-(=> String) => Double
-
-(=> String) => Double
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.Matcher[T]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.Matcher[T]->TC1[T]
-
-
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-64 times = 3ms
-
-
-
-org.scalatest.matchers.Matcher[?U] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.matchers.Matcher[?U] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[?B]) => T2
-
-(=> scala.collection.immutable.Set[?B]) => T2
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-selectSuiteList.type => ?{def map: ?}
-
-selectSuiteList.type => ?{def map: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrContainWord => (T with String => org.scalatest.matchers.MatchResult)
-
-Matcher.this.OrContainWord => (T with String => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-List[Any] => ?{def ::=: ?}
-
-List[Any] => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => (?A1 => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-rightArray.type => ?{def deep: ?}
-
-rightArray.type => ?{def deep: ?}
-1 times = 6ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[A],(A,),Seq[(A,)]]
-
-scala.collection.generic.CanBuildFrom[Seq[A],(A,),Seq[(A,)]]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> org.scalatest.matchers.MatcherFactory9[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosFloat],org.scalactic.anyvals.PosFloat,List[org.scalactic.anyvals.PosFloat]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosFloat],org.scalactic.anyvals.PosFloat,List[org.scalactic.anyvals.PosFloat]]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-java.util.Comparator[java.io.File]
-
-java.util.Comparator[java.io.File]
-1 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Unit => org.openqa.selenium.chrome.ChromeOptions
-
-Unit => org.openqa.selenium.chrome.ChromeOptions
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-16 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> Unit) => Array[org.scalatest.tools.EventHolder]
-
-(=> Unit) => Array[org.scalatest.tools.EventHolder]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[DiagrammedExprMacro.this.context.universe.Symbol]],List[Boolean],That]
-
-scala.collection.generic.CanBuildFrom[List[List[DiagrammedExprMacro.this.context.universe.Symbol]],List[Boolean],That]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with AnyRef with U]->TC1[T]
-
-
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncFlatSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncFlatSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-4 times = 0ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Long) => Int
-
-(=> Long) => Int
-307 times = 13ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Doc.this.Snippet],Doc.this.Snippet,scala.collection.immutable.Vector[Doc.this.Snippet]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Doc.this.Snippet],Doc.this.Snippet,scala.collection.immutable.Vector[Doc.this.Snippet]]
-3 times = 2ms
-
-
-
-((Nothing, Nothing)) => java.awt.Point
-
-((Nothing, Nothing)) => java.awt.Point
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-Array[java.io.File] => ?{def dropRight: ?}
-
-Array[java.io.File] => ?{def dropRight: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Conductor.this.threadGroup.type => ?{def areAnyThreadsInTimedWaiting: ?}
-
-Conductor.this.threadGroup.type => ?{def areAnyThreadsInTimedWaiting: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrBeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.OrBeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => => String
-
-(=> (Nothing, Nothing, Nothing)) => => String
-278 times = 13ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => String
-
-((Nothing, Nothing, Nothing)) => String
-4 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-String => ?{def take: ?}
-
-String => ?{def take: ?}
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Array[Byte] => Array[Class[_]]
-
-Array[Byte] => Array[Class[_]]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.tools.Fragment],org.scalatest.tools.Fragment,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.tools.Fragment],org.scalatest.tools.Fragment,That]
-1 times = 1ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-args.type => ?{def contains: ?}
-
-args.type => ?{def contains: ?}
-2 times = 1ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Int],(Int, Int),That]
-
-scala.collection.generic.CanBuildFrom[Array[Int],(Int, Int),That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[(Int, Int)]
-
-scala.reflect.ClassTag[(Int, Int)]
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Int],(Int, Int),That]->scala.reflect.ClassTag[(Int, Int)]
-
-
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> Array[Double]) => Array[org.scalatools.testing.Fingerprint]
-
-(=> Array[Double]) => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Unit) => java.util.Comparator[_ >: org.scalatest.RunningTest]
-
-(=> Unit) => java.util.Comparator[_ >: org.scalatest.RunningTest]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V)) => asserting.Result
-1 times = 0ms
-
-
-
-Array[Unit] => Array[String]
-
-Array[Unit] => Array[String]
-133 times = 47ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-TC4[T]
-
-TC4[T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],(String, Set[String]),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],(String, Set[String]),That]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-Boolean => T
-
-Boolean => T
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-12 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => org.scalacheck.Gen[=?Nothing]
-
-((Nothing, Nothing, Nothing)) => org.scalacheck.Gen[=?Nothing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-elements.type => ?{def foreach: ?}
-
-elements.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[scala.xml.Node],scala.xml.Node,That]
-
-scala.collection.generic.CanBuildFrom[Seq[scala.xml.Node],scala.xml.Node,That]
-1 times = 3ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-Array[Unit] => Array[sbt.testing.Fingerprint]
-
-Array[Unit] => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-scala.math.Ordering[org.scalatest.events.Event]
-
-scala.math.Ordering[org.scalatest.events.Event]
-3 times = 4ms
-
-
-
-scala.math.Ordering[org.scalatest.events.Event]->org.scalatest.events.Event => Comparable[org.scalatest.events.Event]
-
-
-
-
-
-java.util.Comparator[org.scalatest.events.Event]
-
-java.util.Comparator[org.scalatest.events.Event]
-3 times = 0ms
-
-
-
-scala.math.Ordering[org.scalatest.events.Event]->java.util.Comparator[org.scalatest.events.Event]
-
-
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Double) => Float
-
-(=> Double) => Float
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrContainWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.OrContainWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => (T => org.scalatest.matchers.MatchResult)
-
-(=> Matcher.this.OrContainWord) => (T => org.scalatest.matchers.MatchResult)
-3 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> Unit) => org.pegdown.Parser
-
-(=> Unit) => org.pegdown.Parser
-1 times = 0ms
-
-
-
-nestedSuitesArray.type => ?{def foreach: ?}
-
-nestedSuitesArray.type => ?{def foreach: ?}
-2 times = 2ms
-
-
-
-TC5[T]
-
-TC5[T]
-1 times = 0ms
-
-
-
-Unit => java.io.FileFilter
-
-Unit => java.io.FileFilter
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => DiagrammedExprMacro.this.context.universe.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => DiagrammedExprMacro.this.context.universe.Symbol
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndContainWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.AndContainWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],scala.xml.NodeSeq,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent],scala.xml.NodeSeq,That]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Unit => java.awt.Rectangle
-
-Unit => java.awt.Rectangle
-5 times = 1ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => org.scalatest.exceptions.TestFailedException
-
-((Nothing, Nothing, Nothing)) => org.scalatest.exceptions.TestFailedException
-428 times = 46ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrContainWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.OrContainWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U), Int),That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-String => scala.collection.GenTraversableOnce[Char]
-
-String => scala.collection.GenTraversableOnce[Char]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-String => Long
-
-String => Long
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Array[Double] => Array[Any]
-
-Array[Double] => Array[Any]
-521 times = 28ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> scala.concurrent.duration.Duration) => scala.concurrent.duration.FiniteDuration
-
-(=> scala.concurrent.duration.Duration) => scala.concurrent.duration.FiniteDuration
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,?TC2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,?TC2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, Any),That]
-
-scala.collection.generic.CanBuildFrom[List[String],(String, Any),That]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-Unit => java.util.Collection[_ <: T]
-
-Unit => java.util.Collection[_ <: T]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndContainWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.AndContainWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[() => Unit],Option[Throwable],IndexedSeq[Option[Throwable]]]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[() => Unit],Option[Throwable],IndexedSeq[Option[Throwable]]]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-x$10.className.type => ?{def <: ?}
-
-x$10.className.type => ?{def <: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-String => ?{def ->: ?}
-
-String => ?{def ->: ?}
-5 times = 2ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> Array[Unit]) => Array[Class[_]]
-
-(=> Array[Unit]) => Array[Class[_]]
-1 times = 0ms
-
-
-
-Unit => java.util.Comparator[_ >: org.scalatest.RunningTest]
-
-Unit => java.util.Comparator[_ >: org.scalatest.RunningTest]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> (=> Any) => Thread) => Thread
-
-(=> (=> Any) => Thread) => Thread
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Int],Int,List[Int]]
-
-scala.collection.generic.CanBuildFrom[List[Int],Int,List[Int]]
-1 times = 2ms
-
-
-
-sourceText.type => ?{def prefixLength: ?}
-
-sourceText.type => ?{def prefixLength: ?}
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-messageLines.type => ?{def map: ?}
-
-messageLines.type => ?{def map: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.net.URL
-
-(=> (Nothing, Nothing)) => java.net.URL
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> IndexedSeq[(Int, E)]) => IndexedSeq[(Int, E)]
-
-(=> IndexedSeq[(Int, E)]) => IndexedSeq[(Int, E)]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Array[Short] => Array[org.scalatools.testing.Fingerprint]
-
-Array[Short] => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-n.type => ?{def longValue: ?}
-
-n.type => ?{def longValue: ?}
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.TypeApply]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.TypeApply]
-3 times = 41ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[A,B],(A, B),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[A,B],(A, B),That]
-1 times = 4ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[org.scalatest.tools.Memento],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[org.scalatest.tools.Memento],String,That]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P)
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P)
-1 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Long],Long,List[Long]]
-
-scala.collection.generic.CanBuildFrom[List[Long],Long,List[Long]]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Array[Object] => ?{def mkString: ?}
-
-Array[Object] => ?{def mkString: ?}
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-((Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit)) => String
-
-((Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit)) => String
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.ClassDef]
-
-scala.reflect.ClassTag[context.universe.ClassDef]
-1 times = 33ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-12 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-String('|oldAvg=\'$oldAvg$\' newAvg=\'$newAvg$\'/>\n |') => ?{def stripMargin: ?}
-
-String('|oldAvg='$oldAvg$' newAvg='$newAvg$'/>
- |') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> String) => ?{def +=: ?}
-
-(=> String) => ?{def +=: ?}
-4 times = 0ms
-
-
-
-org.scalatest.prop.Generator[T]
-
-org.scalatest.prop.Generator[T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.matchers.HavePropertyMatcher[U, _]],org.scalatest.matchers.HavePropertyMatchResult[_],That]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.matchers.HavePropertyMatcher[U, _]],org.scalatest.matchers.HavePropertyMatchResult[_],That]
-1 times = 1ms
-
-
-
-nestedSuites.type => ?{def partition: ?}
-
-nestedSuites.type => ?{def partition: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-Array[Long] => Array[org.scalatools.testing.Fingerprint]
-
-Array[Long] => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-4 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncFunSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncFunSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-8 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Unit) => Boolean
-
-(=> Unit) => Boolean
-31 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-((A, B, C)) => asserting.Result
-
-((A, B, C)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[AnyRef] => (T => org.scalatest.matchers.MatchResult)
-
-org.scalatest.matchers.Matcher[AnyRef] => (T => org.scalatest.matchers.MatchResult)
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[C]
-
-org.scalacheck.Arbitrary[C]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[XmlReporter.this.Testcase],scala.xml.Elem,Any]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[XmlReporter.this.Testcase],scala.xml.Elem,Any]
-1 times = 1ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> Unit) => context.universe.FlagSet
-
-(=> Unit) => context.universe.FlagSet
-1 times = 0ms
-
-
-
-scala.math.Ordering[Int]
-
-scala.math.Ordering[Int]
-2 times = 5ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(org.scalacheck.Prop.Arg[_], Int)],String,That]
-
-scala.collection.generic.CanBuildFrom[List[(org.scalacheck.Prop.Arg[_], Int)],String,That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Char) => Byte
-
-(=> Char) => Byte
-4 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with U]
-1 times = 3ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with U]->org.scalatest.enablers.Readability[T with U]
-
-
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-12 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.awt.Frame
-
-((Nothing, Nothing)) => java.awt.Frame
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],Set[String],List[Set[String]]]
-
-scala.collection.generic.CanBuildFrom[List[String],Set[String],List[Set[String]]]
-1 times = 1ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-48 times = 1ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndContainWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.AndContainWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-String => ?{def toLong: ?}
-
-String => ?{def toLong: ?}
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> Unit) => java.util.Collection[_ <: org.scalatest.RunningTest]
-
-(=> Unit) => java.util.Collection[_ <: org.scalatest.RunningTest]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => java.util.Map[_ <: java.text.AttributedCharacterIterator.Attribute, _]
-
-(=> (Nothing, Nothing, Nothing)) => java.util.Map[_ <: java.text.AttributedCharacterIterator.Attribute, _]
-7 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-Double => Char
-
-Double => Char
-4 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrNotWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.OrNotWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-scala.reflect.ClassTag[org.scalatest.Tag]
-
-scala.reflect.ClassTag[org.scalatest.Tag]
-4 times = 2ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[scala.xml.Node],scala.xml.Node,That]
-
-scala.collection.generic.CanBuildFrom[List[scala.xml.Node],scala.xml.Node,That]
-1 times = 1ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-key.type => ?{def ->: ?}
-
-key.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[org.scalatest.tools.NestedSuiteElement]
-
-scala.reflect.ClassTag[org.scalatest.tools.NestedSuiteElement]
-1 times = 1ms
-
-
-
-Unit => Runnable
-
-Unit => Runnable
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Unit => String
-
-Unit => String
-124 times = 11ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)) => asserting.Result
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> Unit) => org.apache.tools.ant.Task
-
-(=> Unit) => org.apache.tools.ant.Task
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Configuration.this.PropertyCheckConfig => Configuration.this.PropertyCheckConfiguration
-
-Configuration.this.PropertyCheckConfig => Configuration.this.PropertyCheckConfiguration
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Unit) => java.io.PrintWriter
-
-(=> Unit) => java.io.PrintWriter
-6 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-Boolean => Int
-
-Boolean => Int
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }],String,Array[String]]
-
-scala.collection.generic.CanBuildFrom[Array[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }],String,Array[String]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[(java.lang.annotation.Annotation, Class[?0]) forSome { type ?0 <: java.lang.annotation.Annotation }],String,Array[String]]->scala.reflect.ClassTag[String]
-
-
-
-
-
-scala.reflect.ClassTag[org.scalatest.events.Event]
-
-scala.reflect.ClassTag[org.scalatest.events.Event]
-2 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-12 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N), Int),That]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Array[Byte] => ?{def map: ?}
-
-Array[Byte] => ?{def map: ?}
-2 times = 3ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-Array[Int] => Array[Class[_]]
-
-Array[Int] => Array[Class[_]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[scala.concurrent.Future[(T, Int, scala.util.Try[ASSERTION])]],(T, Int, scala.util.Try[ASSERTION]),IndexedSeq[(T, Int, scala.util.Try[ASSERTION])]]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[scala.concurrent.Future[(T, Int, scala.util.Try[ASSERTION])]],(T, Int, scala.util.Try[ASSERTION]),IndexedSeq[(T, Int, scala.util.Try[ASSERTION])]]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndBeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.AndBeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-((Any => Nothing, Any => Nothing)) => scala.util.Try[Throwable] => scala.util.Try[?S]
-
-((Any => Nothing, Any => Nothing)) => scala.util.Try[Throwable] => scala.util.Try[?S]
-1 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T]
-1 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T]->TC1[T]
-
-
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-stackTraces.type => ?{def map: ?}
-
-stackTraces.type => ?{def map: ?}
-1 times = 1ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndNotWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.AndNotWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-Array[Short] => Array[Class[_]]
-
-Array[Short] => Array[Class[_]]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Boolean) => Double
-
-(=> Boolean) => Double
-4 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.Matcher[T]
-4 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.awt.PopupMenu
-
-((Nothing, Nothing)) => java.awt.PopupMenu
-30 times = 3ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P)
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrContainWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.OrContainWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Array[Short] => scala.collection.GenTraversableOnce[?]
-
-Array[Short] => scala.collection.GenTraversableOnce[?]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Tuple2[Int, _]],Any,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Tuple2[Int, _]],Any,That]
-1 times = 1ms
-
-
-
-(=> Map[String,SuperEngine.this.TestLeaf]) => ?{def +=: ?}
-
-(=> Map[String,SuperEngine.this.TestLeaf]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Unit => Array[Byte]
-
-Unit => Array[Byte]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-String => ?{def headOption: ?}
-
-String => ?{def headOption: ?}
-1 times = 16ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => $u.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => $u.Symbol
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-36 times = 1ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> Array[Float]) => Array[Any]
-
-(=> Array[Float]) => Array[Any]
-521 times = 18ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-16 times = 1ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Unit => java.net.Proxy
-
-Unit => java.net.Proxy
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],org.scalatest.Tag,That]
-
-scala.collection.generic.CanBuildFrom[Array[String],org.scalatest.Tag,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[String],org.scalatest.Tag,That]->scala.reflect.ClassTag[org.scalatest.Tag]
-
-
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> Array[Double]) => Array[sbt.testing.Fingerprint]
-
-(=> Array[Double]) => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> Unit) => StringBuilder
-
-(=> Unit) => StringBuilder
-14 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[org.scalatest.tools.NestedSuiteParam],(String, scala.collection.immutable.Map[String,scala.collection.immutable.Set[String]]),scala.collection.GenTraversableOnce[(String, Map[String,Set[String]])]]
-
-scala.collection.generic.CanBuildFrom[Array[org.scalatest.tools.NestedSuiteParam],(String, scala.collection.immutable.Map[String,scala.collection.immutable.Set[String]]),scala.collection.GenTraversableOnce[(String, Map[String,Set[String]])]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[org.scalatest.tools.NestedSuiteParam],(String, scala.collection.immutable.Map[String,scala.collection.immutable.Set[String]]),scala.collection.GenTraversableOnce[(String, Map[String,Set[String]])]]->DummyImplicit
-
-
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[org.scalatest.tools.ReporterConfigParam]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[org.scalatest.tools.ReporterConfigParam]) => ?{def +=: ?}
-22 times = 1ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, Any)],String,That]
-
-scala.collection.generic.CanBuildFrom[List[(String, Any)],String,That]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-4 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrHaveWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.OrHaveWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> Unit) => java.awt.Rectangle
-
-(=> Unit) => java.awt.Rectangle
-5 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H)) => asserting.Result
-
-((A, B, C, D, E, F, G, H)) => asserting.Result
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndHaveWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.AndHaveWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndContainWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.AndContainWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.io.File
-
-((Nothing, Nothing)) => java.io.File
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-suiteTags.type => ?{def size: ?}
-
-suiteTags.type => ?{def size: ?}
-1 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => javax.swing.Icon
-
-(=> (Nothing, Nothing)) => javax.swing.Icon
-12 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Array[Double] => Array[Class[_]]
-
-Array[Double] => Array[Class[_]]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.reflect.ClassTag[Any]
-
-scala.reflect.ClassTag[Any]
-524 times = 209ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F)) => asserting.Result
-
-(=> (A, B, C, D, E, F)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.events.RecordableEvent],Vector[org.scalatest.tools.Fragment],That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.events.RecordableEvent],Vector[org.scalatest.tools.Fragment],That]
-1 times = 1ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> scala.collection.immutable.Stream[A]) => ?{def #::: ?}
-
-(=> scala.collection.immutable.Stream[A]) => ?{def #::: ?}
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-(=> Int) => Byte
-
-(=> Int) => Byte
-4 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(T, Int, scala.util.Try[ASSERTION])],(Int, T),IndexedSeq[(Int, T)]]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(T, Int, scala.util.Try[ASSERTION])],(Int, T),IndexedSeq[(Int, T)]]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Array[Char]) => Array[org.scalatools.testing.Fingerprint]
-
-(=> Array[Char]) => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Boolean) => Float
-
-(=> Boolean) => Float
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-Double => Boolean
-
-Double => Boolean
-4 times = 0ms
-
-
-
-String('| <test testName=\'$testName$\'>\n | <previous num=\'$previousNum$\' average=\'$previousAverage$\'/>\n |$durations$ </test>\n |') => ?{def stripMargin: ?}
-
-String('| <test testName='$testName$'>
- | <previous num='$previousNum$' average='$previousAverage$'/>
- |$durations$ </test>
- |') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Long) => Char
-
-(=> Long) => Char
-4 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncFeatureSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncFeatureSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-6 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => String
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => String
-15 times = 15ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2) => ?P
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Array[Thread]
-
-(=> (Nothing, Nothing)) => Array[Thread]
-1 times = 0ms
-
-
-
-(=> Boolean) => Byte
-
-(=> Boolean) => Byte
-4 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D)],((A, B, C, D), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D)],((A, B, C, D), Int),That]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-40 times = 3ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-80 times = 2ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[Class[_]]
-
-scala.reflect.ClassTag[Class[_]]
-1 times = 0ms
-
-
-
-java.util.Set[java.util.Map.Entry[K,V]] => ?{def asScala: ?}
-
-java.util.Set[java.util.Map.Entry[K,V]] => ?{def asScala: ?}
-3 times = 2ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G)],((A, B, C, D, E, F, G), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G)],((A, B, C, D, E, F, G), Int),That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-2 times = 0ms
-
-
-
-Boolean => Byte
-
-Boolean => Byte
-4 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => (T with String => org.scalatest.matchers.MatchResult)
-
-(=> Matcher.this.AndContainWord) => (T with String => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-org.scalactic.anyvals.PosZInt => Double
-
-org.scalactic.anyvals.PosZInt => Double
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 178ms
-
-
-
-String('droptestpending') => ?{def ->: ?}
-
-String('droptestpending') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(T, Int, scala.util.Try[ASSERTION])],String,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(T, Int, scala.util.Try[ASSERTION])],String,That]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> IndexedSeq[(Int, E, Throwable)]) => IndexedSeq[(Int, E, Throwable)]
-
-(=> IndexedSeq[(Int, E, Throwable)]) => IndexedSeq[(Int, E, Throwable)]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> String) => Long
-
-(=> String) => Long
-2 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)) => asserting.Result
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[() => Unit],() => Unit,IndexedSeq[() => Unit]]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[() => Unit],() => Unit,IndexedSeq[() => Unit]]
-1 times = 1ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-Boolean => Float
-
-Boolean => Float
-4 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Class[_]
-
-(=> (Nothing, Nothing)) => Class[_]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with U]
-1 times = 125ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with U]->TC1[T]
-
-
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],scala.xml.Elem,Any]
-
-scala.collection.generic.CanBuildFrom[List[String],scala.xml.Elem,Any]
-4 times = 3ms
-
-
-
-s.type => ?{def exists: ?}
-
-s.type => ?{def exists: ?}
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],org.scalatest.tools.Memento,That]
-
-scala.collection.generic.CanBuildFrom[List[String],org.scalatest.tools.Memento,That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-2 times = 0ms
-
-
-
-(=> Array[Short]) => Array[org.scalatools.testing.Fingerprint]
-
-(=> Array[Short]) => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Array[Short] => Array[String]
-
-Array[Short] => Array[String]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-Double => Byte
-
-Double => Byte
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => Option[String]
-
-(=> Any => Nothing) => Option[String]
-83 times = 5ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-args.type => ?{def iterator: ?}
-
-args.type => ?{def iterator: ?}
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Float => Long
-
-Float => Long
-34 times = 1ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-String => ?{def contains(x$1: ? >: Char('.')): ?}
-
-String => ?{def contains(x$1: ? >: Char('.')): ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-96 times = 4ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> Array[Boolean]) => Array[Any]
-
-(=> Array[Boolean]) => Array[Any]
-521 times = 18ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Char('\n')) => String
-
-(=> Char('
-')) => String
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-80 times = 5ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Any],String,That]
-
-scala.collection.generic.CanBuildFrom[List[Any],String,That]
-1 times = 1ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Array[(sbt.testing.TaskDef, Framework.this.ScalaTestTask)] => ?{def withFilter: ?}
-
-Array[(sbt.testing.TaskDef, Framework.this.ScalaTestTask)] => ?{def withFilter: ?}
-1 times = 1ms
-
-
-
-Char => ?{def toLower: ?}
-
-Char => ?{def toLower: ?}
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-leftArray.type => ?{def deep: ?}
-
-leftArray.type => ?{def deep: ?}
-3 times = 19ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-Array[Float] => Array[Object]
-
-Array[Float] => Array[Object]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-TYPECLASS2[V]
-
-TYPECLASS2[V]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E, Throwable)],(Int, E, Throwable),That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E, Throwable)],(Int, E, Throwable),That]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Any, Class[_])],Any,That]
-
-scala.collection.generic.CanBuildFrom[List[(Any, Class[_])],Any,That]
-1 times = 1ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Byte => Char
-
-Byte => Char
-4 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with AnyRef]
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with AnyRef]->TC1[T]
-
-
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Null <:< String
-
-Null <:< String
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[sbt.testing.Selector]
-
-scala.reflect.ClassTag[sbt.testing.Selector]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-Array[Double] => Array[Object]
-
-Array[Double] => Array[Object]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Unit) => Throwable
-
-(=> Unit) => Throwable
-32 times = 1ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ?A1 => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ?A1 => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosZInt],org.scalactic.anyvals.PosZInt,List[org.scalactic.anyvals.PosZInt]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosZInt],org.scalactic.anyvals.PosZInt,List[org.scalactic.anyvals.PosZInt]]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.enablers.Existence[T]
-
-org.scalatest.enablers.Existence[T]
-1 times = 0ms
-
-
-
-TC2[V]
-
-TC2[V]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-String('durations') => ?{def ->: ?}
-
-String('durations') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Float) => T
-
-(=> Float) => T
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> Array[Boolean]) => Array[org.scalatools.testing.Fingerprint]
-
-(=> Array[Boolean]) => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory7[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[String]
-
-(=> Array[Byte]) => Array[String]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(Boolean, Boolean)],Boolean,List[Boolean]]
-
-scala.collection.generic.CanBuildFrom[List[(Boolean, Boolean)],Boolean,List[Boolean]]
-2 times = 1ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.Matcher[T with AnyRef with U]->org.scalatest.enablers.Readability[T with AnyRef with U]
-
-
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteParam],String,That]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteParam],String,That]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-64 times = 3ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-12 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[AnyRef] => (T with U => org.scalatest.matchers.MatchResult)
-
-org.scalatest.matchers.Matcher[AnyRef] => (T with U => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-12 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-Array[java.io.File] => ?{def foreach: ?}
-
-Array[java.io.File] => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteParam],org.scalatest.tools.SuiteConfig,That]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteParam],org.scalatest.tools.SuiteConfig,That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => => String
-
-((Nothing, Nothing, Nothing)) => => String
-278 times = 22ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],org.scalatest.tools.Memento,List[org.scalatest.tools.Memento]]
-
-scala.collection.generic.CanBuildFrom[List[String],org.scalatest.tools.Memento,List[org.scalatest.tools.Memento]]
-1 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-ConductorFixture.this.PatienceConfig
-
-ConductorFixture.this.PatienceConfig
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4) => ?P
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4) => ?P
-1 times = 0ms
-
-
-
-(=> HtmlReporter.this.type) => ?{def eventList_=(x$1: ? >: scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]): scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]}
-
-(=> HtmlReporter.this.type) => ?{def eventList_=(x$1: ? >: scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]): scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-scala.math.Ordering[org.scalatest.events.Ordinal]
-
-scala.math.Ordering[org.scalatest.events.Ordinal]
-2 times = 4ms
-
-
-
-scala.math.Ordering[org.scalatest.events.Ordinal]->org.scalatest.events.Ordinal => Comparable[org.scalatest.events.Ordinal]
-
-
-
-
-
-java.util.Comparator[org.scalatest.events.Ordinal]
-
-java.util.Comparator[org.scalatest.events.Ordinal]
-2 times = 0ms
-
-
-
-scala.math.Ordering[org.scalatest.events.Ordinal]->java.util.Comparator[org.scalatest.events.Ordinal]
-
-
-
-
-
-(=> ExistWord.this.matcherFactory.AndContainWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.AndContainWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T]
-4 times = 21ms
-
-
-
-org.scalatest.enablers.Emptiness[T]
-
-org.scalatest.enablers.Emptiness[T]
-4 times = 18ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T]->org.scalatest.enablers.Emptiness[T]
-
-
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-B => org.scalacheck.util.Pretty
-
-B => org.scalacheck.util.Pretty
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P)
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-org.scalactic.anyvals.PosZDouble => Double
-
-org.scalactic.anyvals.PosZDouble => Double
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-Array[org.scalatest.tools.NestedSuiteElement] => ?{def foreach: ?}
-
-Array[org.scalatest.tools.NestedSuiteElement] => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 3ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.Matcher[T with AnyRef with U]->org.scalatest.enablers.Writability[T with AnyRef with U]
-
-
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E)],((A, B, C, D, E), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E)],((A, B, C, D, E), Int),That]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndBeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.AndBeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-String('| <suite suiteId=\'$suiteId$\' suiteName=\'$suiteName$\'>\n |$tests$ </suite>\n |') => ?{def stripMargin: ?}
-
-String('| <suite suiteId='$suiteId$' suiteName='$suiteName$'>
- |$tests$ </suite>
- |') => ?{def stripMargin: ?}
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[String] => ?{def +=: ?}
-
-scala.collection.immutable.Set[String] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[StackTraceElement],String,That]
-
-scala.collection.generic.CanBuildFrom[Array[StackTraceElement],String,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[StackTraceElement],String,That]->scala.reflect.ClassTag[String]
-
-
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[(T, Int)],scala.concurrent.Future[(T, Int, scala.util.Try[ASSERTION])],IndexedSeq[scala.concurrent.Future[(T, Int, scala.util.Try[ASSERTION])]]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[(T, Int)],scala.concurrent.Future[(T, Int, scala.util.Try[ASSERTION])],IndexedSeq[scala.concurrent.Future[(T, Int, scala.util.Try[ASSERTION])]]]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V)) => asserting.Result
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P)
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteParam],org.scalatest.tools.SuiteConfig,List[org.scalatest.tools.SuiteConfig]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteParam],org.scalatest.tools.SuiteConfig,List[org.scalatest.tools.SuiteConfig]]
-1 times = 0ms
-
-
-
-asserting.Result => asserting.Result
-
-asserting.Result => asserting.Result
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-HtmlReporter.this.type => ?{def eventList_=(x$1: ? >: scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]): ?}
-
-HtmlReporter.this.type => ?{def eventList_=(x$1: ? >: scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]): ?}
-1 times = 0ms
-
-
-
-option.type => ?{def ->: ?}
-
-option.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-String => scala.collection.GenTraversable[?]
-
-String => scala.collection.GenTraversable[?]
-7 times = 2ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> Unit) => org.openqa.selenium.chrome.ChromeDriverService
-
-(=> Unit) => org.openqa.selenium.chrome.ChromeDriverService
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-96 times = 5ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Array[Float] => Array[org.scalatools.testing.Fingerprint]
-
-Array[Float] => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-Array[Char] => Array[Class[_]]
-
-Array[Char] => Array[Class[_]]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.io.Writer
-
-(=> (Nothing, Nothing)) => java.io.Writer
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E, Throwable)],(Int, E, Throwable),IndexedSeq[(Int, E, Throwable)]]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, E, Throwable)],(Int, E, Throwable),IndexedSeq[(Int, E, Throwable)]]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-32 times = 1ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => javax.swing.Action
-
-((Nothing, Nothing)) => javax.swing.Action
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> org.scalatest.matchers.MatcherFactory7[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-4 times = 0ms
-
-
-
-org.scalactic.Every[E] => scala.collection.GenTraversable[E]
-
-org.scalactic.Every[E] => scala.collection.GenTraversable[E]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],List[String],List[List[String]]]
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],List[String],List[List[String]]]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Any) => T
-
-(=> Any) => T
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],String,That]
-1 times = 1ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[?U] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.matchers.Matcher[?U] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> Unit) => org.scalatest.concurrent.PatienceConfiguration.Timeout
-
-(=> Unit) => org.scalatest.concurrent.PatienceConfiguration.Timeout
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[c.Tree],c.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[c.Tree],c.Tree,That]
-1 times = 7ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-Long => T
-
-Long => T
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Conductors.this.PatienceConfig
-
-Conductors.this.PatienceConfig
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.awt.Dimension
-
-(=> (Nothing, Nothing)) => java.awt.Dimension
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[Any]
-
-(=> Array[Byte]) => Array[Any]
-521 times = 18ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-org.scalatest.matchers.MatcherFactory8[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[sbt.testing.Fingerprint]
-
-scala.reflect.ClassTag[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Unit => context.universe.FlagSet
-
-Unit => context.universe.FlagSet
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Unit) => DiagrammedExprMacro.this.context.universe.Type
-
-(=> Unit) => DiagrammedExprMacro.this.context.universe.Type
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Char) => Boolean
-
-(=> Char) => Boolean
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-12 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[A],(A, Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[A],(A, Int),That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> Array[Int]) => Array[Object]
-
-(=> Array[Int]) => Array[Object]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.net.Proxy
-
-(=> (Nothing, Nothing)) => java.net.Proxy
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS] => org.scalatest.matchers.Matcher[T with U]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS] => org.scalatest.matchers.Matcher[T with U]->TC1[T]
-
-
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-Array[java.lang.reflect.Method] => ?{def withFilter: ?}
-
-Array[java.lang.reflect.Method] => ?{def withFilter: ?}
-4 times = 5ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-Array[sbt.testing.TaskDef] => ?{def ++: ?}
-
-Array[sbt.testing.TaskDef] => ?{def ++: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(String, Set[String]) <:< (String, Set[String])
-
-(String, Set[String]) <:< (String, Set[String])
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[?U] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.matchers.Matcher[?U] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-org.scalactic.anyvals.PosZInt => Int
-
-org.scalactic.anyvals.PosZInt => Int
-7 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.Suite.CHOSEN_STYLES.type => ?{def ->: ?}
-
-org.scalatest.Suite.CHOSEN_STYLES.type => ?{def ->: ?}
-3 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndHaveWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.AndHaveWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Boolean => Double
-
-Boolean => Double
-4 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => String
-
-(=> (Nothing, Nothing, Nothing)) => String
-4 times = 0ms
-
-
-
-org.scalatest.enablers.Messaging[T]
-
-org.scalatest.enablers.Messaging[T]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(() => org.scalatest.AsyncOutcome) => (AsyncWordSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(() => org.scalatest.AsyncOutcome) => (AsyncWordSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-4 times = 0ms
-
-
-
-Array[Int] => Array[sbt.testing.Fingerprint]
-
-Array[Int] => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[?U]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.matchers.Matcher[?U]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.awt.Component
-
-(=> (Nothing, Nothing)) => java.awt.Component
-30 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Stream[A] => ?{def #::: ?}
-
-scala.collection.immutable.Stream[A] => ?{def #::: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[V]
-
-scala.reflect.ClassTag[V]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Array[Long]) => Array[sbt.testing.Fingerprint]
-
-(=> Array[Long]) => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Float => T
-
-Float => T
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndBeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.AndBeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Unit => java.awt.Dimension
-
-Unit => java.awt.Dimension
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-scala.math.Ordering[java.io.File]
-
-scala.math.Ordering[java.io.File]
-1 times = 1ms
-
-
-
-scala.math.Ordering[java.io.File]->java.util.Comparator[java.io.File]
-
-
-
-
-
-java.io.File => Comparable[java.io.File]
-
-java.io.File => Comparable[java.io.File]
-1 times = 0ms
-
-
-
-scala.math.Ordering[java.io.File]->java.io.File => Comparable[java.io.File]
-
-
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-java.util.Iterator[java.util.Map.Entry[K,V]] => ?{def asScala: ?}
-
-java.util.Iterator[java.util.Map.Entry[K,V]] => ?{def asScala: ?}
-3 times = 1ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C)],((A, B, C), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C)],((A, B, C), Int),That]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndNotWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.AndNotWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2) => ?P
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2) => ?P
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingDocumenter.this.Tup],org.scalatest.events.RecordableEvent,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingDocumenter.this.Tup],org.scalatest.events.RecordableEvent,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.reflect.Method],java.lang.reflect.Method,That]
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.reflect.Method],java.lang.reflect.Method,That]
-1 times = 2ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.reflect.Method],java.lang.reflect.Method,That]->scala.reflect.ClassTag[java.lang.reflect.Method]
-
-
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Clock.this.rwLock.type => ?{def read: ?}
-
-Clock.this.rwLock.type => ?{def read: ?}
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[c.universe.Block]
-
-scala.reflect.ClassTag[c.universe.Block]
-1 times = 51ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-6 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[org.scalatools.testing.Fingerprint]
-
-scala.reflect.ClassTag[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-Int(0) => ?{def until: ?}
-
-Int(0) => ?{def until: ?}
-3 times = 2ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-4 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.io.Writer
-
-((Nothing, Nothing)) => java.io.Writer
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.Matcher[T]
-4 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-96 times = 7ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Float => Boolean
-
-Float => Boolean
-4 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-((Nothing, Nothing)) => Class[?T]
-
-((Nothing, Nothing)) => Class[?T]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => (T with AnyRef with U => org.scalatest.matchers.MatchResult)
-
-(=> Matcher.this.OrContainWord) => (T with AnyRef with U => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.matchers.Matcher[AnyRef] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-kv._1.type => ?{def ->: ?}
-
-kv._1.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[Any,org.scalatest.enablers.Existence,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> org.scalatest.matchers.MatcherFactory3[Any,org.scalatest.enablers.Existence,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[org.scalatest.tools.NestedSuiteParam],(String, scala.collection.immutable.Set[String]),scala.collection.GenTraversableOnce[(String, Set[String])]]
-
-scala.collection.generic.CanBuildFrom[Array[org.scalatest.tools.NestedSuiteParam],(String, scala.collection.immutable.Set[String]),scala.collection.GenTraversableOnce[(String, Set[String])]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[org.scalatest.tools.NestedSuiteParam],(String, scala.collection.immutable.Set[String]),scala.collection.GenTraversableOnce[(String, Set[String])]]->DummyImplicit
-
-
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-Short => Char
-
-Short => Char
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.enablers.Timed[org.scalatest.Outcome]
-
-org.scalatest.enablers.Timed[org.scalatest.Outcome]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U)) => asserting.Result
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-stackTrace.type => ?{def indexWhere: ?}
-
-stackTrace.type => ?{def indexWhere: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-Short => T
-
-Short => T
-2 times = 0ms
-
-
-
-Float => Byte
-
-Float => Byte
-4 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,scala.collection.GenTraversableOnce[String]]
-
-scala.collection.generic.CanBuildFrom[List[String],String,scala.collection.GenTraversableOnce[String]]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[org.scalatest.events.Event],org.scalatest.events.Event,scala.collection.mutable.ListBuffer[org.scalatest.events.Event]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ListBuffer[org.scalatest.events.Event],org.scalatest.events.Event,scala.collection.mutable.ListBuffer[org.scalatest.events.Event]]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-Array[String] => ?{def toSet: ?}
-
-Array[String] => ?{def toSet: ?}
-1 times = 1ms
-
-
-
-constructorList.type => ?{def find: ?}
-
-constructorList.type => ?{def find: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-org.scalatest.matchers.MatcherFactory4[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-36 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-(=> Float) => Boolean
-
-(=> Float) => Boolean
-4 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Int => T
-
-Int => T
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[Class[_]]
-
-(=> Array[Byte]) => Array[Class[_]]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => String
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => String
-15 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-Unit => org.openqa.selenium.Capabilities
-
-Unit => org.openqa.selenium.Capabilities
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[D]
-
-org.scalacheck.Shrink[D]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-Long => Char
-
-Long => Char
-4 times = 0ms
-
-
-
-((Nothing, Nothing)) => Runnable
-
-((Nothing, Nothing)) => Runnable
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> (Any => Nothing, Nothing, Nothing, Nothing)) => Int
-
-(=> (Any => Nothing, Nothing, Nothing, Nothing)) => Int
-17 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-String => ?{def replaceAllLiterally: ?}
-
-String => ?{def replaceAllLiterally: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Stream[Int] => ?{def #::: ?}
-
-scala.collection.immutable.Stream[Int] => ?{def #::: ?}
-4 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.Ident]
-
-scala.reflect.ClassTag[context.universe.Ident]
-1 times = 25ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Array[Char]) => Array[Class[_]]
-
-(=> Array[Char]) => Array[Class[_]]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-String('nocolor') => ?{def ->: ?}
-
-String('nocolor') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.Suite,scala.collection.immutable.IndexedSeq[org.scalatest.Suite]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.Suite,scala.collection.immutable.IndexedSeq[org.scalatest.Suite]]
-3 times = 2ms
-
-
-
-(=> Unit) => java.net.Proxy
-
-(=> Unit) => java.net.Proxy
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-SbtLogInfoReporter.this.loggers.type => ?{def foreach: ?}
-
-SbtLogInfoReporter.this.loggers.type => ?{def foreach: ?}
-2 times = 2ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-e.type => ?{def indexOf: ?}
-
-e.type => ?{def indexOf: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Array[Boolean]) => Array[Class[_]]
-
-(=> Array[Boolean]) => Array[Class[_]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingInformer.this.Tup],org.scalatest.events.RecordableEvent,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingInformer.this.Tup],org.scalatest.events.RecordableEvent,That]
-1 times = 24ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-2 times = 0ms
-
-
-
-(=> Unit) => java.util.Collection[_ <: org.scalatest.Status]
-
-(=> Unit) => java.util.Collection[_ <: org.scalatest.Status]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[String]],String,That]
-
-scala.collection.generic.CanBuildFrom[List[List[String]],String,That]
-1 times = 1ms
-
-
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P)
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P)
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingNotifier.this.Tup],org.scalatest.events.NoteProvided,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.ArrayBuffer[PathMessageRecordingNotifier.this.Tup],org.scalatest.events.NoteProvided,That]
-1 times = 4ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrNotWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.OrNotWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-left.type => ?{def deep: ?}
-
-left.type => ?{def deep: ?}
-1 times = 2ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 6ms
-
-
-
-org.scalatest.enablers.Emptiness[T with AnyRef with U]
-
-org.scalatest.enablers.Emptiness[T with AnyRef with U]
-1 times = 5ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness] => org.scalatest.matchers.Matcher[T with AnyRef with U]->org.scalatest.enablers.Emptiness[T with AnyRef with U]
-
-
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.RecordableEvent,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.RecordableEvent,That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-4 times = 0ms
-
-
-
-javaFuture.type => ?{def isCanceled: ?}
-
-javaFuture.type => ?{def isCanceled: ?}
-1 times = 0ms
-
-
-
-Array[sbt.testing.Selector] => ?{def ++: ?}
-
-Array[sbt.testing.Selector] => ?{def ++: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-ResultOfNotWordForAny.this.left.type => ?{def endsWith: ?}
-
-ResultOfNotWordForAny.this.left.type => ?{def endsWith: ?}
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => ?A1 => ?P
-
-((Nothing, Nothing, Nothing)) => ?A1 => ?P
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-Array[Double] => Array[String]
-
-Array[Double] => Array[String]
-133 times = 11ms
-
-
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFreeSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFreeSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-4 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Int) => ?{def -=: ?}
-
-(=> Int) => ?{def -=: ?}
-2 times = 0ms
-
-
-
-(=> scala.collection.GenTraversableOnce[B]) => scala.collection.GenTraversableOnce[(String, ?V1)]
-
-(=> scala.collection.GenTraversableOnce[B]) => scala.collection.GenTraversableOnce[(String, ?V1)]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> (Any => Nothing, Any => Nothing)) => (scala.util.Try[Throwable] => scala.util.Try[?S])
-
-(=> (Any => Nothing, Any => Nothing)) => (scala.util.Try[Throwable] => scala.util.Try[?S])
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Array[sbt.testing.TaskDef] => scala.collection.GenTraversableOnce[?]
-
-Array[sbt.testing.TaskDef] => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-Vector[org.scalatest.tools.Fragment] => scala.collection.GenTraversableOnce[org.scalatest.tools.Fragment]
-
-Vector[org.scalatest.tools.Fragment] => scala.collection.GenTraversableOnce[org.scalatest.tools.Fragment]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[Int]
-
-(=> Array[Byte]) => Array[Int]
-1 times = 0ms
-
-
-
-(=> Unit) => org.openqa.selenium.ie.InternetExplorerDriverService
-
-(=> Unit) => org.openqa.selenium.ie.InternetExplorerDriverService
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-array.type => ?{def size: ?}
-
-array.type => ?{def size: ?}
-1 times = 4ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalactic.Prettifier
-
-org.scalactic.Prettifier
-430 times = 134ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-TC9[T]
-
-TC9[T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Array[Double] => Array[Int]
-
-Array[Double] => Array[Int]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3) => ?P
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.MethodType]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.MethodType]
-1 times = 4ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-2 times = 0ms
-
-
-
-scala.reflect.ClassTag[org.scalatest.Suite]
-
-scala.reflect.ClassTag[org.scalatest.Suite]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Tuple2[Int, _]],Int,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Tuple2[Int, _]],Int,That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> Long) => Byte
-
-(=> Long) => Byte
-4 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-Array[Byte] => Array[Int]
-
-Array[Byte] => Array[Int]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-12 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndHaveWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.AndHaveWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Array[String] => ?{def map: ?}
-
-Array[String] => ?{def map: ?}
-4 times = 4ms
-
-
-
-((Nothing, Nothing)) => Throwable
-
-((Nothing, Nothing)) => Throwable
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],java.io.File,That]
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],java.io.File,That]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[ElementCount$3],ElementCount$3,IndexedSeq[ElementCount$3]]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[ElementCount$3],ElementCount$3,IndexedSeq[ElementCount$3]]
-4 times = 2ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4) => ?P
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Int => ?{def toHexString: ?}
-
-Int => ?{def toHexString: ?}
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Map[A,B]],(A, B),That]
-
-scala.collection.generic.CanBuildFrom[List[Map[A,B]],(A, B),That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Array[Int] => Array[Any]
-
-Array[Int] => Array[Any]
-521 times = 32ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Array[Char] => Array[Int]
-
-Array[Char] => Array[Int]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-candidateMethods.type => ?{def find: ?}
-
-candidateMethods.type => ?{def find: ?}
-4 times = 4ms
-
-
-
-(=> (Nothing, Nothing)) => java.awt.Dialog
-
-(=> (Nothing, Nothing)) => java.awt.Dialog
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Array[Double] => Array[org.scalatools.testing.Fingerprint]
-
-Array[Double] => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Array[Char] => Array[String]
-
-Array[Char] => Array[String]
-133 times = 11ms
-
-
-
-(=> Unit) => java.awt.Point
-
-(=> Unit) => java.awt.Point
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Ident]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.Ident]
-1 times = 19ms
-
-
-
-(=> (A, B, C, D, E, F, G, H)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H)) => asserting.Result
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P
-1 times = 0ms
-
-
-
-String => ?{def stripMargin: ?}
-
-String => ?{def stripMargin: ?}
-7 times = 4ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Unit) => Array[Byte]
-
-(=> Unit) => Array[Byte]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-48 times = 3ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3) => ?P)
-
-(=> (Nothing, Nothing)) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-ThreadGroup => ?{def getThreads: ?}
-
-ThreadGroup => ?{def getThreads: ?}
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[Object]
-
-(=> Array[Byte]) => Array[Object]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Unit => java.io.FilenameFilter
-
-Unit => java.io.FilenameFilter
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-16 times = 1ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-48 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-12 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Array[Char] => Array[Any]
-
-Array[Char] => Array[Any]
-521 times = 28ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-16 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-TC3[V]
-
-TC3[V]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Any],AnyRef,That]
-
-scala.collection.generic.CanBuildFrom[Seq[Any],AnyRef,That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-collection.type => ?{def toVector: ?}
-
-collection.type => ?{def toVector: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Unit => org.scalatest.exceptions.TestCanceledException
-
-Unit => org.scalatest.exceptions.TestCanceledException
-1 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[sbt.testing.Fingerprint]
-
-(=> Array[Byte]) => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q), Int),That]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Array[String] => ?{def isEmpty: ?}
-
-Array[String] => ?{def isEmpty: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[A],A,List[A]]
-
-scala.collection.generic.CanBuildFrom[List[A],A,List[A]]
-1 times = 2ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 1ms
-
-
-
-Unit => org.apache.tools.ant.Task
-
-Unit => org.apache.tools.ant.Task
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Int) => Short
-
-(=> Int) => Short
-4 times = 0ms
-
-
-
-(=> Char('.')) => CharSequence
-
-(=> Char('.')) => CharSequence
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],org.scalatest.tools.SuiteParam,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],org.scalatest.tools.SuiteParam,That]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T]
-12 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Option[Throwable]],Throwable,That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Option[Throwable]],Throwable,That]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.io.File
-
-(=> (Nothing, Nothing)) => java.io.File
-3 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[c.Tree],c.Tree,List[c.Tree]]
-
-scala.collection.generic.CanBuildFrom[List[c.Tree],c.Tree,List[c.Tree]]
-1 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Array[Long] => Array[Object]
-
-Array[Long] => Array[Object]
-1 times = 0ms
-
-
-
-org.scalactic.anyvals.PosZInt => Long
-
-org.scalactic.anyvals.PosZInt => Long
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.awt.image.ImageProducer
-
-((Nothing, Nothing)) => java.awt.image.ImageProducer
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-2 times = 0ms
-
-
-
-Array[sbt.testing.TaskDef] => ?{def distinct: ?}
-
-Array[sbt.testing.TaskDef] => ?{def distinct: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> org.scalatest.matchers.MatcherFactory4[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-x$6.type => ?{def ->: ?}
-
-x$6.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-16 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrHaveWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.OrHaveWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with U]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> List[Any]) => ?{def ::=: ?}
-
-(=> List[Any]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.GenericApply, Int)],List[DiagrammedExprMacro.this.context.universe.Tree],List[List[DiagrammedExprMacro.this.context.universe.Tree]]]
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.GenericApply, Int)],List[DiagrammedExprMacro.this.context.universe.Tree],List[List[DiagrammedExprMacro.this.context.universe.Tree]]]
-1 times = 1ms
-
-
-
-(=> Array[Float]) => Array[sbt.testing.Fingerprint]
-
-(=> Array[Float]) => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Unit) => javax.swing.Icon
-
-(=> Unit) => javax.swing.Icon
-1 times = 0ms
-
-
-
-selectors.type => ?{def foreach: ?}
-
-selectors.type => ?{def foreach: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory5[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, scala.collection.immutable.Set[String]),That]
-
-scala.collection.generic.CanBuildFrom[List[String],(String, scala.collection.immutable.Set[String]),That]
-1 times = 1ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, org.scalacheck.Prop.Arg[Any])],org.scalacheck.Prop.Arg[Any],That]
-
-scala.collection.generic.CanBuildFrom[List[(String, org.scalacheck.Prop.Arg[Any])],org.scalacheck.Prop.Arg[Any],That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> (Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit)) => String
-
-(=> (Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit)) => String
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-s.type => ?{def toInt: ?}
-
-s.type => ?{def toInt: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Map[String,org.scalatest.Suite]) => ?{def +=: ?}
-
-(=> Map[String,org.scalatest.Suite]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P), Int),That]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Double => Short
-
-Double => Short
-4 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Unit => java.util.Collection[_ <: String]
-
-Unit => java.util.Collection[_ <: String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[java.io.File],String,List[String]]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-Array[Unit] => Array[Any]
-
-Array[Unit] => Array[Any]
-521 times = 39ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => org.scalatest.events.Event
-
-((Nothing, Nothing, Nothing, Nothing)) => org.scalatest.events.Event
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => org.apache.tools.ant.Project
-
-((Nothing, Nothing)) => org.apache.tools.ant.Project
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.TestSpec],String,That]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.TestSpec],String,That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P
-1 times = 0ms
-
-
-
-Array[StackTraceElement] => ?{def map: ?}
-
-Array[StackTraceElement] => ?{def map: ?}
-1 times = 1ms
-
-
-
-org.scalactic.Equality[T with U]
-
-org.scalactic.Equality[T with U]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => java.util.Map[_ <: java.text.AttributedCharacterIterator.Attribute, _]
-
-((Nothing, Nothing, Nothing)) => java.util.Map[_ <: java.text.AttributedCharacterIterator.Attribute, _]
-7 times = 1ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-32 times = 3ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory9[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],String,Set[String]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],String,Set[String]]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Boolean) => Int
-
-(=> Boolean) => Int
-4 times = 0ms
-
-
-
-(=> Array[Unit]) => Array[sbt.testing.Fingerprint]
-
-(=> Array[Unit]) => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-org.scalacheck.Arbitrary[F]
-
-org.scalacheck.Arbitrary[F]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Ordinal.this.stamps.type => ?{def zipWithIndex: ?}
-
-Ordinal.this.stamps.type => ?{def zipWithIndex: ?}
-2 times = 2ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalacheck.Shrink[E]
-
-org.scalacheck.Shrink[E]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Int) => ?{def +=: ?}
-
-(=> Int) => ?{def +=: ?}
-75 times = 3ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Map[String,org.scalatest.Suite] => ?{def +=: ?}
-
-Map[String,org.scalatest.Suite] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Long => Boolean
-
-Long => Boolean
-4 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-Array[Short] => Array[Int]
-
-Array[Short] => Array[Int]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncFreeSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncFreeSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RandomTestOrder.this.DeferredSuiteRun],RandomTestOrder.this.DeferredSuiteRun,List[RandomTestOrder.this.DeferredSuiteRun]]
-
-scala.collection.generic.CanBuildFrom[List[RandomTestOrder.this.DeferredSuiteRun],RandomTestOrder.this.DeferredSuiteRun,List[RandomTestOrder.this.DeferredSuiteRun]]
-1 times = 1ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFunSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFunSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-8 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-sortedSuiteList.type => ?{def map: ?}
-
-sortedSuiteList.type => ?{def map: ?}
-1 times = 0ms
-
-
-
-(=> Long) => Short
-
-(=> Long) => Short
-4 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrNotWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.OrNotWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalactic.source.Position
-
-org.scalactic.source.Position
-434 times = 191ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Array[Unit] => Array[org.scalatools.testing.Fingerprint]
-
-Array[Unit] => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> Array[Int]) => Array[String]
-
-(=> Array[Int]) => Array[String]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosInt],org.scalactic.anyvals.PosInt,List[org.scalactic.anyvals.PosInt]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosInt],org.scalactic.anyvals.PosInt,List[org.scalactic.anyvals.PosInt]]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],(String, scala.collection.immutable.Set[String]),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Set[String],(String, scala.collection.immutable.Set[String]),That]
-1 times = 4ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-D => org.scalacheck.util.Pretty
-
-D => org.scalacheck.util.Pretty
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-DashboardReporter.this.durationsDir.type => ?{def +: ?}
-
-DashboardReporter.this.durationsDir.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-array.type => ?{def head: ?}
-
-array.type => ?{def head: ?}
-1 times = 2ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Class[?T]
-
-(=> (Nothing, Nothing)) => Class[?T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Array[(String, scala.collection.immutable.Set[String])] => scala.collection.GenTraversableOnce[(?, ?)]
-
-Array[(String, scala.collection.immutable.Set[String])] => scala.collection.GenTraversableOnce[(?, ?)]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.reflect.ClassTag[c.universe.ValDef]
-
-scala.reflect.ClassTag[c.universe.ValDef]
-1 times = 181ms
-
-
-
-Ordinal.this.stamps.type => ?{def deep: ?}
-
-Ordinal.this.stamps.type => ?{def deep: ?}
-1 times = 1ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-TC2[T]
-
-TC2[T]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> IndexedSeq[(Int, T)]) => IndexedSeq[(Int, T)]
-
-(=> IndexedSeq[(Int, T)]) => IndexedSeq[(Int, T)]
-1 times = 0ms
-
-
-
-Unit => java.util.Collection[_ <: org.scalatest.events.ExceptionalEvent]
-
-Unit => java.util.Collection[_ <: org.scalatest.events.ExceptionalEvent]
-1 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-32 times = 2ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Array[Class[_]] => ?{def isEmpty: ?}
-
-Array[Class[_]] => ?{def isEmpty: ?}
-1 times = 2ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Double) => Long
-
-(=> Double) => Long
-32 times = 1ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-2 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Array[Boolean] => Array[sbt.testing.Fingerprint]
-
-Array[Boolean] => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5) => ?P
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-4 times = 0ms
-
-
-
-(=> Unit) => java.awt.Dimension
-
-(=> Unit) => java.awt.Dimension
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-((Nothing, Nothing)) => String
-
-((Nothing, Nothing)) => String
-5 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> Array[Unit]) => Array[Int]
-
-(=> Array[Unit]) => Array[Int]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => org.scalatest.words.ResultOfLengthWordApplication
-
-(=> (Nothing, Nothing)) => org.scalatest.words.ResultOfLengthWordApplication
-19 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T), Int),That]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L)) => asserting.Result
-1 times = 0ms
-
-
-
-Array[Long] => Array[Int]
-
-Array[Long] => Array[Int]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> Array[Double]) => Array[Int]
-
-(=> Array[Double]) => Array[Int]
-1 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-f.type => ?{def abs: ?}
-
-f.type => ?{def abs: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-scala.collection.immutable.IndexedSeq[org.scalatest.events.Event] => scala.collection.mutable.ListBuffer[org.scalatest.events.Event]
-
-scala.collection.immutable.IndexedSeq[org.scalatest.events.Event] => scala.collection.mutable.ListBuffer[org.scalatest.events.Event]
-12 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-Array[Unit] => Array[Object]
-
-Array[Unit] => Array[Object]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[sbt.testing.Selector],sbt.testing.Selector,Array[sbt.testing.Selector]]
-
-scala.collection.generic.CanBuildFrom[Array[sbt.testing.Selector],sbt.testing.Selector,Array[sbt.testing.Selector]]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[sbt.testing.Selector],sbt.testing.Selector,Array[sbt.testing.Selector]]->scala.reflect.ClassTag[sbt.testing.Selector]
-
-
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => DiagrammedExprMacro.this.context.universe.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => DiagrammedExprMacro.this.context.universe.Symbol
-1 times = 2ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.GenericApply]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.GenericApply]
-2 times = 15ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.AndContainWord => (T => org.scalatest.matchers.MatchResult)
-
-Matcher.this.AndContainWord => (T => org.scalatest.matchers.MatchResult)
-3 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrBeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.OrBeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[String],(String, Int),That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[String],(String, Int),That]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndHaveWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.AndHaveWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Matcher.this.AndContainWord => (T with U => org.scalatest.matchers.MatchResult)
-
-Matcher.this.AndContainWord => (T with U => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[String],String,List[String]]
-3 times = 4ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Unit => ConductorMethods.this.Conductor
-
-Unit => ConductorMethods.this.Conductor
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-ScalaTestRunner.this.summaryCounter.reminderEventsQueue.type => ?{def asScala: ?}
-
-ScalaTestRunner.this.summaryCounter.reminderEventsQueue.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => org.scalatest.events.Event
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => org.scalatest.events.Event
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Conductor.this.threadGroup.type => ?{def areAnyThreadsAlive: ?}
-
-Conductor.this.threadGroup.type => ?{def areAnyThreadsAlive: ?}
-2 times = 0ms
-
-
-
-TC5[V]
-
-TC5[V]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> Array[Float]) => Array[Class[_]]
-
-(=> Array[Float]) => Array[Class[_]]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Array[java.lang.reflect.Method] => ?{def filter: ?}
-
-Array[java.lang.reflect.Method] => ?{def filter: ?}
-4 times = 4ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncFunSuiteLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncFunSuiteLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-6 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-Int => Boolean
-
-Int => Boolean
-4 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-Array[java.lang.annotation.Annotation] => ?{def map: ?}
-
-Array[java.lang.annotation.Annotation] => ?{def map: ?}
-9 times = 13ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Unit) => String
-
-(=> Unit) => String
-124 times = 5ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncWordSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(=> () => org.scalatest.AsyncOutcome) => (AsyncWordSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-4 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-e.type => ?{def endsWith: ?}
-
-e.type => ?{def endsWith: ?}
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Boolean) => Char
-
-(=> Boolean) => Char
-4 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-IndexedSeq[(Int, E, Throwable)] => IndexedSeq[(Int, E, Throwable)]
-
-IndexedSeq[(Int, E, Throwable)] => IndexedSeq[(Int, E, Throwable)]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P
-
-((Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-Array[String] => scala.collection.GenTraversableOnce[=?String]
-
-Array[String] => scala.collection.GenTraversableOnce[=?String]
-1 times = 1ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3) => ?P
-1 times = 0ms
-
-
-
-(=> Array[Int]) => Array[org.scalatools.testing.Fingerprint]
-
-(=> Array[Int]) => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> List[Durations.this.Duration]) => ?{def ::=: ?}
-
-(=> List[Durations.this.Duration]) => ?{def ::=: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Object]
-
-scala.reflect.ClassTag[Object]
-2 times = 1ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.tools.Fragment],org.scalatest.tools.Fragment,Vector[org.scalatest.tools.Fragment]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.tools.Fragment],org.scalatest.tools.Fragment,Vector[org.scalatest.tools.Fragment]]
-7 times = 5ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> Unit) => Long
-
-(=> Unit) => Long
-100 times = 4ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-org.scalacheck.Shrink[B]
-
-org.scalacheck.Shrink[B]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> Boolean) => Long
-
-(=> Boolean) => Long
-4 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Boolean],(Boolean, Boolean),That]
-
-scala.collection.generic.CanBuildFrom[List[Boolean],(Boolean, Boolean),That]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> java.nio.channels.WritableByteChannel) => java.nio.channels.ReadableByteChannel
-
-(=> java.nio.channels.WritableByteChannel) => java.nio.channels.ReadableByteChannel
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.GenericApply, Int)],DiagrammedExprMacro.this.context.universe.ValDef,List[DiagrammedExprMacro.this.context.universe.ValDef]]
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.GenericApply, Int)],DiagrammedExprMacro.this.context.universe.ValDef,List[DiagrammedExprMacro.this.context.universe.ValDef]]
-1 times = 1ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Char('.') => CharSequence
-
-Char('.') => CharSequence
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Int) => T
-
-(=> Int) => T
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[java.net.URL]
-
-((Nothing, Nothing)) => Array[java.net.URL]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Array[E] => scala.collection.GenTraversable[E]
-
-Array[E] => scala.collection.GenTraversable[E]
-1 times = 1ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-TC9[V]
-
-TC9[V]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.concurrent.duration.Duration => scala.concurrent.duration.FiniteDuration
-
-scala.concurrent.duration.Duration => scala.concurrent.duration.FiniteDuration
-1 times = 0ms
-
-
-
-Array[java.lang.reflect.Field] => ?{def find: ?}
-
-Array[java.lang.reflect.Field] => ?{def find: ?}
-1 times = 1ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R)) => asserting.Result
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-Int => Char
-
-Int => Char
-4 times = 0ms
-
-
-
-(=> Array[Float]) => Array[org.scalatools.testing.Fingerprint]
-
-(=> Array[Float]) => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => Int
-
-((Nothing, Nothing, Nothing, Nothing)) => Int
-33 times = 3ms
-
-
-
-String => ?{def +=: ?}
-
-String => ?{def +=: ?}
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, org.scalacheck.Prop.Arg[Any]),That]
-
-scala.collection.generic.CanBuildFrom[List[String],(String, org.scalacheck.Prop.Arg[Any]),That]
-1 times = 1ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-12 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.awt.Dialog
-
-((Nothing, Nothing)) => java.awt.Dialog
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Double) => Int
-
-(=> Double) => Int
-302 times = 13ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-org.scalatest.enablers.Existence[T with AnyRef with U]
-
-org.scalatest.enablers.Existence[T with AnyRef with U]
-2 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.matchers.HavePropertyMatcher[T, _]],org.scalatest.matchers.HavePropertyMatchResult[_],That]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.matchers.HavePropertyMatcher[T, _]],org.scalatest.matchers.HavePropertyMatchResult[_],That]
-1 times = 1ms
-
-
-
-(Any => Nothing) => String
-
-(Any => Nothing) => String
-74 times = 29ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrBeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.OrBeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-ConductorMethods.this.PatienceConfig
-
-ConductorMethods.this.PatienceConfig
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[Int],String,That]
-1 times = 1ms
-
-
-
-(=> Double) => Byte
-
-(=> Double) => Byte
-4 times = 0ms
-
-
-
-DashboardReporter.this.summariesDir.type => ?{def +: ?}
-
-DashboardReporter.this.summariesDir.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Array[Boolean] => Array[Object]
-
-Array[Boolean] => Array[Object]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-((Nothing, Nothing)) => (?A1, ?A2) => ?P
-
-((Nothing, Nothing)) => (?A1, ?A2) => ?P
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],(String, Option[String]),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],(String, Option[String]),That]
-1 times = 1ms
-
-
-
-Array[Boolean] => Array[Any]
-
-Array[Boolean] => Array[Any]
-521 times = 27ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.enablers.KeyMapping[U]
-
-org.scalatest.enablers.KeyMapping[U]
-1 times = 0ms
-
-
-
-(=> Array[Short]) => Array[Class[_]]
-
-(=> Array[Short]) => Array[Class[_]]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.Matcher[T with U]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.Matcher[T with U]->TC1[T]
-
-
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.concurrent.Signaler
-
-org.scalatest.concurrent.Signaler
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Unit) => java.awt.LayoutManager
-
-(=> Unit) => java.awt.LayoutManager
-25 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-((A, B, C, D, E, F)) => asserting.Result
-
-((A, B, C, D, E, F)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => org.scalactic.source.Position
-
-((Nothing, Nothing, Nothing)) => org.scalactic.source.Position
-9 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 1ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndBeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.AndBeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-scala.languageFeature.higherKinds
-
-scala.languageFeature.higherKinds
-617 times = 45ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.enablers.Containing[U]
-
-org.scalatest.enablers.Containing[U]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-org.scalatest.matchers.MatcherFactory5[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-16 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndBeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.AndBeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-2 times = 0ms
-
-
-
-messageLines.type => ?{def size: ?}
-
-messageLines.type => ?{def size: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.Event],scala.collection.immutable.Seq[scala.xml.NodeSeq] with scala.collection.AbstractSeq[scala.xml.NodeSeq],Any]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[org.scalatest.events.Event],scala.collection.immutable.Seq[scala.xml.NodeSeq] with scala.collection.AbstractSeq[scala.xml.NodeSeq],Any]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[sbt.testing.TaskDef],sbt.testing.TaskDef,That]
-
-scala.collection.generic.CanBuildFrom[Array[sbt.testing.TaskDef],sbt.testing.TaskDef,That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[sbt.testing.TaskDef]
-
-scala.reflect.ClassTag[sbt.testing.TaskDef]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[sbt.testing.TaskDef],sbt.testing.TaskDef,That]->scala.reflect.ClassTag[sbt.testing.TaskDef]
-
-
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-(=> DiagrammedExprMacro.this.context.universe.Tree) => DiagrammedExprMacro.this.context.universe.Apply
-
-(=> DiagrammedExprMacro.this.context.universe.Tree) => DiagrammedExprMacro.this.context.universe.Apply
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Boolean) => T
-
-(=> Boolean) => T
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[Any,org.scalatest.enablers.Existence,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-org.scalatest.matchers.MatcherFactory3[Any,org.scalatest.enablers.Existence,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-toHash.type => ?{def toArray: ?}
-
-toHash.type => ?{def toArray: ?}
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I)) => asserting.Result
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Char => ?{def isWhitespace: ?}
-
-Char => ?{def isWhitespace: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with String]
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with String]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T with Any,?TC1] => org.scalatest.matchers.Matcher[T with String]->TC1[T]
-
-
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory8[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-Array[StackTraceElement] => ?{def deep: ?}
-
-Array[StackTraceElement] => ?{def deep: ?}
-4 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, String),That]
-
-scala.collection.generic.CanBuildFrom[List[String],(String, String),That]
-1 times = 0ms
-
-
-
-leftNonEmptyArray.toArray.type => ?{def deep: ?}
-
-leftNonEmptyArray.toArray.type => ?{def deep: ?}
-3 times = 19ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1 => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-zipped.type => ?{def withFilter: ?}
-
-zipped.type => ?{def withFilter: ?}
-1 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-IndexedSeq[(Int, E)] => IndexedSeq[(Int, E)]
-
-IndexedSeq[(Int, E)] => IndexedSeq[(Int, E)]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-12 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-clue.type => ?{def +: ?}
-
-clue.type => ?{def +: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Unit => DiagrammedExprMacro.this.context.universe.FlagSet
-
-Unit => DiagrammedExprMacro.this.context.universe.FlagSet
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[StackTraceElement]
-
-scala.reflect.ClassTag[StackTraceElement]
-2 times = 1ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-arr.type => ?{def exists: ?}
-
-arr.type => ?{def exists: ?}
-1 times = 2ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => org.apache.tools.ant.Project
-
-(=> (Nothing, Nothing)) => org.apache.tools.ant.Project
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Unit) => java.io.FilenameFilter
-
-(=> Unit) => java.io.FilenameFilter
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-Array[(String, String)] => scala.collection.GenTraversableOnce[(String, String)]
-
-Array[(String, String)] => scala.collection.GenTraversableOnce[(String, String)]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.Matcher[T]
-4 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-StringMustWrapper.this.leftSideString.type => ?{def r: ?}
-
-StringMustWrapper.this.leftSideString.type => ?{def r: ?}
-2 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrNotWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.OrNotWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Char => T
-
-Char => T
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,?TC2] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-x$6.type => ?{def <: ?}
-
-x$6.type => ?{def <: ?}
-1 times = 0ms
-
-
-
-((A, B, C, D, E)) => asserting.Result
-
-((A, B, C, D, E)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-Array[String] => scala.collection.GenTraversableOnce[?]
-
-Array[String] => scala.collection.GenTraversableOnce[?]
-5 times = 5ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-testName.type => ?{def drop: ?}
-
-testName.type => ?{def drop: ?}
-1 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Float => Char
-
-Float => Char
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => Long
-
-((Nothing, Nothing)) => Long
-6 times = 1ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3) => ?P)
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-(=> Array[Short]) => Array[Any]
-
-(=> Array[Short]) => Array[Any]
-521 times = 18ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-String => ?{def find: ?}
-
-String => ?{def find: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-TC7[V]
-
-TC7[V]
-1 times = 0ms
-
-
-
-(=> (A, B, C, D)) => asserting.Result
-
-(=> (A, B, C, D)) => asserting.Result
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.awt.Window
-
-((Nothing, Nothing)) => java.awt.Window
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.Tree, Int)],DiagrammedExprMacro.this.context.universe.Tree,That]
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.Tree, Int)],DiagrammedExprMacro.this.context.universe.Tree,That]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[Any],String,That]
-
-scala.collection.generic.CanBuildFrom[Seq[Any],String,That]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> IndexedSeq[(Int, T, Throwable)]) => IndexedSeq[(Int, T, Throwable)]
-
-(=> IndexedSeq[(Int, T, Throwable)]) => IndexedSeq[(Int, T, Throwable)]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-2 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[List[DiagrammedExprMacro.this.context.universe.Symbol]],List[DiagrammedExprMacro.this.context.universe.Symbol],List[List[DiagrammedExprMacro.this.context.universe.Symbol]]]
-
-scala.collection.generic.CanBuildFrom[List[List[DiagrammedExprMacro.this.context.universe.Symbol]],List[DiagrammedExprMacro.this.context.universe.Symbol],List[List[DiagrammedExprMacro.this.context.universe.Symbol]]]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.io.OutputStream
-
-((Nothing, Nothing)) => java.io.OutputStream
-10 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Array[Short] => Array[Any]
-
-Array[Short] => Array[Any]
-521 times = 30ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrHaveWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.OrHaveWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-Unit => DiagrammedExprMacro.this.context.universe.Type
-
-Unit => DiagrammedExprMacro.this.context.universe.Type
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.GenericApply],(DiagrammedExprMacro.this.context.universe.GenericApply, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[DiagrammedExprMacro.this.context.universe.GenericApply],(DiagrammedExprMacro.this.context.universe.GenericApply, Int),That]
-1 times = 1ms
-
-
-
-scala.reflect.ClassTag[context.universe.Bind]
-
-scala.reflect.ClassTag[context.universe.Bind]
-1 times = 35ms
-
-
-
-Ordering[T]
-
-Ordering[T]
-1 times = 0ms
-
-
-
-Array[Float] => Array[String]
-
-Array[Float] => Array[String]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-Array[Boolean] => Array[org.scalatools.testing.Fingerprint]
-
-Array[Boolean] => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-Unit => com.gargoylesoftware.htmlunit.BrowserVersion
-
-Unit => com.gargoylesoftware.htmlunit.BrowserVersion
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => context.universe.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => context.universe.Symbol
-1 times = 2ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Array[?T] => scala.collection.GenTraversableOnce[?]
-
-Array[?T] => scala.collection.GenTraversableOnce[?]
-1 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(T, Int, scala.util.Try[ASSERTION])],(Int, T, Throwable),IndexedSeq[(Int, T, Throwable)]]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(T, Int, scala.util.Try[ASSERTION])],(Int, T, Throwable),IndexedSeq[(Int, T, Throwable)]]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Array[Byte] => Array[Object]
-
-Array[Byte] => Array[Object]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 1ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-2 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T with AnyRef with U]->org.scalatest.enablers.Existence[T with AnyRef with U]
-
-
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-org.scalatest.matchers.Matcher[Boolean] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-12 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Array[Byte]) => Array[org.scalatools.testing.Fingerprint]
-
-(=> Array[Byte]) => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1 => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => java.awt.Insets
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => java.awt.Insets
-7 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrBeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.OrBeWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P)
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Map[String,Set[String]] => ?{def +=: ?}
-
-Map[String,Set[String]] => ?{def +=: ?}
-4 times = 17ms
-
-
-
-(=> Char) => T
-
-(=> Char) => T
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-remoteArgs.type => ?{def isEmpty: ?}
-
-remoteArgs.type => ?{def isEmpty: ?}
-2 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-C => org.scalacheck.util.Pretty
-
-C => org.scalacheck.util.Pretty
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-collection.type => ?{def asScala: ?}
-
-collection.type => ?{def asScala: ?}
-1 times = 1ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-String('shortstacks') => ?{def ->: ?}
-
-String('shortstacks') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-((Nothing, Nothing)) => javax.swing.Icon
-
-((Nothing, Nothing)) => javax.swing.Icon
-12 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.enablers.ValueMapping[U]
-
-org.scalatest.enablers.ValueMapping[U]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Unit => java.util.Collection[_ <: Thread]
-
-Unit => java.util.Collection[_ <: Thread]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-2 times = 0ms
-
-
-
-(=> Unit) => ConductorMethods.this.Conductor
-
-(=> Unit) => ConductorMethods.this.Conductor
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Array[Char]) => Array[Object]
-
-(=> Array[Char]) => Array[Object]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.languageFeature.experimental.macros
-
-scala.languageFeature.experimental.macros
-93 times = 29ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-TC8[V]
-
-TC8[V]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-(=> Unit) => org.openqa.selenium.safari.SafariOptions
-
-(=> Unit) => org.openqa.selenium.safari.SafariOptions
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-java.util.Set[String] => ?{def asScala: ?}
-
-java.util.Set[String] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-String('(.*?)-running-.*') => ?{def r: ?}
-
-String('(.*?)-running-.*') => ?{def r: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Byte],String,That]
-
-scala.collection.generic.CanBuildFrom[Array[Byte],String,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[Byte],String,That]->scala.reflect.ClassTag[String]
-
-
-
-
-
-d.type => ?{def abs: ?}
-
-d.type => ?{def abs: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => Int
-
-(=> (Nothing, Nothing)) => Int
-32 times = 1ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndContainWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.AndContainWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Array[Double]) => Array[Any]
-
-(=> Array[Double]) => Array[Any]
-521 times = 17ms
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => (T => org.scalatest.matchers.MatchResult)
-
-(=> Matcher.this.AndContainWord) => (T => org.scalatest.matchers.MatchResult)
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-96 times = 3ms
-
-
-
-ResultOfNotWordForAny.this.left.type => ?{def indexOf: ?}
-
-ResultOfNotWordForAny.this.left.type => ?{def indexOf: ?}
-2 times = 1ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => (T with AnyRef with U => org.scalatest.matchers.MatchResult)
-
-(=> Matcher.this.AndContainWord) => (T with AnyRef with U => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-x$3.type => ?{def isWhitespace: ?}
-
-x$3.type => ?{def isWhitespace: ?}
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => (?A1 => ?P)
-
-(=> (Nothing, Nothing, Nothing)) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-scala.math.Ordering[Long]
-
-scala.math.Ordering[Long]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with AnyRef]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Long => Byte
-
-Long => Byte
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],DocSpecLike.this.Snippet,IndexedSeq[DocSpecLike.this.Snippet]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],DocSpecLike.this.Snippet,IndexedSeq[DocSpecLike.this.Snippet]]
-1 times = 1ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[T],(T, Int),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[T],(T, Int),That]
-1 times = 2ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)],((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S), Int),That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-s.type => ?{def reverse: ?}
-
-s.type => ?{def reverse: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Unit) => Array[String]
-
-(=> Unit) => Array[String]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[B]
-
-org.scalacheck.Arbitrary[B]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[org.scalatest.ConfigMap,scala.xml.Elem,Any]
-
-scala.collection.generic.CanBuildFrom[org.scalatest.ConfigMap,scala.xml.Elem,Any]
-2 times = 4ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.GenTraversable[String],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.GenTraversable[String],String,That]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],(String, Int),That]
-
-scala.collection.generic.CanBuildFrom[List[String],(String, Int),That]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-String(' ') => ?{def *: ?}
-
-String(' ') => ?{def *: ?}
-16 times = 11ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[Char]
-
-scala.reflect.ClassTag[Char]
-2 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N)) => asserting.Result
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-6 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Array[E] => scala.collection.GenTraversableOnce[E]
-
-Array[E] => scala.collection.GenTraversableOnce[E]
-2 times = 5ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)) => asserting.Result
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => Array[ThreadGroup]
-
-((Nothing, Nothing)) => Array[ThreadGroup]
-1 times = 0ms
-
-
-
-(=> Any => Nothing) => String
-
-(=> Any => Nothing) => String
-74 times = 5ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => ?A1 => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => ?A1 => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndContainWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.AndContainWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-clueStr.type => ?{def head: ?}
-
-clueStr.type => ?{def head: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M)) => asserting.Result
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory7.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> scala.collection.immutable.Set[String]) => ?{def +=: ?}
-
-(=> scala.collection.immutable.Set[String]) => ?{def +=: ?}
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Array[Int] => scala.collection.GenTraversableOnce[?]
-
-Array[Int] => scala.collection.GenTraversableOnce[?]
-1 times = 1ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Array[Long]) => Array[Int]
-
-(=> Array[Long]) => Array[Int]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-A => asserting.Result
-
-A => asserting.Result
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],String,Vector[String]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],String,Vector[String]]
-4 times = 3ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-methodTags.type => ?{def map: ?}
-
-methodTags.type => ?{def map: ?}
-2 times = 2ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2) => ?P)
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.New]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.New]
-2 times = 14ms
-
-
-
-Unit => java.util.Vector[_ <: org.scalatest.tools.EventHolder]
-
-Unit => java.util.Vector[_ <: org.scalatest.tools.EventHolder]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-org.scalatest.matchers.MatcherFactory6[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Array[Long] => scala.collection.GenTraversableOnce[?]
-
-Array[Long] => scala.collection.GenTraversableOnce[?]
-1 times = 3ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Array[Char]) => Array[Any]
-
-(=> Array[Char]) => Array[Any]
-521 times = 18ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[StackTraceElement],scala.xml.Elem,Any]
-
-scala.collection.generic.CanBuildFrom[Array[StackTraceElement],scala.xml.Elem,Any]
-1 times = 6ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[StackTraceElement],scala.xml.Elem,Any]->scala.reflect.ClassTag[scala.xml.Elem]
-
-
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Array[Int]) => Array[sbt.testing.Fingerprint]
-
-(=> Array[Int]) => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.GenIterable[Any],(Any, Any),That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.GenIterable[Any],(Any, Any),That]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-Array[Byte] => scala.collection.GenTraversableOnce[?]
-
-Array[Byte] => scala.collection.GenTraversableOnce[?]
-1 times = 1ms
-
-
-
-stackTrace.type => ?{def foreach: ?}
-
-stackTrace.type => ?{def foreach: ?}
-1 times = 0ms
-
-
-
-suiteParam.testNames.type => ?{def map: ?}
-
-suiteParam.testNames.type => ?{def map: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => ?A1 => ?P
-
-((Nothing, Nothing, Nothing, Nothing)) => ?A1 => ?P
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-String('dropinfoprovided') => ?{def ->: ?}
-
-String('dropinfoprovided') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[RandomTestOrder.this.DeferredSuiteRun],Unit,That]
-
-scala.collection.generic.CanBuildFrom[List[RandomTestOrder.this.DeferredSuiteRun],Unit,That]
-1 times = 1ms
-
-
-
-org.scalatest.enablers.TableAsserting[scala.concurrent.Future[ASSERTION]]
-
-org.scalatest.enablers.TableAsserting[scala.concurrent.Future[ASSERTION]]
-22 times = 4ms
-
-
-
-Unit => java.util.Locale
-
-Unit => java.util.Locale
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Unit => java.awt.LayoutManager
-
-Unit => java.awt.LayoutManager
-25 times = 1ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-a.startEvent.suiteName.type => ?{def <: ?}
-
-a.startEvent.suiteName.type => ?{def <: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P
-
-((Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-6 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory3.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Array[java.io.File] => ?{def sorted: ?}
-
-Array[java.io.File] => ?{def sorted: ?}
-1 times = 0ms
-
-
-
-(=> Byte) => Boolean
-
-(=> Byte) => Boolean
-4 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-12 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Array[String] => ?{def ++: ?}
-
-Array[String] => ?{def ++: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-(=> Boolean) => Short
-
-(=> Boolean) => Short
-4 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalactic.Equality[T]
-
-org.scalactic.Equality[T]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Array[Unit] => scala.collection.GenTraversableOnce[?]
-
-Array[Unit] => scala.collection.GenTraversableOnce[?]
-1 times = 1ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => org.scalatest.exceptions.TestCanceledException
-
-((Nothing, Nothing)) => org.scalatest.exceptions.TestCanceledException
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.enablers.Sortable[T]
-
-org.scalatest.enablers.Sortable[T]
-4 times = 6ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T with AnyRef with U]->org.scalatest.enablers.Sortable[T with AnyRef with U]
-
-
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Unit => context.universe.Type
-
-Unit => context.universe.Type
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-Byte => Boolean
-
-Byte => Boolean
-4 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-Unit => Boolean
-
-Unit => Boolean
-31 times = 5ms
-
-
-
-str.type => ?{def exists: ?}
-
-str.type => ?{def exists: ?}
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Set[String]],String,scala.collection.GenTraversableOnce[String]]
-
-scala.collection.generic.CanBuildFrom[List[Set[String]],String,scala.collection.GenTraversableOnce[String]]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.NodeBuffer,That]
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],scala.xml.NodeBuffer,That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.Matcher[T] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-18 times = 1ms
-
-
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> Float) => Byte
-
-(=> Float) => Byte
-4 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory6[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]) => scala.collection.mutable.ListBuffer[org.scalatest.events.Event]
-
-(=> scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]) => scala.collection.mutable.ListBuffer[org.scalatest.events.Event]
-12 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[Int,List[org.scalatest.AnchorValue]],org.scalatest.AnchorValue,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[Int,List[org.scalatest.AnchorValue]],org.scalatest.AnchorValue,That]
-1 times = 3ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-80 times = 5ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-MatcherFactory2.this.AndNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS]) => org.scalatest.matchers.Matcher[T]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[String],org.scalatest.tools.SuiteConfig,That]
-
-scala.collection.generic.CanBuildFrom[List[String],org.scalatest.tools.SuiteConfig,That]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-jList.type => ?{def asScala: ?}
-
-jList.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-Ordinal.this.stamps.type => ?{def toList: ?}
-
-Ordinal.this.stamps.type => ?{def toList: ?}
-1 times = 1ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-string.type => ?{def head: ?}
-
-string.type => ?{def head: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-ResultOfNotWordForAny.this.left.type => ?{def isDefinedAt: ?}
-
-ResultOfNotWordForAny.this.left.type => ?{def isDefinedAt: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosZDouble],org.scalactic.anyvals.PosZDouble,List[org.scalactic.anyvals.PosZDouble]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosZDouble],org.scalactic.anyvals.PosZDouble,List[org.scalactic.anyvals.PosZDouble]]
-1 times = 3ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Emptiness]
-6 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrNotWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.OrNotWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-testName.type => ?{def take: ?}
-
-testName.type => ?{def take: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrContainWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.OrContainWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-String => ?{def apply: ?}
-
-String => ?{def apply: ?}
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Array[String] => ?{def dropWhile: ?}
-
-Array[String] => ?{def dropWhile: ?}
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Unit) => java.util.Collection[_ <: Thread]
-
-(=> Unit) => java.util.Collection[_ <: Thread]
-1 times = 0ms
-
-
-
-TC3[T]
-
-TC3[T]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-Short => Boolean
-
-Short => Boolean
-4 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Unit) => java.util.Vector[_ <: org.scalatest.tools.EventHolder]
-
-(=> Unit) => java.util.Vector[_ <: org.scalatest.tools.EventHolder]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Throwable],String,IndexedSeq[String]]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[Throwable],String,IndexedSeq[String]]
-4 times = 1ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-org.scalacheck.Shrink[C]
-
-org.scalacheck.Shrink[C]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> Array[Unit]) => Array[org.scalatools.testing.Fingerprint]
-
-(=> Array[Unit]) => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.awt.Component
-
-((Nothing, Nothing)) => java.awt.Component
-30 times = 1ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Array[Byte] => Array[sbt.testing.Fingerprint]
-
-Array[Byte] => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.PolyType]
-
-scala.reflect.ClassTag[DiagrammedExprMacro.this.context.universe.PolyType]
-1 times = 5ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.net.Proxy
-
-((Nothing, Nothing)) => java.net.Proxy
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => (T with AnyRef => org.scalatest.matchers.MatchResult)
-
-Matcher.this.OrContainWord => (T with AnyRef => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-List[SuperEngine.this.Node] => ?{def ::=: ?}
-
-List[SuperEngine.this.Node] => ?{def ::=: ?}
-7 times = 1ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory6[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-12 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.collection.immutable.TreeMap[Int,org.scalatest.AnchorValue] => ?{def +=: ?}
-
-scala.collection.immutable.TreeMap[Int,org.scalatest.AnchorValue] => ?{def +=: ?}
-1 times = 4ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[?U]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.matchers.Matcher[?U]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-stackTrace.type => ?{def size: ?}
-
-stackTrace.type => ?{def size: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.Memento],org.scalatest.tools.Memento,That]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.Memento],org.scalatest.tools.Memento,That]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-TC6[T]
-
-TC6[T]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndNotWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.AndNotWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2) => ?P
-
-((Nothing, Nothing, Nothing, Nothing, Nothing)) => (?A1, ?A2) => ?P
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.enablers.Timed[org.scalatest.FutureOutcome]
-
-org.scalatest.enablers.Timed[org.scalatest.FutureOutcome]
-1 times = 1ms
-
-
-
-scala.concurrent.ExecutionContext
-
-scala.concurrent.ExecutionContext
-158 times = 32ms
-
-
-
-org.scalatest.enablers.Timed[org.scalatest.FutureOutcome]->scala.concurrent.ExecutionContext
-
-
-
-
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFlatSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-
-(() => org.scalatest.AsyncOutcome) => (AsyncFlatSpecLike.this.FixtureParam => org.scalatest.AsyncOutcome)
-4 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-6 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Unit => javax.swing.Icon
-
-Unit => javax.swing.Icon
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Doc.this.Snippet],org.scalatest.Suite,scala.collection.immutable.IndexedSeq[org.scalatest.Suite]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Doc.this.Snippet],org.scalatest.Suite,scala.collection.immutable.IndexedSeq[org.scalatest.Suite]]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Array[Int] => Array[org.scalatools.testing.Fingerprint]
-
-Array[Int] => Array[org.scalatools.testing.Fingerprint]
-1 times = 0ms
-
-
-
-(=> (A, B, C, D, E)) => asserting.Result
-
-(=> (A, B, C, D, E)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 1ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],String,scala.collection.immutable.IndexedSeq[String]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],String,scala.collection.immutable.IndexedSeq[String]]
-2 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteConfig],org.scalatest.Status,That]
-
-scala.collection.generic.CanBuildFrom[List[org.scalatest.tools.SuiteConfig],org.scalatest.Status,That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]) => org.scalatest.matchers.Matcher[T]
-4 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-DiagrammedExprMacro.this.context.universe.Tree => DiagrammedExprMacro.this.context.universe.GenericApply
-
-DiagrammedExprMacro.this.context.universe.Tree => DiagrammedExprMacro.this.context.universe.GenericApply
-1 times = 1ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.events.Event],org.scalatest.events.Event,Vector[org.scalatest.events.Event]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.events.Event],org.scalatest.events.Event,Vector[org.scalatest.events.Event]]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> MatcherFactory3.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => context.universe.Symbol
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => context.universe.Symbol
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Array[Char] => scala.collection.GenTraversableOnce[?]
-
-Array[Char] => scala.collection.GenTraversableOnce[?]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-String => ?{def last: ?}
-
-String => ?{def last: ?}
-1 times = 1ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4) => ?P)
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-64 times = 4ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-x$4.type => ?{def <: ?}
-
-x$4.type => ?{def <: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalacheck.Prop.Arg[_]],(org.scalacheck.Prop.Arg[_], Int),That]
-
-scala.collection.generic.CanBuildFrom[List[org.scalacheck.Prop.Arg[_]],(org.scalacheck.Prop.Arg[_], Int),That]
-1 times = 1ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P)
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-text.type => ?{def lines: ?}
-
-text.type => ?{def lines: ?}
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> Array[Float]) => Array[Int]
-
-(=> Array[Float]) => Array[Int]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.OrContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[String],String,IndexedSeq[String]]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[String],String,IndexedSeq[String]]
-3 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> Long) => Boolean
-
-(=> Long) => Boolean
-4 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Conductor.this.threadGroup.type => ?{def areAnyThreadsRunning: ?}
-
-Conductor.this.threadGroup.type => ?{def areAnyThreadsRunning: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-80 times = 3ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.reflect.Method],String,That]
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.reflect.Method],String,That]
-1 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Array[java.lang.reflect.Method],String,That]->scala.reflect.ClassTag[String]
-
-
-
-
-
-Matcher.this.OrContainWord => (T => org.scalatest.matchers.MatchResult)
-
-Matcher.this.OrContainWord => (T => org.scalatest.matchers.MatchResult)
-3 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.OrHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-stackTrace.type => ?{def find: ?}
-
-stackTrace.type => ?{def find: ?}
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => (T with AnyRef with U => org.scalatest.matchers.MatchResult)
-
-Matcher.this.OrContainWord => (T with AnyRef with U => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Short],Short,List[Short]]
-
-scala.collection.generic.CanBuildFrom[List[Short],Short,List[Short]]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-x$1.type => ?{def isWhitespace: ?}
-
-x$1.type => ?{def isWhitespace: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory1[SC,TC1]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.AndStartWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],String,That]
-
-scala.collection.generic.CanBuildFrom[List[StackTraceElement],String,That]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.OrNotWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-40 times = 1ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-Array[Unit] => Array[Class[_]]
-
-Array[Unit] => Array[Class[_]]
-1 times = 0ms
-
-
-
-Thread => List[Thread]
-
-Thread => List[Thread]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => $u.FlagSet
-
-(=> (Nothing, Nothing, Nothing)) => $u.FlagSet
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Char('\n') => String
-
-Char('
-') => String
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[Char],Char,List[Char]]
-
-scala.collection.generic.CanBuildFrom[List[Char],Char,List[Char]]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> Array[Int]) => Array[Any]
-
-(=> Array[Int]) => Array[Any]
-521 times = 18ms
-
-
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.collection.immutable.Set[org.scalatest.tools.ReporterConfigParam] => ?{def +=: ?}
-
-scala.collection.immutable.Set[org.scalatest.tools.ReporterConfigParam] => ?{def +=: ?}
-22 times = 2ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndNotWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.AndNotWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.AndHaveWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-String => ?{def split(x$1: ? >: Char('\n')): ?}
-
-String => ?{def split(x$1: ? >: Char('
-')): ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.MatcherFactory1[T with Any,?TC1]) => org.scalatest.matchers.Matcher[T]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-org.scalactic.anyvals.PosZInt => Short
-
-org.scalactic.anyvals.PosZInt => Short
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrBeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.OrBeWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T with String]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-Int => Byte
-
-Int => Byte
-4 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndNotWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.AndNotWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-Array[Long] => Array[Class[_]]
-
-Array[Long] => Array[Class[_]]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T]
-4 times = 9ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.Matcher[T]->org.scalatest.enablers.Sortable[T]
-
-
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory1.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-java.util.Set[org.openqa.selenium.Cookie] => ?{def asScala: ?}
-
-java.util.Set[org.openqa.selenium.Cookie] => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalacheck.Prop.Arg[Any]],Any,List[Any]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalacheck.Prop.Arg[Any]],Any,List[Any]]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Map[String,SuperEngine.this.TestLeaf] => ?{def +=: ?}
-
-Map[String,SuperEngine.this.TestLeaf] => ?{def +=: ?}
-1 times = 0ms
-
-
-
-org.scalatest.enablers.Size[T]
-
-org.scalatest.enablers.Size[T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-((Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit)) => String
-
-((Unit, Unit, Unit, Unit, Unit, Unit, Unit, Unit)) => String
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-((Nothing, Nothing)) => org.scalactic.source.Position
-
-((Nothing, Nothing)) => org.scalactic.source.Position
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.OrContainWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.RunningTest],org.scalatest.Slowpoke,IndexedSeq[org.scalatest.Slowpoke]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.RunningTest],org.scalatest.Slowpoke,IndexedSeq[org.scalatest.Slowpoke]]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.OrBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],String,That]
-1 times = 1ms
-
-
-
-org.scalactic.anyvals.PosZInt => Float
-
-org.scalactic.anyvals.PosZInt => Float
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-(=> (Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => (T with AnyRef => org.scalatest.matchers.MatchResult)
-
-(=> Matcher.this.AndContainWord) => (T with AnyRef => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Int => ?{def -=: ?}
-
-Int => ?{def -=: ?}
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N)) => asserting.Result
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.BeMatcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.Tree, Int)],DiagrammedExprMacro.this.context.universe.ValDef,That]
-
-scala.collection.generic.CanBuildFrom[List[(DiagrammedExprMacro.this.context.universe.Tree, Int)],DiagrammedExprMacro.this.context.universe.ValDef,That]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrNotWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ResultOfNotExist.this.notWord.exist.OrNotWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality] => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality] => org.scalatest.matchers.Matcher[T with U]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalactic.Equality] => org.scalatest.matchers.Matcher[T with U]->org.scalactic.Equality[T with U]
-
-
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.Matcher[Boolean]) => org.scalatest.matchers.Matcher[T]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.AndHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-DiagrammedExprMacro.this.context.WeakTypeTag[T]
-
-DiagrammedExprMacro.this.context.WeakTypeTag[T]
-1 times = 2ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T]
-4 times = 13ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.Matcher[T]->org.scalatest.enablers.Definition[T]
-
-
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-Unit => Array[Thread]
-
-Unit => Array[Thread]
-1 times = 1ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-org.scalactic.anyvals.PosInt => Int
-
-org.scalactic.anyvals.PosInt => Int
-4 times = 8ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.AndStartWithWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P)
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-Matcher.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.matchers.Matcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-6 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.RecordableEvent,scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.RecordableEvent,scala.collection.immutable.IndexedSeq[org.scalatest.events.RecordableEvent]]
-3 times = 6ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Conductor.this.threadGroup.type => ?{def getThreads: ?}
-
-Conductor.this.threadGroup.type => ?{def getThreads: ?}
-2 times = 0ms
-
-
-
-(=> scala.collection.immutable.Stream[Int]) => ?{def #::: ?}
-
-(=> scala.collection.immutable.Stream[Int]) => ?{def #::: ?}
-4 times = 2ms
-
-
-
-Float => Short
-
-Float => Short
-4 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory4.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> HtmlReporter.this.type) => ?{def eventList_=(x$1: ? >: scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]): ?}
-
-(=> HtmlReporter.this.type) => ?{def eventList_=(x$1: ? >: scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]): ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-48 times = 2ms
-
-
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.AndContainWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P)
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-String => Double
-
-String => Double
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory5.this.AndBeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-rawClassArr.type => ?{def map: ?}
-
-rawClassArr.type => ?{def map: ?}
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,?TC4]) => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.AndEndWithWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.OrContainWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.OrContainWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.AndNotWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.AndNotWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.OrContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndNotWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> MatcherFactory1.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-Option[org.scalatest.tools.Fragment] => scala.collection.GenTraversableOnce[org.scalatest.tools.Fragment]
-
-Option[org.scalatest.tools.Fragment] => scala.collection.GenTraversableOnce[org.scalatest.tools.Fragment]
-1 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.Matcher[T]
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.Matcher[T]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalacheck.Prop => org.scalacheck.Prop
-
-org.scalacheck.Prop => org.scalacheck.Prop
-30 times = 8ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> Unit) => org.openqa.selenium.chrome.ChromeOptions
-
-(=> Unit) => org.openqa.selenium.chrome.ChromeOptions
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ExistWord.this.matcherFactory.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.ExceptionalEvent,Vector[org.scalatest.events.ExceptionalEvent]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.ExceptionalEvent,Vector[org.scalatest.events.ExceptionalEvent]]
-3 times = 2ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.OrNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-MatcherFactory3.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-(=> Matcher.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-MatcherFactory4.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.OrBeWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-TC7[T]
-
-TC7[T]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K)],((A, B, C, D, E, F, G, H, I, J, K), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K)],((A, B, C, D, E, F, G, H, I, J, K), Int),That]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.tools.Fragment],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[org.scalatest.tools.Fragment],String,That]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Aggregating] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.ValueMapping]
-16 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalacheck.Prop.Result => org.scalacheck.Prop
-
-org.scalacheck.Prop.Result => org.scalacheck.Prop
-30 times = 2ms
-
-
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-Array[Char] => Array[sbt.testing.Fingerprint]
-
-Array[Char] => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => Int
-
-((Nothing, Nothing, Nothing)) => Int
-11 times = 2ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Matcher.this.AndContainWord => (T with String => org.scalatest.matchers.MatchResult)
-
-Matcher.this.AndContainWord => (T with String => org.scalatest.matchers.MatchResult)
-1 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> Unit) => java.util.Collection[_ <: java.util.concurrent.Future[_]]
-
-(=> Unit) => java.util.Collection[_ <: java.util.concurrent.Future[_]]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory4.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.KeyMapping] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Aggregating]
-64 times = 3ms
-
-
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],org.scalatest.tools.Fragment,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],org.scalatest.tools.Fragment,That]
-1 times = 1ms
-
-
-
-Boolean => Long
-
-Boolean => Long
-4 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.OrHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-org.scalactic.anyvals.PosZInt => Byte
-
-org.scalactic.anyvals.PosZInt => Byte
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, T)],(Int, T),That]
-
-scala.collection.generic.CanBuildFrom[IndexedSeq[(Int, T)],(Int, T),That]
-1 times = 1ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.ValueMapping]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5) => ?P
-
-((Nothing, Nothing, Nothing)) => (?A1, ?A2, ?A3, ?A4, ?A5) => ?P
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory1.this.AndBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory4[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> List[AsyncSuperEngine.this.Node]) => ?{def ::=: ?}
-
-(=> List[AsyncSuperEngine.this.Node]) => ?{def ::=: ?}
-7 times = 1ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L)],((A, B, C, D, E, F, G, H, I, J, K, L), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I, J, K, L)],((A, B, C, D, E, F, G, H, I, J, K, L), Int),That]
-1 times = 1ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[String],String,scala.collection.immutable.IndexedSeq[String]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.IndexedSeq[String],String,scala.collection.immutable.IndexedSeq[String]]
-3 times = 7ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory3.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => org.scalatest.exceptions.TestCanceledException
-
-(=> (Nothing, Nothing)) => org.scalatest.exceptions.TestCanceledException
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-MatcherFactory3.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> String) => Int
-
-(=> String) => Int
-250 times = 10ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.OrContainWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, Option[Any], org.scalatest.MessageRecorder.RecordedMessageEventFun, Option[org.scalatest.events.Location])],org.scalatest.events.RecordableEvent,That]
-
-scala.collection.generic.CanBuildFrom[List[(String, Option[Any], org.scalatest.MessageRecorder.RecordedMessageEventFun, Option[org.scalatest.events.Location])],org.scalatest.events.RecordableEvent,That]
-1 times = 2ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)) => asserting.Result
-
-((A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-((Nothing, Nothing, Nothing, Nothing)) => $u.Symbol
-
-((Nothing, Nothing, Nothing, Nothing)) => $u.Symbol
-1 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J)) => asserting.Result
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-12 times = 0ms
-
-
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-MatcherFactory3.this.AndBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-DiagrammedExprMacro.this.context.universe.Tree => DiagrammedExprMacro.this.context.universe.Apply
-
-DiagrammedExprMacro.this.context.universe.Tree => DiagrammedExprMacro.this.context.universe.Apply
-2 times = 2ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> Unit) => org.scalatest.concurrent.PatienceConfiguration.Interval
-
-(=> Unit) => org.scalatest.concurrent.PatienceConfiguration.Interval
-3 times = 0ms
-
-
-
-((Nothing, Nothing)) => java.net.URI
-
-((Nothing, Nothing)) => java.net.URI
-10 times = 1ms
-
-
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.AndEndWithWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[Any,org.scalatest.enablers.Existence,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory3[Any,org.scalatest.enablers.Existence,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.OrNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> Double) => T
-
-(=> Double) => T
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory5.this.OrBeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-spanString.type => ?{def toDouble: ?}
-
-spanString.type => ?{def toDouble: ?}
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[org.scalatest.tools.SuiteResult]
-
-scala.reflect.ClassTag[org.scalatest.tools.SuiteResult]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-jSet.type => ?{def asScala: ?}
-
-jSet.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.AndNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-
-(=> org.scalatest.matchers.Matcher[AnyRef]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2) => ?P)
-1 times = 0ms
-
-
-
-(String, Map[String,Set[String]]) <:< (String, Map[String,Set[String]])
-
-(String, Map[String,Set[String]]) <:< (String, Map[String,Set[String]])
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.OrBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-Array[Long] => Array[Any]
-
-Array[Long] => Array[Any]
-521 times = 28ms
-
-
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.AndContainWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.matchers.Matcher[Any]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-6 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory6.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory4.this.OrHaveWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrNotWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-
-MatcherFactory5.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.OrContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> Unit) => java.util.Collection[_ <: org.scalatest.events.ExceptionalEvent]
-
-(=> Unit) => java.util.Collection[_ <: org.scalatest.events.ExceptionalEvent]
-1 times = 0ms
-
-
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.AndContainWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-12 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosDouble],org.scalactic.anyvals.PosDouble,List[org.scalactic.anyvals.PosDouble]]
-
-scala.collection.generic.CanBuildFrom[List[org.scalactic.anyvals.PosDouble],org.scalactic.anyvals.PosDouble,List[org.scalactic.anyvals.PosDouble]]
-1 times = 1ms
-
-
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory1.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[org.scalatest.tools.ReporterConfiguration],org.scalatest.Reporter,That]
-
-scala.collection.generic.CanBuildFrom[Seq[org.scalatest.tools.ReporterConfiguration],org.scalatest.Reporter,That]
-1 times = 1ms
-
-
-
-(=> Array[?T]) => scala.collection.GenTraversableOnce[?]
-
-(=> Array[?T]) => scala.collection.GenTraversableOnce[?]
-1 times = 0ms
-
-
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-MatcherFactory8.this.AndBeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Clock.this.rwLock.type => ?{def write: ?}
-
-Clock.this.rwLock.type => ?{def write: ?}
-1 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory1[SC,TC1] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> Array[Boolean]) => Array[Int]
-
-(=> Array[Boolean]) => Array[Int]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-MatcherFactory1.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[List[(String, scala.collection.immutable.Set[String])],String,List[String]]
-
-scala.collection.generic.CanBuildFrom[List[(String, scala.collection.immutable.Set[String])],String,List[String]]
-1 times = 1ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Unit) => java.util.Map[_ <: K, _ <: V]
-
-(=> Unit) => java.util.Map[_ <: K, _ <: V]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrBeWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory2.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-MatcherFactory5.this.AndHaveWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrNotWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.OrNotWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-Unit => org.openqa.selenium.safari.SafariOptions
-
-Unit => org.openqa.selenium.safari.SafariOptions
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> ResultOfNotExist.this.notWord.exist.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.AndContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-(=> (A, B, C)) => asserting.Result
-
-(=> (A, B, C)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.awt.Point
-
-(=> (Nothing, Nothing)) => java.awt.Point
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-(=> MatcherFactory7.this.OrNotWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> Short) => Byte
-
-(=> Short) => Byte
-4 times = 0ms
-
-
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-MatcherFactory2.this.OrHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndBeWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[?U]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.matchers.Matcher[?U]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with String]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with String]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-org.scalacheck.Arbitrary[E]
-
-org.scalacheck.Arbitrary[E]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-(=> MatcherFactory2.this.AndNotWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-3 times = 0ms
-
-
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-value.anchor.type => ?{def ->: ?}
-
-value.anchor.type => ?{def ->: ?}
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.OrBeWord) => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrNotWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-
-(=> MatcherFactory2.this.AndContainWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.CaseDef]
-
-scala.reflect.ClassTag[context.universe.CaseDef]
-1 times = 8ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory3.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Aggregating]
-64 times = 2ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sequencing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory2.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-MatcherFactory1.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4] => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory6.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory7.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,?TC2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,?TC2]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory4[SC with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> org.scalactic.anyvals.PosZInt) => Short
-
-(=> org.scalactic.anyvals.PosZInt) => Short
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.AndContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.AndNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory1.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-Array[Long] => Array[sbt.testing.Fingerprint]
-
-Array[Long] => Array[sbt.testing.Fingerprint]
-1 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory3.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-8 times = 1ms
-
-
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-
-MatcherFactory6.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory7.this.AndBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7] => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-org.scalatest.matchers.MatcherFactory9[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.AndBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Messaging]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T with U]
-
-Matcher.this.OrFullyMatchWord => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-18 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory5.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5]) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.OrContainWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-ExistWord.this.matcherFactory.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-ExistWord.this.matcherFactory.OrIncludeWord => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-
-(=> Matcher.this.AndBeWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory6.this.AndContainWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.AppliedTypeTree]
-
-scala.reflect.ClassTag[context.universe.AppliedTypeTree]
-1 times = 9ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[String,Int],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.mutable.HashMap[String,Int],String,That]
-1 times = 13ms
-
-
-
-col.type => ?{def asScala: ?}
-
-col.type => ?{def asScala: ?}
-1 times = 1ms
-
-
-
-configArr.type => ?{def map: ?}
-
-configArr.type => ?{def map: ?}
-1 times = 0ms
-
-
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> List[SuperEngine.this.Node]) => ?{def ::=: ?}
-
-(=> List[SuperEngine.this.Node]) => ?{def ::=: ?}
-7 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,?TC2,?TC3] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Ordering[String]
-
-Ordering[String]
-2 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-MatcherFactory5.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Array[Boolean] => scala.collection.GenTraversableOnce[?]
-
-Array[Boolean] => scala.collection.GenTraversableOnce[?]
-1 times = 3ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.AndNotWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-
-(=> MatcherFactory2.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,?TC9]) => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-(=> MatcherFactory3.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-(=> MatcherFactory2.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> Thread) => List[Thread]
-
-(=> Thread) => List[Thread]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-MatcherFactory5.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.OrBeWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => java.awt.Window
-
-(=> (Nothing, Nothing)) => java.awt.Window
-1 times = 0ms
-
-
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.OrNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.Matcher[scala.collection.GenTraversable[?T]] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Sequencing]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.OrNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.AndContainWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC with AnyRef with U,TC1,TC2]
-1 times = 0ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-8 times = 0ms
-
-
-
-translatedArr.type => ?{def mkString: ?}
-
-translatedArr.type => ?{def mkString: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence]) => org.scalatest.matchers.Matcher[T with AnyRef with U]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndContainWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-
-(=> MatcherFactory5.this.AndContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-
-(=> MatcherFactory1.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef,TC1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Unit => StringBuilder
-
-Unit => StringBuilder
-14 times = 1ms
-
-
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-
-MatcherFactory5.this.AndNotWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-scala.reflect.ClassTag[context.universe.Literal]
-
-scala.reflect.ClassTag[context.universe.Literal]
-1 times = 12ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> ExistWord.this.matcherFactory.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ExistWord.this.matcherFactory.AndHaveWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory2[Any,?TYPECLASS1,?TYPECLASS2] => org.scalatest.matchers.MatcherFactory1[SC,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory6.this.AndBeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-selectTestList.type => ?{def map: ?}
-
-selectTestList.type => ?{def map: ?}
-1 times = 1ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-MatcherFactory6.this.AndContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.KeyMapping]
-8 times = 0ms
-
-
-
-(=> Unit) => org.openqa.selenium.Capabilities
-
-(=> Unit) => org.openqa.selenium.Capabilities
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-MatcherFactory1.this.OrBeWord => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-scala.collection.GenTraversableOnce[B] => scala.collection.GenTraversableOnce[(String, ?V1)]
-
-scala.collection.GenTraversableOnce[B] => scala.collection.GenTraversableOnce[(String, ?V1)]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-8 times = 0ms
-
-
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrBeWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T)) => asserting.Result
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory1[SC with AnyRef with U,TC1]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.AndContainWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory8.this.AndBeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6] => org.scalatest.matchers.MatcherFactory1[SC with U,TC1]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> org.scalatest.matchers.MatcherFactory8[Any,org.scalatest.enablers.Existence,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Byte => T
-
-Byte => T
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory8[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,TC6] => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> (Any => Nothing, Nothing, Nothing)) => Int
-
-(=> (Any => Nothing, Nothing, Nothing)) => Int
-74 times = 4ms
-
-
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory6.this.AndNotWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.OrIncludeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-
-MatcherFactory6.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory6[SC with U,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.AndBeWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-MatcherFactory1.this.AndNotWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-MatcherFactory7.this.OrNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T with AnyRef]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-MatcherFactory1.this.AndHaveWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> Matcher.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-12 times = 0ms
-
-
-
-(=> Array[Char]) => Array[Int]
-
-(=> Array[Char]) => Array[Int]
-1 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I)],((A, B, C, D, E, F, G, H, I), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F, G, H, I)],((A, B, C, D, E, F, G, H, I), Int),That]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory7[SC with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8] => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory7.this.AndBeWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC with U,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.AndHaveWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,TC5]
-3 times = 0ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8] => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-
-MatcherFactory2.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory7[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-
-MatcherFactory8.this.AndContainWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory7.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.AndNotWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-
-Matcher.this.OrNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-(=> MatcherFactory8.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-3 times = 0ms
-
-
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-
-MatcherFactory1.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-(=> MatcherFactory7.this.AndIncludeWord) => org.scalatest.matchers.MatcherFactory7[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-1 times = 0ms
-
-
-
-(=> Byte) => Char
-
-(=> Byte) => Char
-4 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory6[SC with AnyRef,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-(=> MatcherFactory4.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-
-Matcher.this.OrStartWithWord => org.scalatest.matchers.Matcher[T with AnyRef with U]
-1 times = 0ms
-
-
-
-ResultOfNotExist.this.notWord.exist.OrHaveWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ResultOfNotExist.this.notWord.exist.OrHaveWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalactic.Equality]
-4 times = 0ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.Matcher[T with AnyRef]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-
-MatcherFactory7.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7]
-3 times = 0ms
-
-
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-
-MatcherFactory7.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6, ?A7, ?A8) => ?P)
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Length]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-
-org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3]
-12 times = 0ms
-
-
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-
-MatcherFactory2.this.AndContainWord => org.scalatest.matchers.MatcherFactory2[SC with AnyRef,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T]
-
-Matcher.this.OrBeWord => org.scalatest.matchers.Matcher[T]
-3 times = 0ms
-
-
-
-decodedTestText.type => ?{def drop: ?}
-
-decodedTestText.type => ?{def drop: ?}
-1 times = 0ms
-
-
-
-paramsArr.type => ?{def mkString: ?}
-
-paramsArr.type => ?{def mkString: ?}
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-MatcherFactory4.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-
-MatcherFactory5.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory5[SC with String,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-(=> MatcherFactory8.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory8[SC with AnyRef with U,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-Unit => org.scalatest.concurrent.PatienceConfiguration.Timeout
-
-Unit => org.scalatest.concurrent.PatienceConfiguration.Timeout
-3 times = 1ms
-
-
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-
-Matcher.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.OrFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory4.this.AndHaveWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory8.this.AndNotWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-Numeric[Long]
-
-Numeric[Long]
-1 times = 2ms
-
-
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-(=> MatcherFactory1.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-MatcherFactory5.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> Unit) => java.io.File
-
-(=> Unit) => java.io.File
-1 times = 0ms
-
-
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-
-Matcher.this.AndNotWord => org.scalatest.matchers.MatcherFactory1[T,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F)],((A, B, C, D, E, F), Int),That]
-
-scala.collection.generic.CanBuildFrom[Seq[(A, B, C, D, E, F)],((A, B, C, D, E, F), Int),That]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory6[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6]) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Writability] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.Matcher[?U] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-org.scalatest.matchers.Matcher[?U] => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-
-MatcherFactory3.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC with String,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> ResultOfNotExist.this.notWord.exist.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-
-(=> ResultOfNotExist.this.notWord.exist.OrEndWithWord) => org.scalatest.matchers.MatcherFactory2[Any,org.scalatest.enablers.Existence,TYPECLASS1]
-1 times = 0ms
-
-
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-
-MatcherFactory3.this.AndHaveWord => org.scalatest.matchers.MatcherFactory3[SC with AnyRef,TC1,TC2,TC3]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS]) => org.scalatest.matchers.Matcher[T with U]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,?TYPECLASS]) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-
-(=> MatcherFactory2.this.OrBeWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-
-MatcherFactory8.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-
-MatcherFactory7.this.AndIncludeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-String('droptestignored') => ?{def ->: ?}
-
-String('droptestignored') => ?{def ->: ?}
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.OrHaveWord => org.scalatest.matchers.MatcherFactory8[SC with String,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory4[SC with AnyRef,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-
-(=> MatcherFactory5.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.KeyMapping]
-2 times = 0ms
-
-
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory8.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,?TC8,?TC9] => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T with U,org.scalatest.enablers.Containing]
-1 times = 0ms
-
-
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-(=> MatcherFactory1.this.OrContainWord) => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.OrContainWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.Matcher[T with U]
-
-(=> Matcher.this.AndNotWord) => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory4.this.OrBeWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-
-MatcherFactory2.this.OrEndWithWord => org.scalatest.matchers.MatcherFactory2[SC with String,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => org.scalactic.source.Position
-
-(=> (Nothing, Nothing, Nothing)) => org.scalactic.source.Position
-9 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-
-(=> Matcher.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Containing]
-9 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-
-(=> org.scalatest.matchers.MatcherFactory4[SC,TC1,?TC2,?TC3,?TC4]) => org.scalatest.matchers.MatcherFactory1[SC with String,TC1]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Containing] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.KeyMapping]
-12 times = 0ms
-
-
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-
-(=> org.scalatest.matchers.Matcher[T]) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Sequencing]
-16 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-
-(=> org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8,?TC9]) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.BeMatcher[Any] => org.scalatest.matchers.MatcherFactory1[SC,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-Matcher.this.AndEndWithWord => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.Event,scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.events.Event,scala.collection.immutable.IndexedSeq[org.scalatest.events.Event]]
-2 times = 1ms
-
-
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-
-MatcherFactory7.this.OrContainWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Aggregating]
-16 times = 0ms
-
-
-
-Char => ?{def toUpper: ?}
-
-Char => ?{def toUpper: ?}
-4 times = 0ms
-
-
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-
-MatcherFactory4.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.OrHaveWord) => org.scalatest.matchers.MatcherFactory4[SC with AnyRef with U,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.GenTraversable[Throwable with org.scalatest.exceptions.StackDepth],String,That]
-
-scala.collection.generic.CanBuildFrom[scala.collection.GenTraversable[Throwable with org.scalatest.exceptions.StackDepth],String,That]
-1 times = 1ms
-
-
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.AndFullyMatchWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-
-MatcherFactory4.this.AndBeWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]
-2 times = 0ms
-
-
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)) => asserting.Result
-
-(=> (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q)) => asserting.Result
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-
-org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,TC3] => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Containing]
-40 times = 2ms
-
-
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.OrHaveWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-Array[(String, String)] => scala.collection.GenTraversableOnce[(String, =?String)]
-
-Array[(String, String)] => scala.collection.GenTraversableOnce[(String, =?String)]
-1 times = 1ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T]
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T]
-12 times = 17ms
-
-
-
-org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Existence] => org.scalatest.matchers.Matcher[T]->org.scalatest.enablers.Existence[T]
-
-
-
-
-
-ExistWord.this.matcherFactory.OrBeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-
-ExistWord.this.matcherFactory.OrBeWord => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Existence]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC with U,TC1,TC2,TC3,TC4,TC5]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory5.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-
-(=> org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Definition]) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Sortable]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-
-MatcherFactory8.this.OrStartWithWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
-ScalaTestRunner.this.statusList.type => ?{def asScala: ?}
-
-ScalaTestRunner.this.statusList.type => ?{def asScala: ?}
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory4.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory2.this.AndFullyMatchWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-
-(=> org.scalatest.words.ResultOfNotExist) => org.scalatest.matchers.MatcherFactory1[Any,org.scalatest.enablers.Readability]
-1 times = 0ms
-
-
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-MatcherFactory7.this.OrBeWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,?TC2,?TC3,?TC4,?TC5] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,?TC2,?TC3,?TC4,?TC5,?TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> MatcherFactory4.this.AndBeWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-3 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-
-org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory2[SC,TC1,org.scalatest.enablers.Sequencing]
-32 times = 1ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-(=> org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7]) => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-1 times = 0ms
-
-
-
-Unit => java.util.Collection[_ <: org.scalatest.Status]
-
-Unit => java.util.Collection[_ <: org.scalatest.Status]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing)) => (?A1 => ?P)
-
-(=> (Nothing, Nothing)) => (?A1 => ?P)
-1 times = 0ms
-
-
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.Matcher[T with U]
-
-org.scalatest.words.ResultOfNotExist => org.scalatest.matchers.Matcher[T with U]
-1 times = 0ms
-
-
-
-Double => Long
-
-Double => Long
-32 times = 3ms
-
-
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-
-MatcherFactory1.this.AndBeWord => org.scalatest.matchers.MatcherFactory1[SC,TC1]
-3 times = 0ms
-
-
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-
-(=> MatcherFactory8.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.Containing]
-10 times = 0ms
-
-
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-
-MatcherFactory2.this.AndStartWithWord => org.scalatest.matchers.MatcherFactory2[SC with U,TC1,TC2]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-
-MatcherFactory4.this.AndContainWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-jMap.type => ?{def asScala: ?}
-
-jMap.type => ?{def asScala: ?}
-1 times = 1ms
-
-
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-
-(=> Matcher.this.OrEndWithWord) => org.scalatest.matchers.MatcherFactory1[T,org.scalatest.enablers.Aggregating]
-16 times = 1ms
-
-
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-
-MatcherFactory6.this.OrNotWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-
-(=> org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence]) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,TC4]
-12 times = 0ms
-
-
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-
-(=> MatcherFactory3.this.OrNotWord) => org.scalatest.matchers.MatcherFactory4[SC,TC1,TC2,TC3,org.scalatest.enablers.Size]
-2 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-
-org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Existence] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Messaging]
-8 times = 0ms
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],org.scalatest.tools.Fragment,Vector[org.scalatest.tools.Fragment]]
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[String],org.scalatest.tools.Fragment,Vector[org.scalatest.tools.Fragment]]
-9 times = 7ms
-
-
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T with String]
-
-Matcher.this.AndFullyMatchWord => org.scalatest.matchers.Matcher[T with String]
-1 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing)) => Int
-
-(=> (Nothing, Nothing, Nothing)) => Int
-11 times = 0ms
-
-
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-
-(=> MatcherFactory2.this.AndStartWithWord) => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Messaging]
-2 times = 0ms
-
-
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory7.this.OrStartWithWord) => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3) => ?P)
-
-(=> (Nothing, Nothing, Nothing, Nothing, Nothing, Nothing)) => ((?A1, ?A2, ?A3) => ?P)
-1 times = 0ms
-
-
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-
-MatcherFactory8.this.AndNotWord => org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8]
-3 times = 0ms
-
-
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-
-(=> MatcherFactory6.this.OrContainWord) => org.scalatest.matchers.MatcherFactory6[SC with String,TC1,TC2,TC3,TC4,TC5,TC6]
-1 times = 0ms
-
-
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-(=> MatcherFactory6.this.AndEndWithWord) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-
-MatcherFactory6.this.OrIncludeWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-(=> org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,TC5,TC6,?TC7,?TC8]) => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-
-(=> MatcherFactory5.this.AndNotWord) => org.scalatest.matchers.MatcherFactory6[SC,TC1,TC2,TC3,TC4,TC5,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-
-MatcherFactory8.this.OrNotWord => org.scalatest.matchers.MatcherFactory9[SC,TC1,TC2,TC3,TC4,TC5,TC6,TC7,TC8,org.scalatest.enablers.ValueMapping]
-2 times = 0ms
-
-
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-
-MatcherFactory6.this.OrContainWord => org.scalatest.matchers.MatcherFactory7[SC,TC1,TC2,TC3,TC4,TC5,TC6,org.scalactic.Equality]
-1 times = 0ms
-
-
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-
-org.scalatest.matchers.MatcherFactory8[SC,TC1,TC2,TC3,TC4,?TC5,?TC6,?TC7,?TC8] => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.KeyMapping]
-1 times = 0ms
-
-
-
-Array[java.lang.reflect.Method] => ?{def sorted: ?}
-
-Array[java.lang.reflect.Method] => ?{def sorted: ?}
-2 times = 1ms
-
-
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-
-MatcherFactory2.this.OrFullyMatchWord => org.scalatest.matchers.MatcherFactory3[SC,TC1,TC2,org.scalatest.enablers.Sequencing]
-8 times = 0ms
-
-
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-
-MatcherFactory4.this.OrContainWord => org.scalatest.matchers.MatcherFactory4[SC with String,TC1,TC2,TC3,TC4]
-1 times = 0ms
-
-
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-
-MatcherFactory4.this.AndNotWord => org.scalatest.matchers.MatcherFactory5[SC,TC1,TC2,TC3,TC4,org.scalatest.enablers.Length]
-2 times = 0ms
-
-
-
diff --git a/docs/scalatest-tests-flamegraph.svg b/docs/scalatest-tests-flamegraph.svg
deleted file mode 100644
index 1a393a7..0000000
--- a/docs/scalatest-tests-flamegraph.svg
+++ /dev/null
@@ -1,4282 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Flame Graph
-
-Reset Zoom
-Search
-
-
-Numeric[Double] (14 ms, 0.01%)
-
-
-
-String("1") => ?{def ->: ?} (19 ms, 0.02%)
-
-
-
-String("first test") => ?{def ignore: ?} (13 ms, 0.01%)
-
-
-
-Ordering[String] (30 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Sequencing[List[Int]] (1,381 ms, 1.09%)
-
-
-
-org.scalatest.enablers.KeyMapping[scala.collection.Map[String,Int]] (37 ms, 0.03%)
-
-
-
-String("Scope 1") => ?{def should: ?} (25 ms, 0.02%)
-
-
-
-org.scalacheck.Shrink[Int] (759 ms, 0.60%)
-
-
-
-org.scalatest.enablers.Readability[MyReadability] (46 ms, 0.04%)
-
-
-
-Double(6.9) => ?{def +-: ?} (38 ms, 0.03%)
-
-
-
-Array[Byte] => scala.collection.GenTraversable[Any] (22 ms, 0.02%)
-
-
-
-org.scalactic.Equality[(String, Int)] (11 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (39 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Collecting[(Int, String),scala.collection.GenIterable[(Int, String)]] (36 ms, 0.03%)
-
-
-
-(=> Int(2)) => String (133 ms, 0.11%)
-
-
-
-Option[String] => ?{def should: ?} (1,041 ms, 0.82%)
-
-
-
-org.scalactic.source.Position (18 ms, 0.01%)
-
-
-
-String("one.eight") => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,List[Int]] (24 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (108 ms, 0.09%)
-
-
-
-Int(2) => ?{def should: ?} (37 ms, 0.03%)
-
-
-
-List[Int] => ?{def should: ?} (149 ms, 0.12%)
-
-
-
-org.scalactic.Equality[Int] (216 ms, 0.17%)
-
-
-
-org.scalatest.enablers.Size[scala.collection.mutable.Map[String,Int]] (81 ms, 0.06%)
-
-
-
-Array[Double] => scala.collection.GenTraversable[Any] (24 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Emptiness[scala.collection.mutable.ListBuffer[Int]] (17 ms, 0.01%)
-
-
-
-minusSevenInt.type => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-org.scalactic.Equality[Int] (15 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Sequencing[org.scalactic.Every[String]] (746 ms, 0.59%)
-
-
-
-org.scalactic.Prettifier (40 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (15 ms, 0.01%)
-
-
-
-String("1.") => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-String("a(b*)(c*)") => ?{def withGroups: ?} (337 ms, 0.27%)
-
-
-
-scala.reflect.ClassTag[java.lang.annotation.AnnotationFormatError] (12 ms, 0.01%)
-
-
-
-scala.collection.immutable.Map[String,Int] => ?{def should: ?} (123 ms, 0.10%)
-
-
-
-org.scalactic.source.Position (14 ms, 0.01%)
-
-
-
-Float(7.0) => ?{def +-: ?} (33 ms, 0.03%)
-
-
-
-Numeric[Int] (16 ms, 0.01%)
-
-
-
-fact.rawSimplifiedFactMessage.type => ?{def should: ?} (14 ms, 0.01%)
-
-
-
-Long(-10L) => ?{def +-: ?} (16 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldExistLogicalOrExplicitSpec.this.Thing{val exist: Boolean},List[ShouldExistLogicalOrExplicitSpec.this.Thing{val exist: Boolean}]] (14 ms, 0.01%)
-
-
-
-org.scalactic.Equality[String] (309 ms, 0.24%)
-
-
-
-e8.message.type => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Containing[scala.collection.immutable.Map[Int,String]] (14 ms, 0.01%)
-
-
-
-Int(0) => ?{def should: ?} (11 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (20 ms, 0.02%)
-
-
-
-org.scalatest.ShouldBeWritableLogicalOrExplicitSpec.<refinement>.type => ?{def should: ?} (18 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (21 ms, 0.02%)
-
-
-
-Double(-7.0) => ?{def +-: ?} (27 ms, 0.02%)
-
-
-
-left3.type => ?{def should: ?} (120 ms, 0.09%)
-
-
-
-Char('a') => ?{def pretty: ?} (11 ms, 0.01%)
-
-
-
-(Any => Nothing) => (() => Any) (123 ms, 0.10%)
-
-
-
-org.scalatest.ShouldBeEmptyLogicalOrExplicitSpec.<refinement>.type => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-ShouldMatchPatternSpec.this.result.type => ?{def should: ?} (59 ms, 0.05%)
-
-
-
-io.circe.Decoder[Option[Int]] (27 ms, 0.02%)
-
-
-
-org.scalactic.Prettifier (11 ms, 0.01%)
-
-
-
-Long(8L) => ?{def +-: ?} (23 ms, 0.02%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Containing[java.util.LinkedHashMap[Int,String]] (11 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Aggregating[scala.collection.immutable.Vector[scala.collection.immutable.Vector[Int]]] (18 ms, 0.01%)
-
-
-
-javaSet123.type => ?{def should: ?} (23 ms, 0.02%)
-
-
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P) (16 ms, 0.01%)
-
-
-
-Numeric[Short] (95 ms, 0.08%)
-
-
-
-(Any => Nothing) => ((?A1, ?A2, ?A3) => ?P) (13 ms, 0.01%)
-
-
-
-org.scalatest.Matchers.DecidedByEquality[String] => org.scalatest.enablers.Sequencing[List[String]] (635 ms, 0.50%)
-
-
-
-Option[String] => ?{def ===: ?} (506 ms, 0.40%)
-
-
-
-Integral[String] (41 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Sequencing[java.util.List[Int]] (83 ms, 0.07%)
-
-
-
-caseLists.type => ?{def shouldNot: ?} (17 ms, 0.01%)
-
-
-
-Boolean => ?{def shouldBe: ?} (19 ms, 0.02%)
-
-
-
-org.openqa.selenium.WebDriver (69 ms, 0.05%)
-
-
-
-io.circe.Decoder[Vector[io.circe.Json]] (11 ms, 0.01%)
-
-
-
-some.type => ?{def should: ?} (21 ms, 0.02%)
-
-
-
-scala.languageFeature.reflectiveCalls (47 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (34 ms, 0.03%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Aggregating[java.util.Set[String]] (12 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Aggregating[scala.collection.immutable.Set[String]] (23 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (53 ms, 0.04%)
-
-
-
-org.scalactic.Equality[PartialFunction[Int,Int]] (11 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Size[java.util.Map[String,Int]] (95 ms, 0.08%)
-
-
-
-((Nothing, Nothing, Nothing)) => org.scalatest.words.ResultOfLengthWordApplication (12 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (13 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[scala.collection.GenSeq[String],scala.collection.GenTraversable[scala.collection.GenSeq[String]]] (22 ms, 0.02%)
-
-
-
-org.scalactic.CanEqual[scala.collection.immutable.Vector[Int],scala.collection.immutable.Vector[Int]] (20 ms, 0.02%)
-
-
-
-String("d(e*)f") => ?{def r: ?} (13 ms, 0.01%)
-
-
-
-scala.collection.mutable.HashMap[String,Int] => ?{def should: ?} (32 ms, 0.03%)
-
-
-
-Float(-7.1) => ?{def +-: ?} (21 ms, 0.02%)
-
-
-
-Double => Long (76 ms, 0.06%)
-
-
-
-Array[?T] => scala.collection.GenTraversable[Any] (76 ms, 0.06%)
-
-
-
-Numeric[Long] (20 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Int] (106 ms, 0.08%)
-
-
-
-Byte => ?{def +-: ?} (90 ms, 0.07%)
-
-
-
-String("should throw NotAllowedException with correct stack depth and message when RHS contain duplicated value") => ?{def in: ?} (15 ms, 0.01%)
-
-
-
-result.type => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-(=> Double) => Int (155 ms, 0.12%)
-
-
-
-Double(-7.1) => ?{def +-: ?} (26 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Length[java.util.List[Int]] (32 ms, 0.03%)
-
-
-
-caught.message.type => ?{def value: ?} (30 ms, 0.02%)
-
-
-
-toSome.type => ?{def should: ?} (56 ms, 0.04%)
-
-
-
-scala.reflect.ClassTag[(Int, String)] (22 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Collecting[org.scalactic.Every[Int],org.scalactic.Every[org.scalactic.Every[Int]]] (417 ms, 0.33%)
-
-
-
-org.scalatest.enablers.ValueMapping[scala.collection.immutable.Map[String,Int]] (32 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Length[String] (89 ms, 0.07%)
-
-
-
-String("8") => ?{def should: ?} (19 ms, 0.02%)
-
-
-
-org.scalacheck.Prop => org.scalacheck.Prop (42 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Readability[ShouldBeReadableLogicalAndSpec.this.File{val isReadable: Boolean}] (19 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Size[scala.collection.immutable.HashMap[String,Int]] (91 ms, 0.07%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Aggregating[Array[String]] (23 ms, 0.02%)
-
-
-
-org.scalactic.CanEqual[Long,Int] (39 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Int] (19 ms, 0.02%)
-
-
-
-org.scalactic.CanEqual[String,String] (12 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[Int] (166 ms, 0.13%)
-
-
-
-scala.languageFeature.postfixOps (14 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (14 ms, 0.01%)
-
-
-
-Double(-6.8) => ?{def +-: ?} (28 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Size[Array[Int]] (80 ms, 0.06%)
-
-
-
-org.scalatest.enablers.Aggregating[org.scalactic.Every[Int]] (367 ms, 0.29%)
-
-
-
-org.scalactic.source.Position (13 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (24 ms, 0.02%)
-
-
-
-(=> Any => Nothing) => (() => scala.concurrent.Future[org.scalatest.compatible.Assertion]) (19 ms, 0.02%)
-
-
-
-org.scalactic.Prettifier (22 ms, 0.02%)
-
-
-
-ShouldTripleEqualsToleranceSpec.this.minusSevenLong.type => ?{def should: ?} (22 ms, 0.02%)
-
-
-
-Double => Int (346 ms, 0.27%)
-
-
-
-map.type => ?{def should: ?} (194 ms, 0.15%)
-
-
-
-map1.type => ?{def should: ?} (21 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Sortable[List[Int]] (116 ms, 0.09%)
-
-
-
-org.scalactic.source.Position (33 ms, 0.03%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[Int,List[Int]]] (99 ms, 0.08%)
-
-
-
-String("1.7") => ?{def should: ?} (126 ms, 0.10%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Containing[List[String]] (188 ms, 0.15%)
-
-
-
-org.scalatest.enablers.Collecting[Byte,List[Byte]] (18 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.immutable.Map[String,Int]] (37 ms, 0.03%)
-
-
-
-String("") => ?{def should: ?} (16 ms, 0.01%)
-
-
-
-e2.message.type => ?{def should: ?} (214 ms, 0.17%)
-
-
-
-Double(9.1) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-ShouldTripleEqualsToleranceSpec.this.sevenLong.type => ?{def should: ?} (23 ms, 0.02%)
-
-
-
-ShouldTripleEqualsToleranceSpec.this.sevenDotOh.type => ?{def should: ?} (38 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (14 ms, 0.01%)
-
-
-
-String("1.7b") => ?{def should: ?} (22 ms, 0.02%)
-
-
-
-org.scalactic.Prettifier (14 ms, 0.01%)
-
-
-
-Long(-8L) => ?{def +-: ?} (18 ms, 0.01%)
-
-
-
-ShouldEqualToleranceSpec.this.minusSevenDotOh.type => ?{def should: ?} (56 ms, 0.04%)
-
-
-
-org.scalatest.enablers.Size[scala.collection.immutable.HashSet[Int]] (52 ms, 0.04%)
-
-
-
-org.scalatest.enablers.KeyMapping[scala.collection.mutable.HashMap[String,Int]] (17 ms, 0.01%)
-
-
-
-e.message.type => ?{def ===: ?} (78 ms, 0.06%)
-
-
-
-sevenDotOhFloat.type => ?{def should: ?} (81 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (60 ms, 0.05%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Aggregating[java.util.LinkedHashMap[Int,String]] (19 ms, 0.02%)
-
-
-
-Int(5) => ?{def +-: ?} (14 ms, 0.01%)
-
-
-
-org.scalatest.words.ResultOfStringPassedToVerb => ?{def in: ?} (19 ms, 0.02%)
-
-
-
-org.scalactic.CanEqual[ShouldTripleEqualsSpec.this.Sub,ShouldTripleEqualsSpec.this.Super] (21 ms, 0.02%)
-
-
-
-Float(7.2) => ?{def +-: ?} (23 ms, 0.02%)
-
-
-
-fact.rawMidSentenceFactMessage.type => ?{def should: ?} (13 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (11 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (36 ms, 0.03%)
-
-
-
-String("a1.7") => ?{def should: ?} (16 ms, 0.01%)
-
-
-
-org.scalatest.Matchers.DecidedByEquality[String] => org.scalatest.enablers.Containing[Option[String]] (165 ms, 0.13%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[Int,Int]] (31 ms, 0.02%)
-
-
-
-Sizey => ?{def should: ?} (73 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (52 ms, 0.04%)
-
-
-
-List[Int] => Traversable[Int] (20 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Containing[org.scalactic.Every[String]] (699 ms, 0.55%)
-
-
-
-org.scalatest.enablers.Aggregating[Array[String]] (44 ms, 0.03%)
-
-
-
-ShouldTripleEqualsToleranceSpec.this.sevenDotOhFloat.type => ?{def should: ?} (30 ms, 0.02%)
-
-
-
-org.scalatest.Matchers.DecidedByEquality[String] => org.scalatest.enablers.Containing[List[String]] (413 ms, 0.33%)
-
-
-
-org.scalactic.source.Position (28 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (21 ms, 0.02%)
-
-
-
-fumList.type => ?{def shouldNot: ?} (47 ms, 0.04%)
-
-
-
-java.util.LinkedHashMap[Int,String] => ?{def should: ?} (72 ms, 0.06%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.mutable.HashSet[Int]] (35 ms, 0.03%)
-
-
-
-org.scalactic.Equality[String] => org.scalatest.enablers.Aggregating[List[String]] (74 ms, 0.06%)
-
-
-
-org.scalactic.Equality[org.scalactic.Every[String]] (37 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[Long] (19 ms, 0.02%)
-
-
-
-String("I") => ?{def ->: ?} (43 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (11 ms, 0.01%)
-
-
-
-String("A subject") => ?{def must: ?} (23 ms, 0.02%)
-
-
-
-org.scalatest.ShouldBeDefinedLogicalOrImplicitSpec.<refinement>.type => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P) (18 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Containing[scala.collection.immutable.Set[String]] (15 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Sequencing[java.util.List[String]] (52 ms, 0.04%)
-
-
-
-Numeric[Double] (32 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.mutable.Set[Int]] (38 ms, 0.03%)
-
-
-
-String("hi") => ?{def should: ?} (40 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[String] (87 ms, 0.07%)
-
-
-
-e.message.type => ?{def should: ?} (445 ms, 0.35%)
-
-
-
-scala.reflect.ClassTag[TwoFish] (12 ms, 0.01%)
-
-
-
-Int(19) => ?{def +-: ?} (20 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (21 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Size[java.util.List[Int]] (47 ms, 0.04%)
-
-
-
-org.scalactic.Equality[Int] (11 ms, 0.01%)
-
-
-
-(Any => Nothing) => (() => scala.concurrent.Future[org.scalatest.compatible.Assertion]) (51 ms, 0.04%)
-
-
-
-Long(17L) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[F,Int,List[Int]] (26 ms, 0.02%)
-
-
-
-org.scalactic.Prettifier (103 ms, 0.08%)
-
-
-
-String("three") => ?{def ->: ?} (20 ms, 0.02%)
-
-
-
-Numeric[Double] (277 ms, 0.22%)
-
-
-
-org.scalatest.enablers.Containing[Option[Int]] (144 ms, 0.11%)
-
-
-
-org.scalactic.source.Position (14 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (242 ms, 0.19%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Containing[java.util.List[String]] (14 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Aggregating[scala.collection.GenTraversable[String]] (12 ms, 0.01%)
-
-
-
-String("A subject") => ?{def can: ?} (25 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[List[String]] (21 ms, 0.02%)
-
-
-
-tfe.message.type => ?{def should: ?} (105 ms, 0.08%)
-
-
-
-Long => Int (230 ms, 0.18%)
-
-
-
-org.scalactic.Equality[Messenger] (22 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Emptiness[scala.collection.immutable.Vector[Int]] (20 ms, 0.02%)
-
-
-
-fact.isYes.type => ?{def shouldBe: ?} (13 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Sequencing[scala.collection.GenSeq[String]] (35 ms, 0.03%)
-
-
-
-org.scalactic.Prettifier (279 ms, 0.22%)
-
-
-
-Ordering[Char] (14 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (20 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (17 ms, 0.01%)
-
-
-
-Numeric[Double] (15 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (108 ms, 0.09%)
-
-
-
-Char('b') => ?{def pretty: ?} (13 ms, 0.01%)
-
-
-
-caseLists.type => ?{def should: ?} (33 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Int] (25 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[String] (516 ms, 0.41%)
-
-
-
-scala.reflect.ClassTag[ShouldBeATypeSpec.this.Book] (13 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (44 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Containing[java.util.LinkedHashMap[Int,String]] (54 ms, 0.04%)
-
-
-
-Double(-7.2) => ?{def +-: ?} (27 ms, 0.02%)
-
-
-
-mr.rawMidSentenceFailureMessage.type => ?{def shouldBe: ?} (63 ms, 0.05%)
-
-
-
-org.scalactic.source.Position (13 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[Int] (24 ms, 0.02%)
-
-
-
-ShouldBeReadableSpec.this.secretFile.type => ?{def should: ?} (19 ms, 0.02%)
-
-
-
-String("should be fun") => ?{def in: ?} (11 ms, 0.01%)
-
-
-
-Numeric[Double] (14 ms, 0.01%)
-
-
-
-Numeric[Int] (150 ms, 0.12%)
-
-
-
-org.scalatest.enablers.Collecting[scala.collection.GenMap[String,String],scala.collection.GenTraversable[scala.collection.GenMap[String,String]]] (14 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (16 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Sequencing[Array[String]] (43 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (13 ms, 0.01%)
-
-
-
-Numeric[Short] (88 ms, 0.07%)
-
-
-
-org.scalactic.source.Position (30 ms, 0.02%)
-
-
-
-caught2.message.type => ?{def ===: ?} (39 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.immutable.Vector[Int]] (42 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (30 ms, 0.02%)
-
-
-
-org.scalactic.Prettifier (29 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[Byte] (11 ms, 0.01%)
-
-
-
-String("test 2") => ?{def in: ?} (33 ms, 0.03%)
-
-
-
-org.scalactic.CanEqual[ShouldCollectedTripleEqualsSpec.this.Sub,ShouldCollectedTripleEqualsSpec.this.Super] (37 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (22 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Length[Lengthy] (502 ms, 0.40%)
-
-
-
-e4.message.type => ?{def should: ?} (37 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Int] (13 ms, 0.01%)
-
-
-
-javaSet.type => ?{def should: ?} (50 ms, 0.04%)
-
-
-
-org.scalatest.enablers.InspectorAsserting[org.scalatest.Assertion] (24 ms, 0.02%)
-
-
-
-e6.message.type => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-Int => ?{def ===: ?} (327 ms, 0.26%)
-
-
-
-org.scalactic.Prettifier (11 ms, 0.01%)
-
-
-
-nmr.midSentenceFailureMessageArgs.type => ?{def shouldBe: ?} (80 ms, 0.06%)
-
-
-
-ShouldTripleEqualsToleranceSpec.this.sevenShort.type => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-org.scalacheck.Arbitrary[Long] (340 ms, 0.27%)
-
-
-
-Option[Int] => ?{def value: ?} (46 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (29 ms, 0.02%)
-
-
-
-String("b(c*)d") => ?{def r: ?} (16 ms, 0.01%)
-
-
-
-x$5.type => ?{def size: ?} (21 ms, 0.02%)
-
-
-
-org.scalatest.enablers.TableAsserting[org.scalatest.Assertion] (101 ms, 0.08%)
-
-
-
-String("d(e*)f") => ?{def withGroup: ?} (45 ms, 0.04%)
-
-
-
-org.scalatest.enablers.Containing[Option[String]] (583 ms, 0.46%)
-
-
-
-Numeric[Double] (20 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (26 ms, 0.02%)
-
-
-
-nmr.rawNegatedFailureMessage.type => ?{def shouldBe: ?} (65 ms, 0.05%)
-
-
-
-org.scalactic.source.Position (34 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (39 ms, 0.03%)
-
-
-
-org.scalactic.Equality[String] (223 ms, 0.18%)
-
-
-
-Unit => Throwable (22 ms, 0.02%)
-
-
-
-Int(-10) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (12 ms, 0.01%)
-
-
-
-tasks.type => ?{def size: ?} (18 ms, 0.01%)
-
-
-
-Double(7.1) => ?{def +-: ?} (64 ms, 0.05%)
-
-
-
-nmr.negatedFailureMessageArgs.type => ?{def shouldBe: ?} (78 ms, 0.06%)
-
-
-
-org.scalatest.enablers.Aggregating[org.scalactic.Every[String]] (1,016 ms, 0.80%)
-
-
-
-ShouldEqualToleranceSpec.this.minusSevenDotOhFloat.type => ?{def should: ?} (45 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (33 ms, 0.03%)
-
-
-
-String("II") => ?{def ->: ?} (34 ms, 0.03%)
-
-
-
-org.scalactic.Equality[Int] (13 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (26 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (33 ms, 0.03%)
-
-
-
-mr.midSentenceNegatedFailureMessageArgs.type => ?{def shouldBe: ?} (74 ms, 0.06%)
-
-
-
-org.scalactic.Prettifier (20 ms, 0.02%)
-
-
-
-String("hello") => ?{def should: ?} (34 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (24 ms, 0.02%)
-
-
-
-String("two") => ?{def ->: ?} (185 ms, 0.15%)
-
-
-
-org.scalatest.enablers.Collecting[org.scalactic.Every[String],org.scalactic.Every[org.scalactic.Every[String]]] (728 ms, 0.58%)
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]] (51 ms, 0.04%)
-
-
-
-fumSome.type => ?{def should: ?} (58 ms, 0.05%)
-
-
-
-nmr.matches.type => ?{def shouldBe: ?} (68 ms, 0.05%)
-
-
-
-sevenInt.type => ?{def should: ?} (49 ms, 0.04%)
-
-
-
-nmr.midSentenceNegatedFailureMessageArgs.type => ?{def shouldBe: ?} (79 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (42 ms, 0.03%)
-
-
-
-org.scalactic.Prettifier (5,479 ms, 4.33%)
-org.s..
-
-
-ShouldTripleEqualsToleranceSpec.this.minusSevenDotOhFloat.type => ?{def should: ?} (27 ms, 0.02%)
-
-
-
-Array[Short] => scala.collection.GenTraversable[Any] (25 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldBeReadableLogicalOrImplicitSpec.this.Thing{val canRead: Boolean},List[ShouldBeReadableLogicalOrImplicitSpec.this.Thing{val canRead: Boolean}]] (14 ms, 0.01%)
-
-
-
-org.scalatest.enablers.KeyMapping[scala.collection.mutable.Map[String,Int]] (20 ms, 0.02%)
-
-
-
-sevenShort.type => ?{def should: ?} (34 ms, 0.03%)
-
-
-
-Numeric[Float] (11 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (11 ms, 0.01%)
-
-
-
-org.scalactic.CanEqual[this.Fruit,this.Apple] (11 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Containing[java.util.Set[Int]] (60 ms, 0.05%)
-
-
-
-org.scalatest.words.StringVerbBlockRegistration (29 ms, 0.02%)
-
-
-
-Int => ?{def +=: ?} (43 ms, 0.03%)
-
-
-
-Numeric[Float] (27 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (66 ms, 0.05%)
-
-
-
-Double(6.8) => ?{def +-: ?} (28 ms, 0.02%)
-
-
-
-e._2.type => ?{def should: ?} (74 ms, 0.06%)
-
-
-
-org.scalatest.enablers.Containing[List[String]] (1,359 ms, 1.07%)
-
-
-
-Int(10) => ?{def +-: ?} (13 ms, 0.01%)
-
-
-
-Long(6L) => ?{def +-: ?} (18 ms, 0.01%)
-
-
-
-ShouldEqualTokenToleranceSpec.this.sevenDotOh.type => ?{def shouldEqual: ?} (17 ms, 0.01%)
-
-
-
-ListShouldContainInOrderElementsOfSpec.this.DecidedByEquality[String] => org.scalatest.enablers.Sequencing[List[String]] (49 ms, 0.04%)
-
-
-
-org.scalatest.enablers.Containing[java.util.List[Int]] (87 ms, 0.07%)
-
-
-
-scala.reflect.ClassTag[RuntimeException] (16 ms, 0.01%)
-
-
-
-Float(17.1) => ?{def +-: ?} (33 ms, 0.03%)
-
-
-
-String("key1") => ?{def ->: ?} (17 ms, 0.01%)
-
-
-
-String => ?{def shouldBe: ?} (630 ms, 0.50%)
-
-
-
-Double(7.0) => ?{def +-: ?} (41 ms, 0.03%)
-
-
-
-Numeric[Double] (14 ms, 0.01%)
-
-
-
-List[ShouldBeAnTypeSpec.this.Book] => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-Int(1) => ?{def to: ?} (15 ms, 0.01%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[Int,String]] (75 ms, 0.06%)
-
-
-
-org.scalatest.enablers.Writability[java.io.File] (45 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (22 ms, 0.02%)
-
-
-
-Long(4L) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-scala.collection.mutable.Map[String,Int] => ?{def should: ?} (59 ms, 0.05%)
-
-
-
-org.scalactic.Equality[String] (390 ms, 0.31%)
-
-
-
-org.scalactic.Prettifier (11 ms, 0.01%)
-
-
-
-Int(-6) => ?{def +-: ?} (15 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (14 ms, 0.01%)
-
-
-
-String("Scope 1") => ?{def -: ?} (19 ms, 0.02%)
-
-
-
-org.scalatest.ConfigMap => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-Double(4.0) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (37 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (42 ms, 0.03%)
-
-
-
-e.type => ?{def should: ?} (43 ms, 0.03%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Containing[Array[String]] (37 ms, 0.03%)
-
-
-
-(Any => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P) (14 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Length[List[Int]] (33 ms, 0.03%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Aggregating[List[String]] (278 ms, 0.22%)
-
-
-
-org.scalactic.source.Position (14 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.mutable.Map[String,Int]] (46 ms, 0.04%)
-
-
-
-String("A subject") => ?{def -: ?} (48 ms, 0.04%)
-
-
-
-org.scalactic.CanEqual[Int,Int] (45 ms, 0.04%)
-
-
-
-Float(-7.0) => ?{def +-: ?} (22 ms, 0.02%)
-
-
-
-ListShouldContainInOrderOnlyLogicalOrSpec.this.DecidedByEquality[String] => org.scalatest.enablers.Sequencing[List[String]] (95 ms, 0.08%)
-
-
-
-mr.negatedFailureMessageArgs.type => ?{def shouldBe: ?} (74 ms, 0.06%)
-
-
-
-org.scalatest.enablers.Emptiness[MyEmptiness] (383 ms, 0.30%)
-
-
-
-mr.rawNegatedFailureMessage.type => ?{def shouldBe: ?} (62 ms, 0.05%)
-
-
-
-List[Int] => ?{def loneElement: ?} (11 ms, 0.01%)
-
-
-
-String <:< String (117 ms, 0.09%)
-
-
-
-org.scalactic.source.Position (14 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Size[scala.collection.mutable.HashMap[String,Int]] (76 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (29 ms, 0.02%)
-
-
-
-java.util.Set[String] => ?{def should: ?} (29 ms, 0.02%)
-
-
-
-xs.type => ?{def should: ?} (31 ms, 0.02%)
-
-
-
-String("a feature") => ?{def -: ?} (24 ms, 0.02%)
-
-
-
-Int(1) => ?{def ===: ?} (62 ms, 0.05%)
-
-
-
-String => Int (22 ms, 0.02%)
-
-
-
-Long(10L) => ?{def +-: ?} (18 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[List[String],List[List[String]]] (38 ms, 0.03%)
-
-
-
-lhs.type => ?{def +: ?} (30 ms, 0.02%)
-
-
-
-InOrderContainMatcherEqualitySpec.this.CustomEquality => org.scalatest.enablers.Sequencing[Array[String]] (19 ms, 0.02%)
-
-
-
-javaMap123.type => ?{def should: ?} (25 ms, 0.02%)
-
-
-
-Numeric[Double] (19 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Containing[org.scalactic.Every[Int]] (194 ms, 0.15%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[String,List[String]]] (108 ms, 0.09%)
-
-
-
-io.circe.Decoder[String] (361 ms, 0.29%)
-
-
-
-scala.util.matching.Regex => ?{def withGroups: ?} (45 ms, 0.04%)
-
-
-
-org.scalactic.CanEqual[Int,Long] (52 ms, 0.04%)
-
-
-
-ShouldEqualToleranceSpec.this.sevenDotOhFloat.type => ?{def should: ?} (49 ms, 0.04%)
-
-
-
-Int(-8) => ?{def +-: ?} (14 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[Option[String],Vector[Option[String]]] (154 ms, 0.12%)
-
-
-
-org.scalactic.source.Position (12 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[java.util.Map.Entry[Int,String]] => org.scalatest.enablers.Containing[java.util.LinkedHashMap[Int,String]] (20 ms, 0.02%)
-
-
-
-Double(7.2) => ?{def +-: ?} (28 ms, 0.02%)
-
-
-
-toList.type => ?{def should: ?} (233 ms, 0.18%)
-
-
-
-org.scalactic.source.Position (18 ms, 0.01%)
-
-
-
-left1.type => ?{def should: ?} (110 ms, 0.09%)
-
-
-
-WebBrowserSpec.this.MultiSelOptionSeq => ?{def should: ?} (13 ms, 0.01%)
-
-
-
-Float(9.1) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[IllegalArgumentException] (137 ms, 0.11%)
-
-
-
-io.circe.Decoder[Option[String]] (122 ms, 0.10%)
-
-
-
-ShouldEqualToleranceSpec.this.sevenShort.type => ?{def should: ?} (19 ms, 0.02%)
-
-
-
-Boolean => ?{def ==>: ?} (41 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (37,732 ms, 29.85%)
-org.scalactic.source.Position
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Sequencing[List[String]] (251 ms, 0.20%)
-
-
-
-Option[Int] => ?{def ===: ?} (505 ms, 0.40%)
-
-
-
-Int(1) => ?{def ->: ?} (220 ms, 0.17%)
-
-
-
-left5.type => ?{def should: ?} (88 ms, 0.07%)
-
-
-
-Numeric[Double] (14 ms, 0.01%)
-
-
-
-String("-1.8") => ?{def should: ?} (13 ms, 0.01%)
-
-
-
-Integral[Long] (24 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (24 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Aggregating[scala.collection.immutable.Set[Int]] (11 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Aggregating[List[Int]] (1,051 ms, 0.83%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.Set[Int]] (41 ms, 0.03%)
-
-
-
-Array[Float] => scala.collection.GenTraversable[Any] (22 ms, 0.02%)
-
-
-
-nmr.rawFailureMessage.type => ?{def shouldBe: ?} (64 ms, 0.05%)
-
-
-
-org.scalactic.source.Position (13 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[List[_],Any,Any] (19 ms, 0.02%)
-
-
-
-scala.collection.mutable.ListBuffer[Int] => ?{def should: ?} (22 ms, 0.02%)
-
-
-
-org.scalactic.CanEqual[scala.collection.immutable.Map[String,Int],scala.collection.immutable.Map[String,Int]] (11 ms, 0.01%)
-
-
-
-sevenLong.type => ?{def should: ?} (270 ms, 0.21%)
-
-
-
-(=> (Any, Any) => Nothing) => (?A1 => ?P) (14 ms, 0.01%)
-
-
-
-String("abbbc") => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-String("3") => ?{def ->: ?} (11 ms, 0.01%)
-
-
-
-Int(4) => ?{def ===: ?} (13 ms, 0.01%)
-
-
-
-Numeric[Long] (185 ms, 0.15%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldBeEmptyLogicalOrImplicitSpec.this.Thing{val isEmpty: Boolean},List[ShouldBeEmptyLogicalOrImplicitSpec.this.Thing{val isEmpty: Boolean}]] (15 ms, 0.01%)
-
-
-
-Throwable => ?{def should: ?} (122 ms, 0.10%)
-
-
-
-e3.message.type => ?{def should: ?} (34 ms, 0.03%)
-
-
-
-sevenDotOh.type => ?{def should: ?} (102 ms, 0.08%)
-
-
-
-Int(3) => ?{def ->: ?} (168 ms, 0.13%)
-
-
-
-org.scalatest.enablers.Sequencing[scala.collection.immutable.Stream[(Int, String)]] (76 ms, 0.06%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[Int,String]] (129 ms, 0.10%)
-
-
-
-String("one") => ?{def ->: ?} (204 ms, 0.16%)
-
-
-
-org.scalactic.Equality[Int] (164 ms, 0.13%)
-
-
-
-ShouldTripleEqualsSpec.this.super1.type => ?{def should: ?} (25 ms, 0.02%)
-
-
-
-Ordering[String] (112 ms, 0.09%)
-
-
-
-Int => org.scalacheck.util.Pretty (201 ms, 0.16%)
-
-
-
-String("abccdde") => ?{def should: ?} (42 ms, 0.03%)
-
-
-
-String("abccde") => ?{def should: ?} (41 ms, 0.03%)
-
-
-
-Float(7.1) => ?{def +-: ?} (55 ms, 0.04%)
-
-
-
-org.scalatest.enablers.Size[scala.collection.Map[String,Int]] (108 ms, 0.09%)
-
-
-
-Integral[Int] (132 ms, 0.10%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldCollectedTripleEqualsSpec.this.Sub,List[ShouldCollectedTripleEqualsSpec.this.Sub]] (11 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Size[Sizey] (618 ms, 0.49%)
-
-
-
-org.scalactic.Prettifier (96 ms, 0.08%)
-
-
-
-org.scalatest.enablers.Collecting[org.scalatest.Entry[K,V],JMAP[K,V]] (19 ms, 0.02%)
-
-
-
-org.scalactic.Prettifier (14 ms, 0.01%)
-
-
-
-String => ?{def ===: ?} (783 ms, 0.62%)
-
-
-
-org.scalatest.enablers.Definition[MyDefinition] (66 ms, 0.05%)
-
-
-
-Float(-4.0) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-Long(-4L) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-Array[(Int, String)] => ?{def deep: ?} (14 ms, 0.01%)
-
-
-
-String("abcdeef") => ?{def should: ?} (43 ms, 0.03%)
-
-
-
-String("should blow up") => ?{def in: ?} (16 ms, 0.01%)
-
-
-
-Array[Unit] => scala.collection.GenTraversable[Any] (29 ms, 0.02%)
-
-
-
-org.scalactic.Prettifier (60 ms, 0.05%)
-
-
-
-scala.concurrent.ExecutionContext (134 ms, 0.11%)
-
-
-
-org.scalatest.enablers.Size[scala.collection.Set[Int]] (57 ms, 0.05%)
-
-
-
-mr.matches.type => ?{def shouldBe: ?} (66 ms, 0.05%)
-
-
-
-book.type => ?{def should: ?} (69 ms, 0.05%)
-
-
-
-org.scalatest.enablers.Aggregating[java.util.List[Int]] (69 ms, 0.05%)
-
-
-
-org.scalatest.ShouldExistLogicalOrImplicitSpec.<refinement>.type => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[java.util.Map.Entry[Int,String]] => org.scalatest.enablers.Aggregating[java.util.LinkedHashMap[Int,String]] (38 ms, 0.03%)
-
-
-
-String("bccdd") => ?{def should: ?} (24 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (15 ms, 0.01%)
-
-
-
-sevenByte.type => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-String("second test") => ?{def taggedAs: ?} (11 ms, 0.01%)
-
-
-
-ShouldTripleEqualsToleranceSpec.this.minusSevenInt.type => ?{def should: ?} (19 ms, 0.02%)
-
-
-
-org.scalactic.Prettifier (20 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (239 ms, 0.19%)
-
-
-
-scala.reflect.ClassTag[NumberFormatException] (16 ms, 0.01%)
-
-
-
-Int(-5) => ?{def +-: ?} (14 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[ShouldBeAnTypeSpec.this.Book] (13 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Aggregating[List[String]] (2,402 ms, 1.90%)
-o..
-
-
-ShouldEqualToleranceSpec.this.minusSevenLong.type => ?{def should: ?} (36 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Collecting[Double,List[Double]] (114 ms, 0.09%)
-
-
-
-org.scalatest.enablers.Collecting[String,List[String]] (591 ms, 0.47%)
-
-
-
-org.scalatest.time.Span => ?{def should: ?} (230 ms, 0.18%)
-
-
-
-io.circe.Decoder[Int] (241 ms, 0.19%)
-
-
-
-ShouldEqualToleranceSpec.this.sevenLong.type => ?{def should: ?} (37 ms, 0.03%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[Int,Int]] (21 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (19 ms, 0.02%)
-
-
-
-Double(-4.0) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-org.scalactic.Equality[(Int, String)] (67 ms, 0.05%)
-
-
-
-org.scalactic.CanEqual[this.Apple,this.Crunchy] (28 ms, 0.02%)
-
-
-
-String => ?{def stripMargin: ?} (22 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldBeEmptyLogicalOrExplicitSpec.this.Thing{val isEmpty: Boolean},List[ShouldBeEmptyLogicalOrExplicitSpec.this.Thing{val isEmpty: Boolean}]] (15 ms, 0.01%)
-
-
-
-String("abcdeeff") => ?{def should: ?} (44 ms, 0.03%)
-
-
-
-org.scalactic.Equality[(Int, Int)] (21 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.immutable.HashSet[Int]] (37 ms, 0.03%)
-
-
-
-Array[Boolean] => scala.collection.GenTraversable[Any] (24 ms, 0.02%)
-
-
-
-List[ShouldBeATypeSpec.this.Book] => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-ShouldEqualTokenToleranceSpec.this.sevenDotOhFloat.type => ?{def shouldEqual: ?} (13 ms, 0.01%)
-
-
-
-Integral[List[Int]] (31 ms, 0.02%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Aggregating[List[String]] (24 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (22 ms, 0.02%)
-
-
-
-Int(1) => ?{def should: ?} (160 ms, 0.13%)
-
-
-
-org.scalatest.enablers.Messaging[Messenger] (345 ms, 0.27%)
-
-
-
-org.scalatest.enablers.Aggregating[scala.collection.immutable.Vector[scala.collection.immutable.Vector[String]]] (27 ms, 0.02%)
-
-
-
-Numeric[Double] (14 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (48 ms, 0.04%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Containing[scala.collection.immutable.Set[String]] (27 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (17 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Containing[java.util.List[String]] (26 ms, 0.02%)
-
-
-
-String("when created") => ?{def -: ?} (19 ms, 0.02%)
-
-
-
-org.scalactic.Equality[Option[String]] (433 ms, 0.34%)
-
-
-
-org.scalactic.Prettifier (173 ms, 0.14%)
-
-
-
-org.scalatest.enablers.Size[java.util.Set[Int]] (67 ms, 0.05%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Aggregating[org.scalactic.Every[String]] (163 ms, 0.13%)
-
-
-
-org.scalatest.enablers.Collecting[List[String],Vector[List[String]]] (995 ms, 0.79%)
-
-
-
-String("hi") => ?{def ->: ?} (31 ms, 0.02%)
-
-
-
-Float => Int (235 ms, 0.19%)
-
-
-
-org.scalatest.enablers.ValueMapping[scala.collection.mutable.Map[String,Int]] (19 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (1,496 ms, 1.18%)
-
-
-
-String("bccde") => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-mr.failureMessageArgs.type => ?{def shouldBe: ?} (72 ms, 0.06%)
-
-
-
-org.scalactic.Prettifier (13 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Sequencing[Array[Int]] (79 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (31 ms, 0.02%)
-
-
-
-javaMap.type => ?{def should: ?} (65 ms, 0.05%)
-
-
-
-org.scalatest.enablers.Collecting[Long,List[Long]] (85 ms, 0.07%)
-
-
-
-Float(6.9) => ?{def +-: ?} (30 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[List[_]] (15 ms, 0.01%)
-
-
-
-org.scalactic.Equality[Int] (20 ms, 0.02%)
-
-
-
-org.scalactic.Equality[String] (66 ms, 0.05%)
-
-
-
-mr.rawFailureMessage.type => ?{def shouldBe: ?} (65 ms, 0.05%)
-
-
-
-Numeric[Double] (14 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.immutable.HashMap[String,Int]] (48 ms, 0.04%)
-
-
-
-org.scalatest.ShouldBeEmptyLogicalOrImplicitSpec.<refinement>.type => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-(=> Double) => Long (42 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (20 ms, 0.02%)
-
-
-
-org.scalactic.Equality[String] => org.scalatest.enablers.Containing[List[String]] (17 ms, 0.01%)
-
-
-
-left6.type => ?{def should: ?} (45 ms, 0.04%)
-
-
-
-map2.type => ?{def should: ?} (19 ms, 0.02%)
-
-
-
-javaList.type => ?{def should: ?} (53 ms, 0.04%)
-
-
-
-String("A subject") => ?{def should: ?} (23 ms, 0.02%)
-
-
-
-org.scalatest.ShouldBeReadableLogicalOrImplicitSpec.<refinement>.type => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-myFile.type => ?{def should: ?} (53 ms, 0.04%)
-
-
-
-org.scalatest.enablers.Size[scala.collection.mutable.HashSet[Int]] (52 ms, 0.04%)
-
-
-
-String("Test 1") => ?{def in: ?} (14 ms, 0.01%)
-
-
-
-leftList.type => ?{def +: ?} (12 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Readability[ShouldBeReadableLogicalOrSpec.this.File{val isReadable: Boolean}] (36 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[org.scalatest.exceptions.NotAllowedException] (305 ms, 0.24%)
-
-
-
-ShouldOrderedSpec.this.PropertyCheckConfigurable (12 ms, 0.01%)
-
-
-
-Numeric[Float] (12 ms, 0.01%)
-
-
-
-org.scalatest.ShouldBeReadableLogicalOrSpec.<refinement>.type => ?{def should: ?} (18 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldBeReadableLogicalOrExplicitSpec.this.Thing{val canRead: Boolean},List[ShouldBeReadableLogicalOrExplicitSpec.this.Thing{val canRead: Boolean}]] (15 ms, 0.01%)
-
-
-
-caught3.message.type => ?{def ===: ?} (35 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Collecting[scala.collection.GenTraversable[String],scala.collection.GenTraversable[scala.collection.GenTraversable[String]]] (15 ms, 0.01%)
-
-
-
-ShouldTripleEqualsToleranceSpec.this.minusSevenDotOh.type => ?{def should: ?} (33 ms, 0.03%)
-
-
-
-ListShouldContainOneElementOfSpec.this.DecidedByEquality[String] => org.scalatest.enablers.Containing[List[String]] (21 ms, 0.02%)
-
-
-
-org.scalatest.enablers.ValueMapping[scala.collection.Map[String,Int]] (20 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Size[List[org.scalatest.events.TestStarting]] (11 ms, 0.01%)
-
-
-
-scala.collection.immutable.Vector[Int] => ?{def should: ?} (92 ms, 0.07%)
-
-
-
-org.scalactic.source.Position (36 ms, 0.03%)
-
-
-
-myFile.type => ?{def +: ?} (33 ms, 0.03%)
-
-
-
-String("deef") => ?{def should: ?} (25 ms, 0.02%)
-
-
-
-set2.type => ?{def should: ?} (11 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldBeDefinedLogicalOrExplicitSpec.this.Thing{val isDefined: Boolean},List[ShouldBeDefinedLogicalOrExplicitSpec.this.Thing{val isDefined: Boolean}]] (14 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Sequencing[org.scalactic.Every[String]] (109 ms, 0.09%)
-
-
-
-(Any => Nothing) => org.scalacheck.Prop (15 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (16 ms, 0.01%)
-
-
-
-e1.message.type => ?{def should: ?} (489 ms, 0.39%)
-
-
-
-buf.type => ?{def should: ?} (32 ms, 0.03%)
-
-
-
-(=> String) => Int (11 ms, 0.01%)
-
-
-
-Float(-6.8) => ?{def +-: ?} (23 ms, 0.02%)
-
-
-
-some.type => ?{def shouldNot: ?} (11 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Containing[Array[String]] (26 ms, 0.02%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Sequencing[java.util.List[String]] (29 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[Any] (13 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (55 ms, 0.04%)
-
-
-
-org.scalatest.enablers.Aggregating[scala.collection.GenMap[String,String]] (12 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (75 ms, 0.06%)
-
-
-
-String("2") => ?{def should: ?} (20 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Sequencing[java.util.List[String]] (28 ms, 0.02%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[Int,List[Int]]] (61 ms, 0.05%)
-
-
-
-org.scalactic.Prettifier (41 ms, 0.03%)
-
-
-
-org.scalactic.CanEqual[ShouldTripleEqualsSpec.this.Super,ShouldTripleEqualsSpec.this.Super] (12 ms, 0.01%)
-
-
-
-String("b(c*)(d*)") => ?{def r: ?} (17 ms, 0.01%)
-
-
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P) (16 ms, 0.01%)
-
-
-
-ShouldBeATypeSpec.this.aTaleOfTwoCities.type => ?{def should: ?} (32 ms, 0.03%)
-
-
-
-org.scalacheck.util.Buildable[Int,List[Int]] (46 ms, 0.04%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Sequencing[List[String]] (36 ms, 0.03%)
-
-
-
-org.scalatest.enablers.InspectorAsserting[ASSERTION] (44 ms, 0.03%)
-
-
-
-List[Int] => Traversable[Int] (19 ms, 0.02%)
-
-
-
-ListShouldContainInOrderSpec.this.DecidedByEquality[String] => org.scalatest.enablers.Sequencing[List[String]] (48 ms, 0.04%)
-
-
-
-Double(17.1) => ?{def +-: ?} (30 ms, 0.02%)
-
-
-
-Int(2) => ?{def ===: ?} (38 ms, 0.03%)
-
-
-
-org.scalactic.Equality[String] => org.scalatest.enablers.Sequencing[List[String]] (55 ms, 0.04%)
-
-
-
-String("eight") => ?{def should: ?} (15 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (432 ms, 0.34%)
-
-
-
-org.scalactic.source.Position (52 ms, 0.04%)
-
-
-
-org.scalactic.NormalizingEquivalence[?N] => org.scalatest.enablers.Aggregating[List[String]] (41 ms, 0.03%)
-
-
-
-List[Int] => org.scalacheck.util.Pretty (53 ms, 0.04%)
-
-
-
-String("test feature") => ?{def should: ?} (67 ms, 0.05%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.immutable.Map[Int,String]] (54 ms, 0.04%)
-
-
-
-Numeric[Float] (11 ms, 0.01%)
-
-
-
-String("b(c*)d") => ?{def withGroup: ?} (65 ms, 0.05%)
-
-
-
-objTrue.type => ?{def should: ?} (93 ms, 0.07%)
-
-
-
-org.scalatest.enablers.Sequencing[List[String]] (2,854 ms, 2.26%)
-o..
-
-
-Short => ?{def +-: ?} (175 ms, 0.14%)
-
-
-
-org.scalatest.enablers.Aggregating[Array[Int]] (93 ms, 0.07%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Aggregating[scala.collection.immutable.Map[Int,String]] (28 ms, 0.02%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Containing[Option[String]] (38 ms, 0.03%)
-
-
-
-caught5.message.type => ?{def ===: ?} (11 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (55 ms, 0.04%)
-
-
-
-Array[Int] => ?{def deep: ?} (101 ms, 0.08%)
-
-
-
-String("Test 3") => ?{def in: ?} (14 ms, 0.01%)
-
-
-
-org.scalatest.ShouldBeReadableLogicalOrExplicitSpec.<refinement>.type => ?{def should: ?} (19 ms, 0.02%)
-
-
-
-Float(6.8) => ?{def +-: ?} (21 ms, 0.02%)
-
-
-
-String("a(b*)c") => ?{def withGroup: ?} (335 ms, 0.26%)
-
-
-
-org.scalatest.enablers.Size[List[Int]] (66 ms, 0.05%)
-
-
-
-Class[T] => ?{def ===: ?} (16 ms, 0.01%)
-
-
-
-String("abbc") => ?{def should: ?} (152 ms, 0.12%)
-
-
-
-String("test 1") => ?{def in: ?} (107 ms, 0.08%)
-
-
-
-org.scalatest.enablers.Collecting[Int,List[Int]] (137 ms, 0.11%)
-
-
-
-scala.collection.immutable.HashMap[String,Int] => ?{def should: ?} (62 ms, 0.05%)
-
-
-
-org.scalacheck.Arbitrary[Int] (175 ms, 0.14%)
-
-
-
-org.scalactic.Prettifier (12 ms, 0.01%)
-
-
-
-Unit => Int (33 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (33 ms, 0.03%)
-
-
-
-org.scalactic.Equality[List[String]] (70 ms, 0.06%)
-
-
-
-mr.rawMidSentenceNegatedFailureMessage.type => ?{def shouldBe: ?} (60 ms, 0.05%)
-
-
-
-Numeric[Long] (11 ms, 0.01%)
-
-
-
-java.util.List[Int] => ?{def should: ?} (53 ms, 0.04%)
-
-
-
-Fractional[Long] (20 ms, 0.02%)
-
-
-
-scala.xml.Elem => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-nmr.rawMidSentenceNegatedFailureMessage.type => ?{def shouldBe: ?} (60 ms, 0.05%)
-
-
-
-fact.rawFactMessage.type => ?{def should: ?} (14 ms, 0.01%)
-
-
-
-Numeric[Double] (14 ms, 0.01%)
-
-
-
-org.scalatest.ShouldExistLogicalOrExplicitSpec.<refinement>.type => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-Array[org.scalatest.Entry[Int,String]] => ?{def deep: ?} (13 ms, 0.01%)
-
-
-
-(=> Long) => Int (141 ms, 0.11%)
-
-
-
-caught1.message.type => ?{def ===: ?} (60 ms, 0.05%)
-
-
-
-org.scalactic.Prettifier (15 ms, 0.01%)
-
-
-
-Long(5L) => ?{def +-: ?} (18 ms, 0.01%)
-
-
-
-String("first test") => ?{def taggedAs: ?} (13 ms, 0.01%)
-
-
-
-Int(8) => ?{def ->: ?} (18 ms, 0.01%)
-
-
-
-outcome.type => ?{def should: ?} (16 ms, 0.01%)
-
-
-
-String("b(c*)(d*)") => ?{def withGroups: ?} (67 ms, 0.05%)
-
-
-
-org.scalatest.enablers.Collecting[List[Int],List[List[Int]]] (101 ms, 0.08%)
-
-
-
-org.scalatest.enablers.Sortable[String] (84 ms, 0.07%)
-
-
-
-org.scalatest.enablers.Collecting[java.io.File,List[java.io.File]] (45 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (111 ms, 0.09%)
-
-
-
-scala.reflect.ClassTag[OneFish] (16 ms, 0.01%)
-
-
-
-org.scalactic.Equality[(String, List[String])] (138 ms, 0.11%)
-
-
-
-last.type => ?{def should: ?} (69 ms, 0.05%)
-
-
-
-io.circe.Decoder[String] (66 ms, 0.05%)
-
-
-
-sevenDotOh.type => ?{def shouldBe: ?} (12 ms, 0.01%)
-
-
-
-org.scalactic.Equality[String] (612 ms, 0.48%)
-
-
-
-org.scalactic.source.Position (34 ms, 0.03%)
-
-
-
-org.scalactic.CanEqual[scala.collection.immutable.Set[Int],scala.collection.immutable.Set[Int]] (12 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Containing[java.util.Set[String]] (11 ms, 0.01%)
-
-
-
-((Any, Any) => Nothing) => (?A1 => ?P) (17 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (246 ms, 0.19%)
-
-
-
-outcome.type => ?{def shouldBe: ?} (16 ms, 0.01%)
-
-
-
-Array[Char] => scala.collection.GenTraversable[Any] (23 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Emptiness[List[Int]] (91 ms, 0.07%)
-
-
-
-org.scalactic.source.Position (21 ms, 0.02%)
-
-
-
-Numeric[Long] (14 ms, 0.01%)
-
-
-
-String("Test 2") => ?{def in: ?} (14 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (31 ms, 0.02%)
-
-
-
-Fractional[Int] (25 ms, 0.02%)
-
-
-
-org.scalactic.CanEqual[ShouldTripleEqualsSpec.this.Super,ShouldTripleEqualsSpec.this.Sub] (11 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[org.scalactic.exceptions.NullArgumentException] (74 ms, 0.06%)
-
-
-
-Double(-6.9) => ?{def +-: ?} (28 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (27 ms, 0.02%)
-
-
-
-org.scalactic.CanEqual[this.Apple,this.Fruit] (27 ms, 0.02%)
-
-
-
-org.scalactic.CanEqual[ShouldCollectedTripleEqualsSpec.this.Super,ShouldCollectedTripleEqualsSpec.this.Sub] (23 ms, 0.02%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Aggregating[scala.collection.immutable.Set[String]] (35 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[org.scalatest.exceptions.DuplicateTestNameException] (29 ms, 0.02%)
-
-
-
-Int => ?{def should: ?} (866 ms, 0.69%)
-
-
-
-Array[Int] => ?{def should: ?} (183 ms, 0.14%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[Int,Int]] (45 ms, 0.04%)
-
-
-
-Double(17.0) => ?{def +-: ?} (14 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Containing[String] (12 ms, 0.01%)
-
-
-
-ShouldEqualTokenToleranceSpec.this.minusSevenDotOh.type => ?{def shouldEqual: ?} (14 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (41 ms, 0.03%)
-
-
-
-Boolean => org.scalacheck.Prop (150 ms, 0.12%)
-
-
-
-minusSevenDotOhFloat.type => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-org.scalatest.Assertion => scala.concurrent.Future[org.scalatest.compatible.Assertion] (103 ms, 0.08%)
-
-
-
-scala.reflect.ClassTag[sbt.testing.TaskDef] (13 ms, 0.01%)
-
-
-
-ShouldEqualTokenToleranceSpec.this.minusSevenDotOhFloat.type => ?{def shouldEqual: ?} (12 ms, 0.01%)
-
-
-
-javaList123.type => ?{def should: ?} (23 ms, 0.02%)
-
-
-
-scala.reflect.ClassTag[org.scalatest.Entry[Int,String]] (22 ms, 0.02%)
-
-
-
-org.scalactic.Equality[String] (136 ms, 0.11%)
-
-
-
-io.circe.Decoder[Long] (33 ms, 0.03%)
-
-
-
-(Any => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P) (14 ms, 0.01%)
-
-
-
-String => ?{def should: ?} (2,471 ms, 1.95%)
-S..
-
-
-org.scalactic.Prettifier (238 ms, 0.19%)
-
-
-
-scala.collection.immutable.Set[String] => ?{def should: ?} (39 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Length[Array[Int]] (37 ms, 0.03%)
-
-
-
-ShouldBeAnTypeSpec.this.aTaleOfTwoCities.type => ?{def should: ?} (28 ms, 0.02%)
-
-
-
-String("test that") => ?{def taggedAs: ?} (22 ms, 0.02%)
-
-
-
-io.circe.Decoder[io.circe.Json] (112 ms, 0.09%)
-
-
-
-org.scalatest.Matchers.DecidedByEquality[String] => org.scalatest.enablers.Aggregating[List[String]] (683 ms, 0.54%)
-
-
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P) (12 ms, 0.01%)
-
-
-
-((Any, Any) => Nothing) => org.scalacheck.Prop (18 ms, 0.01%)
-
-
-
-(=> Unit) => Int (17 ms, 0.01%)
-
-
-
-String("abc") => ?{def should: ?} (18 ms, 0.01%)
-
-
-
-opNames.type => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[None.type,List[None.type]] (11 ms, 0.01%)
-
-
-
-Int(-7) => ?{def +-: ?} (14 ms, 0.01%)
-
-
-
-String("bccdde") => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-Long(19L) => ?{def +-: ?} (22 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (12 ms, 0.01%)
-
-
-
-Float(-9.1) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[String,scala.collection.GenTraversable[String]] (42 ms, 0.03%)
-
-
-
-mr.midSentenceFailureMessageArgs.type => ?{def shouldBe: ?} (77 ms, 0.06%)
-
-
-
-org.scalactic.Equality[Int] (19 ms, 0.02%)
-
-
-
-caught4.message.type => ?{def ===: ?} (32 ms, 0.03%)
-
-
-
-Numeric[Float] (16 ms, 0.01%)
-
-
-
-String("abbcc") => ?{def should: ?} (44 ms, 0.03%)
-
-
-
-String("deeff") => ?{def should: ?} (26 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (30 ms, 0.02%)
-
-
-
-org.scalactic.Equality[(String, Int)] (11 ms, 0.01%)
-
-
-
-org.scalactic.Equality[String] (61 ms, 0.05%)
-
-
-
-org.scalatest.enablers.Aggregating[scala.collection.immutable.Set[String]] (26 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (38 ms, 0.03%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Containing[List[String]] (30 ms, 0.02%)
-
-
-
-sevenDotOhFloat.type => ?{def shouldBe: ?} (11 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (11 ms, 0.01%)
-
-
-
-ListShouldContainOneOfSpec.this.DecidedByEquality[String] => org.scalatest.enablers.Containing[List[String]] (30 ms, 0.02%)
-
-
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5, ?A6) => ?P) (12 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquivalence[?N] => org.scalatest.enablers.Aggregating[scala.collection.immutable.Map[Int,String]] (14 ms, 0.01%)
-
-
-
-minusSevenLong.type => ?{def should: ?} (19 ms, 0.02%)
-
-
-
-String("dude") => ?{def should: ?} (19 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Aggregating[java.util.LinkedHashMap[Int,String]] (87 ms, 0.07%)
-
-
-
-org.scalactic.source.Position (36 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (220 ms, 0.17%)
-
-
-
-Integral[Int] (28 ms, 0.02%)
-
-
-
-org.scalactic.NormalizingEquality[(Int, String)] => org.scalatest.enablers.Aggregating[scala.collection.immutable.Map[Int,String]] (39 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (22 ms, 0.02%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[String,List[String]]] (242 ms, 0.19%)
-
-
-
-org.scalacheck.Arbitrary[Int] (901 ms, 0.71%)
-
-
-
-org.scalacheck.Shrink[List[String]] (11 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[sbt.testing.Logger] (13 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (32 ms, 0.03%)
-
-
-
-ShouldEqualToleranceSpec.this.minusSevenShort.type => ?{def should: ?} (19 ms, 0.02%)
-
-
-
-(Any => Nothing) => ((?A1, ?A2, ?A3, ?A4) => ?P) (13 ms, 0.01%)
-
-
-
-scala.collection.immutable.Stream[(Int, String)] => ?{def should: ?} (14 ms, 0.01%)
-
-
-
-toList.type => ?{def shouldNot: ?} (231 ms, 0.18%)
-
-
-
-(Any => Nothing) => ((?A1, ?A2) => ?P) (14 ms, 0.01%)
-
-
-
-left4.type => ?{def should: ?} (67 ms, 0.05%)
-
-
-
-String("test this") => ?{def ignore: ?} (12 ms, 0.01%)
-
-
-
-scala.collection.immutable.Set[Int] => ?{def should: ?} (101 ms, 0.08%)
-
-
-
-Numeric[Int] (11 ms, 0.01%)
-
-
-
-(=> Float) => Long (37 ms, 0.03%)
-
-
-
-Int(7) => ?{def +-: ?} (21 ms, 0.02%)
-
-
-
-(=> Unit) => String (12 ms, 0.01%)
-
-
-
-Option[Int] => ?{def should: ?} (932 ms, 0.74%)
-
-
-
-scala.reflect.ClassTag[org.scalatest.exceptions.TestCanceledException] (301 ms, 0.24%)
-
-
-
-Int(6) => ?{def +-: ?} (14 ms, 0.01%)
-
-
-
-obj.type => ?{def should: ?} (851 ms, 0.67%)
-
-
-
-org.scalactic.source.Position (31 ms, 0.02%)
-
-
-
-s.type => ?{def should: ?} (100 ms, 0.08%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Containing[org.scalactic.Every[String]] (139 ms, 0.11%)
-
-
-
-org.scalactic.Equality[(String, Int)] (12 ms, 0.01%)
-
-
-
-Numeric[Float] (12 ms, 0.01%)
-
-
-
-org.scalactic.CanEqual[String,Int] (13 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Sequencing[Array[String]] (30 ms, 0.02%)
-
-
-
-org.scalactic.Equality[(Int, String)] (12 ms, 0.01%)
-
-
-
-java.util.List[String] => ?{def should: ?} (56 ms, 0.04%)
-
-
-
-org.scalactic.Prettifier (20 ms, 0.02%)
-
-
-
-org.scalactic.NormalizingEquality[(Int, String)] => org.scalatest.enablers.Containing[scala.collection.immutable.Map[Int,String]] (27 ms, 0.02%)
-
-
-
-org.scalactic.Equality[Int] (15 ms, 0.01%)
-
-
-
-String("abbccdef") => ?{def should: ?} (54 ms, 0.04%)
-
-
-
-Numeric[Byte] (43 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Sequencing[org.scalactic.Every[Int]] (252 ms, 0.20%)
-
-
-
-org.scalactic.Equality[Int] (243 ms, 0.19%)
-
-
-
-Long(-7L) => ?{def +-: ?} (18 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (47 ms, 0.04%)
-
-
-
-org.scalactic.Equality[Int] (56 ms, 0.04%)
-
-
-
-xs.type => ?{def shouldNot: ?} (14 ms, 0.01%)
-
-
-
-Ordering[Int] (187 ms, 0.15%)
-
-
-
-Int => ?{def shouldBe: ?} (30 ms, 0.02%)
-
-
-
-left.type => ?{def should: ?} (474 ms, 0.37%)
-
-
-
-org.scalactic.source.Position (31 ms, 0.02%)
-
-
-
-Fractional[Int] (109 ms, 0.09%)
-
-
-
-ShouldEqualToleranceSpec.this.sevenDotOh.type => ?{def should: ?} (58 ms, 0.05%)
-
-
-
-String("test 3") => ?{def in: ?} (26 ms, 0.02%)
-
-
-
-first.type => ?{def should: ?} (14 ms, 0.01%)
-
-
-
-Option[String] => ?{def value: ?} (39 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (29 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (19 ms, 0.02%)
-
-
-
-org.scalactic.Equality[(Int, List[Int])] (60 ms, 0.05%)
-
-
-
-org.scalactic.Equality[Int] (26 ms, 0.02%)
-
-
-
-org.scalactic.Prettifier (93 ms, 0.07%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldCollectedTripleEqualsSpec.this.Super,List[ShouldCollectedTripleEqualsSpec.this.Super]] (36 ms, 0.03%)
-
-
-
-scala.collection.mutable.HashSet[Int] => ?{def should: ?} (18 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Containing[List[Int]] (689 ms, 0.55%)
-
-
-
-Int(5) => ?{def ->: ?} (15 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Int],Int,scala.collection.immutable.Vector[Int]] (42 ms, 0.03%)
-
-
-
-o.type => ?{def should: ?} (112 ms, 0.09%)
-
-
-
-xs.type => ?{def loneElement: ?} (35 ms, 0.03%)
-
-
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3) => ?P) (13 ms, 0.01%)
-
-
-
-objFalse.type => ?{def should: ?} (250 ms, 0.20%)
-
-
-
-Long(7L) => ?{def +-: ?} (29 ms, 0.02%)
-
-
-
-String("2") => ?{def ->: ?} (14 ms, 0.01%)
-
-
-
-org.scalactic.Equality[Int] (28 ms, 0.02%)
-
-
-
-ShouldMatchPatternSpec.this.Person => ?{def should: ?} (35 ms, 0.03%)
-
-
-
-scala.reflect.ClassTag[List[Int]] (30 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Aggregating[java.util.List[String]] (21 ms, 0.02%)
-
-
-
-((Nothing, Nothing, Nothing)) => org.scalatest.words.ResultOfSizeWordApplication (17 ms, 0.01%)
-
-
-
-Numeric[Float] (11 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Size[WebBrowserSpec.this.MultiSelOptionSeq] (13 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[sbt.testing.Selector] (19 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Collecting[Float,List[Float]] (92 ms, 0.07%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Sequencing[Array[String]] (61 ms, 0.05%)
-
-
-
-org.scalactic.source.Position (22 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (12 ms, 0.01%)
-
-
-
-String("test feature") => ?{def -: ?} (37 ms, 0.03%)
-
-
-
-String("d(e*)(f*)") => ?{def withGroups: ?} (42 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Collecting[List[Int],Vector[List[Int]]] (657 ms, 0.52%)
-
-
-
-Float => Long (53 ms, 0.04%)
-
-
-
-Person => ?{def should: ?} (16 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[List[Int]] (486 ms, 0.38%)
-
-
-
-org.scalactic.Prettifier (81 ms, 0.06%)
-
-
-
-all (126,421 ms, 100%)
-
-
-
-Long(-9L) => ?{def +-: ?} (17 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Messaging[RuntimeException] (44 ms, 0.03%)
-
-
-
-(=> Int) => ?{def +=: ?} (11 ms, 0.01%)
-
-
-
-org.scalatest.Matchers.DecidedByEquality[String] => org.scalatest.enablers.Sequencing[org.scalactic.Every[String]] (636 ms, 0.50%)
-
-
-
-String("second test") => ?{def ignore: ?} (11 ms, 0.01%)
-
-
-
-org.scalatest.Matchers.DecidedByEquality[String] => org.scalatest.enablers.Aggregating[org.scalactic.Every[String]] (767 ms, 0.61%)
-
-
-
-minusSevenDotOh.type => ?{def should: ?} (25 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (50 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (92 ms, 0.07%)
-
-
-
-String("bccd") => ?{def should: ?} (23 ms, 0.02%)
-
-
-
-Lengthy => ?{def should: ?} (80 ms, 0.06%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[Int,String]] (66 ms, 0.05%)
-
-
-
-org.scalatest.enablers.Collecting[Some[String],List[Some[String]]] (12 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldExistLogicalOrImplicitSpec.this.Thing{val exist: Boolean},List[ShouldExistLogicalOrImplicitSpec.this.Thing{val exist: Boolean}]] (13 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (24 ms, 0.02%)
-
-
-
-org.scalactic.Equality[(Int, String)] (16 ms, 0.01%)
-
-
-
-scala.reflect.ClassTag[VirtualMachineError] (12 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (12 ms, 0.01%)
-
-
-
-ShouldEqualToleranceSpec.this.minusSevenInt.type => ?{def should: ?} (28 ms, 0.02%)
-
-
-
-String("fred") => ?{def should: ?} (33 ms, 0.03%)
-
-
-
-nmr.rawMidSentenceFailureMessage.type => ?{def shouldBe: ?} (63 ms, 0.05%)
-
-
-
-org.scalactic.source.Position (31 ms, 0.02%)
-
-
-
-java.util.Set[Int] => ?{def should: ?} (22 ms, 0.02%)
-
-
-
-io.circe.Decoder[Int] (14 ms, 0.01%)
-
-
-
-org.scalactic.Equality[Int] (138 ms, 0.11%)
-
-
-
-org.scalactic.source.Position (129 ms, 0.10%)
-
-
-
-org.scalactic.source.Position (32 ms, 0.03%)
-
-
-
-Float(4.0) => ?{def +-: ?} (13 ms, 0.01%)
-
-
-
-left.type => ?{def +: ?} (11 ms, 0.01%)
-
-
-
-Numeric[Float] (16 ms, 0.01%)
-
-
-
-(=> Any => Nothing) => (() => Any) (50 ms, 0.04%)
-
-
-
-org.scalatest.enablers.ValueMapping[java.util.Map[String,Int]] (21 ms, 0.02%)
-
-
-
-Numeric[Float] (15 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldBeWritableLogicalOrExplicitSpec.this.Thing{val canRead: Boolean},List[ShouldBeWritableLogicalOrExplicitSpec.this.Thing{val canRead: Boolean}]] (15 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (47 ms, 0.04%)
-
-
-
-scala.collection.generic.CanBuildFrom[org.scalatest.prop.TableFor1[org.scalatest.Outcome],scala.concurrent.Future[org.scalatest.Assertion],Seq[scala.concurrent.Future[org.scalatest.Assertion]]] (15 ms, 0.01%)
-
-
-
-map3.type => ?{def should: ?} (20 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (17 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (20 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (31 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (11 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[Any,List[Any]] (22 ms, 0.02%)
-
-
-
-org.scalactic.source.Position (35 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (20 ms, 0.02%)
-
-
-
-fumList.type => ?{def should: ?} (3,223 ms, 2.55%)
-fu..
-
-
-scala.reflect.ClassTag[org.scalatest.exceptions.TestFailedException] (4,558 ms, 3.61%)
-scal..
-
-
-ShouldEqualToleranceSpec.this.sevenByte.type => ?{def should: ?} (18 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldBeReadableLogicalOrSpec.this.File{val isReadable: Boolean},List[ShouldBeReadableLogicalOrSpec.this.File{val isReadable: Boolean}]] (14 ms, 0.01%)
-
-
-
-org.scalatest.ShouldBeWritableLogicalOrImplicitSpec.<refinement>.type => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-scala.util.matching.Regex => ?{def withGroup: ?} (43 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldBeDefinedLogicalOrImplicitSpec.this.Thing{val isDefined: Boolean},List[ShouldBeDefinedLogicalOrImplicitSpec.this.Thing{val isDefined: Boolean}]] (14 ms, 0.01%)
-
-
-
-fact.isVacuousYes.type => ?{def shouldBe: ?} (11 ms, 0.01%)
-
-
-
-fact.rawMidSentenceSimplifiedFactMessage.type => ?{def should: ?} (14 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (51 ms, 0.04%)
-
-
-
-String("empty") => ?{def should: ?} (18 ms, 0.01%)
-
-
-
-Int(8) => ?{def +-: ?} (18 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (15 ms, 0.01%)
-
-
-
-set3.type => ?{def should: ?} (11 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Containing[org.scalactic.Every[String]] (11 ms, 0.01%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[String,List[String]]] (367 ms, 0.29%)
-
-
-
-InOrderContainMatcherEqualitySpec.this.CustomEquality => org.scalatest.enablers.Sequencing[List[String]] (12 ms, 0.01%)
-
-
-
-(=> Float) => Int (142 ms, 0.11%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.mutable.HashMap[String,Int]] (40 ms, 0.03%)
-
-
-
-String => org.scalacheck.util.Pretty (129 ms, 0.10%)
-
-
-
-t.type => ?{def should: ?} (308 ms, 0.24%)
-
-
-
-Numeric[Float] (11 ms, 0.01%)
-
-
-
-org.scalatest.words.StringVerbStringInvocation (18 ms, 0.01%)
-
-
-
-Long => org.scalacheck.util.Pretty (36 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Size[scala.collection.mutable.Set[Int]] (52 ms, 0.04%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Aggregating[java.util.List[String]] (34 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (13 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[Short,List[Short]] (37 ms, 0.03%)
-
-
-
-org.scalatest.enablers.ValueMapping[scala.collection.immutable.HashMap[String,Int]] (20 ms, 0.02%)
-
-
-
-Int(9) => ?{def +-: ?} (32 ms, 0.03%)
-
-
-
-String("1") => ?{def should: ?} (11 ms, 0.01%)
-
-
-
-org.scalatest.ShouldBeDefinedAtSpec.<refinement>.type => ?{def should: ?} (62 ms, 0.05%)
-
-
-
-org.scalactic.source.Position (12 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Containing[Array[Int]] (95 ms, 0.08%)
-
-
-
-org.scalatest.enablers.KeyMapping[scala.collection.immutable.HashMap[String,Int]] (18 ms, 0.01%)
-
-
-
-String("a1.7b") => ?{def should: ?} (13 ms, 0.01%)
-
-
-
-String("7") => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[org.scalatest.Entry[String,Int],java.util.HashMap[String,Int]] (14 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (29 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Collecting[PartialFunction[Int,Int],List[PartialFunction[Int,Int]]] (54 ms, 0.04%)
-
-
-
-Array[Long] => scala.collection.GenTraversable[Any] (26 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Collecting[Int,scala.collection.GenTraversable[Int]] (74 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (1,197 ms, 0.95%)
-
-
-
-org.scalatest.enablers.Aggregating[java.util.Set[String]] (15 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (128 ms, 0.10%)
-
-
-
-org.scalactic.source.Position (36 ms, 0.03%)
-
-
-
-e7.message.type => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-left2.type => ?{def should: ?} (111 ms, 0.09%)
-
-
-
-scala.collection.immutable.HashSet[Int] => ?{def should: ?} (38 ms, 0.03%)
-
-
-
-Ordering[Int] (69 ms, 0.05%)
-
-
-
-Float(-6.9) => ?{def +-: ?} (22 ms, 0.02%)
-
-
-
-String("a(b*)c") => ?{def r: ?} (42 ms, 0.03%)
-
-
-
-org.scalactic.CanEqual[ShouldCollectedTripleEqualsSpec.this.Super,ShouldCollectedTripleEqualsSpec.this.Super] (17 ms, 0.01%)
-
-
-
-String("test this") => ?{def taggedAs: ?} (40 ms, 0.03%)
-
-
-
-org.scalatest.enablers.KeyMapping[java.util.Map[String,Int]] (19 ms, 0.02%)
-
-
-
-Long(-5L) => ?{def +-: ?} (17 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (11 ms, 0.01%)
-
-
-
-Int(2) => ?{def ->: ?} (188 ms, 0.15%)
-
-
-
-Double(-9.1) => ?{def +-: ?} (15 ms, 0.01%)
-
-
-
-String("A Stack") => ?{def when: ?} (13 ms, 0.01%)
-
-
-
-((Any, Any) => Nothing) => ((?A1, ?A2, ?A3) => ?P) (15 ms, 0.01%)
-
-
-
-scala.collection.mutable.Set[Int] => ?{def should: ?} (41 ms, 0.03%)
-
-
-
-org.scalactic.Prettifier (21 ms, 0.02%)
-
-
-
-Long(-6L) => ?{def +-: ?} (18 ms, 0.01%)
-
-
-
-String("should use the implicit Equality in scope") => ?{def in: ?} (34 ms, 0.03%)
-
-
-
-String("test that") => ?{def in: ?} (12 ms, 0.01%)
-
-
-
-String("should do nothing if valid, else throw a TFE with an appropriate error message") => ?{def in: ?} (30 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Sortable[List[ShouldBeSortedLogicalAndSpec.this.Student]] (11 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Aggregating[org.scalactic.One[org.scalactic.Many[String]]] (11 ms, 0.01%)
-
-
-
-org.scalactic.Prettifier (16 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Collecting[Array[String],List[Array[String]]] (16 ms, 0.01%)
-
-
-
-org.scalactic.CanEqual[Int,String] (11 ms, 0.01%)
-
-
-
-ShouldTripleEqualsToleranceSpec.this.minusSevenShort.type => ?{def should: ?} (14 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Size[scala.collection.immutable.Map[String,Int]] (77 ms, 0.06%)
-
-
-
-org.scalactic.source.Position (26 ms, 0.02%)
-
-
-
-org.scalacheck.Arbitrary[List[Int]] (416 ms, 0.33%)
-
-
-
-org.scalactic.source.Position (30 ms, 0.02%)
-
-
-
-Float(-7.2) => ?{def +-: ?} (23 ms, 0.02%)
-
-
-
-nmr.failureMessageArgs.type => ?{def shouldBe: ?} (73 ms, 0.06%)
-
-
-
-Array[Int] => scala.collection.GenTraversable[Any] (24 ms, 0.02%)
-
-
-
-jMap.type => ?{def loneElement: ?} (33 ms, 0.03%)
-
-
-
-org.scalatest.enablers.Writability[MyWritability] (50 ms, 0.04%)
-
-
-
-org.scalactic.source.Position (32 ms, 0.03%)
-
-
-
-Numeric[Float] (12 ms, 0.01%)
-
-
-
-org.scalatest.events.Event => ?{def should: ?} (18 ms, 0.01%)
-
-
-
-List[String] => ?{def should: ?} (67 ms, 0.05%)
-
-
-
-Int(-9) => ?{def +-: ?} (12 ms, 0.01%)
-
-
-
-String("abbcdef") => ?{def should: ?} (54 ms, 0.04%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.immutable.Set[Int]] (74 ms, 0.06%)
-
-
-
-String("a(b*)(c*)") => ?{def r: ?} (41 ms, 0.03%)
-
-
-
-Boolean => ?{def should: ?} (211 ms, 0.17%)
-
-
-
-org.scalatest.ShouldBeDefinedLogicalOrExplicitSpec.<refinement>.type => ?{def should: ?} (19 ms, 0.02%)
-
-
-
-(=> (Nothing, Nothing)) => Boolean (34 ms, 0.03%)
-
-
-
-org.scalactic.source.Position (12 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (105 ms, 0.08%)
-
-
-
-org.scalatest.enablers.Size[scala.collection.immutable.Set[Int]] (42 ms, 0.03%)
-
-
-
-String("A subject") => ?{def when: ?} (16 ms, 0.01%)
-
-
-
-Unit => String (26 ms, 0.02%)
-
-
-
-String("should use an explicitly provided Equality") => ?{def in: ?} (33 ms, 0.03%)
-
-
-
-org.scalactic.NormalizingEquivalence[?N] => org.scalatest.enablers.Aggregating[scala.collection.immutable.Set[String]] (15 ms, 0.01%)
-
-
-
-org.scalatest.Matchers.DecidedByEquality[String] => org.scalatest.enablers.Containing[org.scalactic.Every[String]] (487 ms, 0.39%)
-
-
-
-(=> (Any, Any) => Nothing) => ((?A1, ?A2, ?A3, ?A4, ?A5) => ?P) (12 ms, 0.01%)
-
-
-
-Numeric[Float] (231 ms, 0.18%)
-
-
-
-scala.reflect.ClassTag[String] (299 ms, 0.24%)
-
-
-
-scala.reflect.ClassTag[Int] (84 ms, 0.07%)
-
-
-
-ShouldTripleEqualsToleranceSpec.this.sevenInt.type => ?{def should: ?} (17 ms, 0.01%)
-
-
-
-ShouldEqualToleranceSpec.this.sevenInt.type => ?{def should: ?} (26 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Collecting[Option[Int],Vector[Option[Int]]] (66 ms, 0.05%)
-
-
-
-org.scalatest.enablers.Containing[scala.collection.Map[String,Int]] (48 ms, 0.04%)
-
-
-
-org.scalactic.NormalizingEquality[String] => org.scalatest.enablers.Aggregating[Array[String]] (47 ms, 0.04%)
-
-
-
-org.scalactic.Equality[java.util.Map.Entry[Int,List[Int]]] (53 ms, 0.04%)
-
-
-
-Symbol => ?{def apply: ?} (229 ms, 0.18%)
-
-
-
-org.scalatest.enablers.Collecting[org.scalatest.Entry[String,Int],java.util.HashMap[String,Int]] (12 ms, 0.01%)
-
-
-
-set.type => ?{def should: ?} (41 ms, 0.03%)
-
-
-
-scala.collection.immutable.Map[Int,String] => ?{def should: ?} (97 ms, 0.08%)
-
-
-
-caught.type => ?{def should: ?} (13 ms, 0.01%)
-
-
-
-((Nothing, Nothing)) => Boolean (328 ms, 0.26%)
-
-
-
-org.scalacheck.Shrink[Long] (148 ms, 0.12%)
-
-
-
-e5.message.type => ?{def should: ?} (12 ms, 0.01%)
-
-
-
-org.scalatest.enablers.Sortable[List[ShouldBeSortedSpec.this.Student]] (14 ms, 0.01%)
-
-
-
-org.scalactic.NormalizingEquality[?N] => org.scalatest.enablers.Aggregating[java.util.List[String]] (23 ms, 0.02%)
-
-
-
-org.scalatest.enablers.Collecting[ShouldBeWritableLogicalOrImplicitSpec.this.Thing{val canRead: Boolean},List[ShouldBeWritableLogicalOrImplicitSpec.this.Thing{val canRead: Boolean}]] (14 ms, 0.01%)
-
-
-
-scala.collection.generic.CanBuildFrom[scala.collection.immutable.Vector[Nothing],org.scalatest.Suite,scala.collection.immutable.IndexedSeq[org.scalatest.Suite]] (11 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (16 ms, 0.01%)
-
-
-
-(=> (Any, Any) => Nothing) => org.scalacheck.Prop (11 ms, 0.01%)
-
-
-
-org.scalactic.source.Position (11 ms, 0.01%)
-
-
-
-String("d(e*)(f*)") => ?{def r: ?} (13 ms, 0.01%)
-
-
-
-org.scalacheck.Shrink[String] (271 ms, 0.21%)
-
-
-
-Numeric[Byte] (47 ms, 0.04%)
-
-
-
-org.scalatest.enablers.Aggregating[scala.collection.immutable.Map[Int,String]] (89 ms, 0.07%)
-
-
-
-Array[String] => ?{def deep: ?} (53 ms, 0.04%)
-
-
-
-org.scalatest.enablers.ValueMapping[scala.collection.mutable.HashMap[String,Int]] (18 ms, 0.01%)
-
-
-
-org.scalactic.Equality[Option[Int]] (263 ms, 0.21%)
-
-
-
-caught.message.type => ?{def should: ?} (11 ms, 0.01%)
-
-
-
-Array[String] => ?{def should: ?} (67 ms, 0.05%)
-
-
-
-Long(9L) => ?{def +-: ?} (42 ms, 0.03%)
-
-
-
-org.scalatest.enablers.KeyMapping[scala.collection.immutable.Map[String,Int]] (33 ms, 0.03%)
-
-
-
-org.scalactic.Equality[String] (104 ms, 0.08%)
-
-
-
diff --git a/docs/user-guide/installation.md b/docs/user-guide/installation.md
new file mode 100644
index 0000000..e15d22b
--- /dev/null
+++ b/docs/user-guide/installation.md
@@ -0,0 +1,59 @@
+---
+id: installation
+title: Installation
+---
+
+### Pick the right version
+
+| Scala series | Supported versions | `scalac-profiling` |
+|:-------------|:--------------------|:-------------------|
+| 2.12.x | @SCALA212_VERSIONS@ | `@VERSION@` |
+| 2.13.x | @SCALA213_VERSIONS@ | `@VERSION@` |
+
+### Add the dependency
+
+Add the scalac compiler plugin into your build:
+
+```scala
+addCompilerPlugin("ch.epfl.scala" %% "scalac-profiling" % "@VERSION@" cross CrossVersion.full)
+```
+
+Also, it's required to enable compiler statistics — for Scala 2.13 the needed compiler
+flag is `-Vstatistics`, and for Scala 2.12 is `-Ystatistics`.
+
+For example, for the SBT build tool, add the following settings to `build.sbt`:
+
+```diff
++ inThisBuild(
++ List(
++ addCompilerPlugin("ch.epfl.scala" %% "scalac-profiling" % "@VERSION@" cross CrossVersion.full),
++ ThisBuild / scalacOptions += "-Vstatistics",
++ )
++ )
+```
+
+You can also use project-scoped settings if you want to profile a particular project:
+
+```diff
+lazy val myproject = project
+ .settings(
++ addCompilerPlugin("ch.epfl.scala" %% "scalac-profiling" % "@VERSION@" cross CrossVersion.full),
++ ThisBuild / scalacOptions += "-Vstatistics",
+ )
+```
+
+### Extend the configuration
+
+There are several compiler plugin options to enable to enrichment of analysis capabilities.
+All the following options are prepended by the `-P:scalac-profiling:`.
+
+| Name | Description |
+|:-----------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| `generate-global-flamegraph` | Creates a global flamegraph of implicit searches for all compilation units. Use the `-P:scalac-profiling:sourceroot` option to manage the root directory, otherwise, a working directory (defined by the `user.dir` property) will be picked. |
+| `generate-macro-flamegraph` | Generate a flamegraph for macro expansions. The flamegraph for implicit searches is enabled by default. |
+| `generate-profiledb` | Generate profiledb. |
+| `print-failed-implicit-macro-candidates` | Print trees of all failed implicit searches that triggered a macro expansion. |
+| `print-search-result` | Print the result retrieved by an implicit search. Example: `-P:scalac-profiling:print-search-result:$MACRO_ID`. |
+| `show-concrete-implicit-tparams` | Use more concrete type parameters in the implicit search flamegraph. Note that it may change the shape of the flamegraph. |
+| `show-profiles` | Show implicit searches and macro expansions by type and call-site. |
+| `sourceroot` | Tell the plugin what is the source directory of the project. Example: `-P:scalac-profiling:sourceroot:$PROJECT_BASE_DIR`. |
diff --git a/docs/user-guide/motivation.md b/docs/user-guide/motivation.md
new file mode 100644
index 0000000..f6dcbce
--- /dev/null
+++ b/docs/user-guide/motivation.md
@@ -0,0 +1,52 @@
+---
+id: motivation
+title: What is scalac-profiling?
+---
+
+
+`scalac-profiling` is a compilation profiling tool for Scala 2 projects
+which aims to help you better understand what is slowing down compilation in your project.
+As of the `@VERSION@` version, it's built for Scala 2.12 and 2.13.
+
+### When to use scalac-profiling?
+
+Using implicits and macros can significantly increase compilation time,
+based on their usage and your codebase organization. Suppose your project
+heavily depends on automatic code generation tools powered with macros,
+like type-classes derivation, while it's a super powerful and user-friendly technology,
+it's likely to materialize implicits for the same type many times across the project
+resulting in excessive compilation time. Given all of that, although the `scalac-profiling`
+can be used for general compilation analysis, it is best for chasing down bottlenecks
+with a focus on implicit searches and macro expansions.
+
+### Why scalac-profiling?
+
+With `scalac-profiling`, you can easily generate advantageous [flamegraphs][flamegraph]
+that provide next-level profiling of compilation times. Explore the following flamegraph
+of the implicit searches in the [Scala Steward][scala-steward] project
+we've built by literally adding 5 LoC to the build file and running one script
+from the FlameGraph project. Note that the following graph is clickable.
+
+
+
+
+
+
+
+### Maintenance status
+
+This tool originated at the [Scala Center][scala-center] in 2017-2018
+as the result of the proposal [SCP-10][scp-10], submitted by a [corporate member][corporate-membership]
+of the board. The Center is seeking new corporate members to fund activities such as these,
+to benefit the entire Scala community.
+
+The `scalac-profiling` is now community-maintained, with maintenance overseen by the Center.
+We invite interested users to participate and submit further improvements.
+
+
+
+[corporate-membership]: https://scala.epfl.ch/corporate-membership.html
+[flamegraph]: https://github.com/brendangregg/FlameGraph
+[scala-center]: http://scala.epfl.ch
+[scala-steward]: https://github.com/scala-steward-org/scala-steward
+[scp-10]: https://github.com/scalacenter/advisoryboard/blob/main/proposals/010-compiler-profiling.md
diff --git a/docs/user-guide/usage.md b/docs/user-guide/usage.md
new file mode 100644
index 0000000..7522a40
--- /dev/null
+++ b/docs/user-guide/usage.md
@@ -0,0 +1,66 @@
+---
+id: usage
+title: Usage
+---
+
+### Once everything is set up
+
+By default, `scalac-profiling` generates the _graph representation_ of the
+implicit searches happening during compilation, and optionally of the macro
+expansions separately by enabling proper compiler plugin option
+(check the available [compiler plugin options](installation.md)).
+To be more precise, the compiler plugin does not generate the graphs for you; instead,
+it persists the graph data in a format that allows you to generate the graphs yourself
+without touching or transforming the data. That graph data is present under the
+_profiledb META-INF directory_, located in the _classes_ directory. For example,
+a flamegraph data file will be located at
+`/target/scala-2.13/classes/META-INF/profiledb/graphs/implicit-searches-X.flamegraph`.
+
+The resulting graphs are obtained by using the [FlameGraph][flamegraph] tool.
+They are intuitive to inspect and browse, and stand out because:
+
+* They allow you to selectively choose what things to profile. Click on every
+ stack to zoom in, and reset by clicking "Reset zoom" on the bottom left.
+* They allow you to search via regexes and those matching stacks are
+ highlighted. Check the search button on the top right.
+
+### Lastly, how to generate a flamegraph?
+
+In order to generate flamegraphs, clone the [scalac-profiling][flamegraph]
+GitHub repository. The repository contains the `Flamegraph` git module consisting
+of the tools to generate the SVG files that you will later use. Once the prepared
+data is generated by the compiler plugin (`.flamegraph` file):
+
+1. `cd` into the `Flamegraph` directory;
+2. Execute the `git submodule update --init`;
+3. And run the following command in the `Flamegraph` project's root directory:
+```bash
+./flamegraph.pl \
+ --hash --countname="μs" \
+ --color=scala-compilation \
+ $PATH_TO_FLAMEGRAPH_DATA > implicit-searches-graph.svg
+```
+
+The resulting graph will look like this one we generated for the [Scala Steward][scala-steward] project:
+
+
+
+
+
+
+
+### Reading the graphs
+
+A graph is a set of nodes and edges. A node represents an implicit search for a given type.
+Every node specifies how many implicit searches have been triggered in total,
+and how long they took in total. An edge represents the dependency between
+an implicit search and another one.
+
+> It is important to note that every node in a program can be relied upon by other nodes
+> and can serve as the starting point for an implicit search. Therefore, the number of times a
+> node has been searched for may not always be equal to the total number of nodes that depend on it.
+
+
+[flamegraph]: https://github.com/brendangregg/FlameGraph
+[scalac-profiling]: https://github.com/scalacenter/scalac-profiling/
+[scala-steward]: https://github.com/scala-steward-org/scala-steward
diff --git a/profiledb/src/main/scala/ch.epfl.scala.profiledb/utils/AbsolutePath.scala b/profiledb/src/main/scala/ch.epfl.scala.profiledb/utils/AbsolutePath.scala
index 6221839..a8542a6 100644
--- a/profiledb/src/main/scala/ch.epfl.scala.profiledb/utils/AbsolutePath.scala
+++ b/profiledb/src/main/scala/ch.epfl.scala.profiledb/utils/AbsolutePath.scala
@@ -25,6 +25,8 @@ final class AbsolutePath private (val underlying: Path) extends AnyVal {
AbsolutePath(underlying.resolve(other.underlying))(this)
def resolve(other: String): AbsolutePath = AbsolutePath(underlying.resolve(other))(this)
+ def getParent: AbsolutePath = AbsolutePath(underlying.getParent)
+
def isFile: Boolean = Files.isRegularFile(underlying)
def isDirectory: Boolean = Files.isDirectory(underlying)
def readAllBytes: Array[Byte] = Files.readAllBytes(underlying)
diff --git a/project/build.sbt b/project/build.sbt
index ed56455..eff4ff0 100644
--- a/project/build.sbt
+++ b/project/build.sbt
@@ -6,6 +6,9 @@ lazy val root = project
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.5"),
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12"),
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2"),
+ addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0"),
+ addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.1"),
+ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0"),
// // Let's add our sbt plugin to the sbt too ;)
// unmanagedSourceDirectories in Compile ++= {
// val pluginMainDir = baseDirectory.value.getParentFile / "sbt-plugin" / "src" / "main"
diff --git a/website/core/Footer.js b/website/core/Footer.js
new file mode 100644
index 0000000..3e9d603
--- /dev/null
+++ b/website/core/Footer.js
@@ -0,0 +1,68 @@
+const React = require("react");
+
+const siteConfig = require(process.cwd() + "/siteConfig.js");
+
+class Footer extends React.Component {
+ render() {
+ const currentYear = new Date().getFullYear();
+ const {
+ copyright,
+ colors: { secondaryColor }
+ } = this.props.config;
+ return (
+
+ );
+ }
+}
+
+module.exports = Footer;
diff --git a/website/core/GridBlock.js b/website/core/GridBlock.js
new file mode 100644
index 0000000..4feb4c7
--- /dev/null
+++ b/website/core/GridBlock.js
@@ -0,0 +1,121 @@
+/**
+ * Copyright (c) 2017-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+const React = require('react');
+const classNames = require('classnames');
+
+const MarkdownBlock = require('docusaurus/lib/core/MarkdownBlock.js');
+
+class GridBlock extends React.Component {
+ renderBlock(origBlock) {
+ const blockDefaults = {
+ imageAlign: 'left',
+ };
+
+ const block = {
+ ...blockDefaults,
+ ...origBlock,
+ };
+
+ const blockClasses = classNames('blockElement', this.props.className, {
+ alignCenter: this.props.align === 'center',
+ alignRight: this.props.align === 'right',
+ fourByGridBlock: this.props.layout === 'fourColumn',
+ imageAlignSide:
+ block.image &&
+ (block.imageAlign === 'left' || block.imageAlign === 'right'),
+ imageAlignTop: block.image && block.imageAlign === 'top',
+ imageAlignRight: block.image && block.imageAlign === 'right',
+ imageAlignBottom: block.image && block.imageAlign === 'bottom',
+ imageAlignLeft: block.image && block.imageAlign === 'left',
+ threeByGridBlock: this.props.layout === 'threeColumn',
+ twoByGridBlock: this.props.layout === 'twoColumn',
+ });
+
+ const topLeftImage =
+ (block.imageAlign === 'top' || block.imageAlign === 'left') &&
+ this.renderBlockImage(block.image, block.imageLink, block.imageAlt, block.imageClassName);
+
+ const bottomRightImage =
+ (block.imageAlign === 'bottom' || block.imageAlign === 'right') &&
+ this.renderBlockImage(block.image, block.imageLink, block.imageAlt, block.imageClassName);
+
+ const extra = block.extra
+
+ return (
+
+ {topLeftImage}
+
+ {this.renderBlockTitle(block.title)}
+ {block.content}
+
+ {this.renderBlockExtra(block)}
+ {bottomRightImage}
+
+ );
+ }
+
+ renderBlockExtra(block) {
+ if (!block.extra) {
+ return null;
+ }
+
+ return (
+
+ {block.extra}
+
+ );
+ }
+
+ renderBlockImage(image, imageLink, imageAlt, imageClassName) {
+ if (!image) {
+ return null;
+ }
+
+ const blockClasses = classNames('blockImage', imageClassName);
+
+ return (
+
+ {imageLink ? (
+
+
+
+ ) : (
+
+ )}
+
+ );
+ }
+
+ renderBlockTitle(title) {
+ if (!title) {
+ return null;
+ }
+
+ return (
+
+ {title}
+
+ );
+ }
+
+ render() {
+ return (
+
+ {this.props.contents.map(this.renderBlock, this)}
+
+ );
+ }
+}
+
+GridBlock.defaultProps = {
+ align: 'left',
+ contents: [],
+ layout: 'twoColumn',
+};
+
+module.exports = GridBlock;
diff --git a/website/i18n/en.json b/website/i18n/en.json
new file mode 100644
index 0000000..a565502
--- /dev/null
+++ b/website/i18n/en.json
@@ -0,0 +1,35 @@
+{
+ "_comment": "This file is auto-generated by write-translations.js",
+ "localized-strings": {
+ "next": "Next",
+ "previous": "Previous",
+ "tagline": "Compilation profiling tool for Scala 2 projects",
+ "docs": {
+ "plugins/sbt-plugin": {
+ "title": "SBT Plugin"
+ },
+ "user-guide/installation": {
+ "title": "Installation"
+ },
+ "user-guide/motivation": {
+ "title": "What is scalac-profiling?"
+ },
+ "user-guide/usage": {
+ "title": "Usage"
+ }
+ },
+ "links": {
+ "Docs": "Docs",
+ "GitHub": "GitHub"
+ },
+ "categories": {
+ "Usage": "Usage",
+ "Plugins": "Plugins"
+ }
+ },
+ "pages-strings": {
+ "Help Translate|recruit community translators for your project": "Help Translate",
+ "Edit this Doc|recruitment message asking to edit the doc source": "Edit",
+ "Translate this Doc|recruitment message asking to translate the docs": "Translate"
+ }
+}
diff --git a/website/package.json b/website/package.json
new file mode 100644
index 0000000..5fba5ea
--- /dev/null
+++ b/website/package.json
@@ -0,0 +1,14 @@
+{
+ "scripts": {
+ "examples": "docusaurus-examples",
+ "start": "docusaurus-start",
+ "build": "docusaurus-build",
+ "publish-gh-pages": "docusaurus-publish",
+ "write-translations": "docusaurus-write-translations",
+ "version": "docusaurus-version",
+ "rename-version": "docusaurus-rename-version"
+ },
+ "devDependencies": {
+ "docusaurus": "1.14.7"
+ }
+}
diff --git a/website/pages/en/index.js b/website/pages/en/index.js
new file mode 100644
index 0000000..8c88e97
--- /dev/null
+++ b/website/pages/en/index.js
@@ -0,0 +1,152 @@
+/**
+ * Copyright (c) 2017-present, Facebook, Inc.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+
+const React = require("react");
+
+const CompLibrary = require("../../core/CompLibrary.js");
+
+const highlightBlock = require("highlight.js");
+
+const MarkdownBlock = CompLibrary.MarkdownBlock; /* Used to read markdown */
+const Container = CompLibrary.Container;
+const GridBlock = CompLibrary.GridBlock;
+
+const siteConfig = require(process.cwd() + "/siteConfig.js");
+
+function imgUrl(img) {
+ return siteConfig.baseUrl + "img/" + img;
+}
+
+function docUrl(doc, language) {
+ return siteConfig.baseUrl + "docs/" + (language ? language + "/" : "") + doc;
+}
+
+function pageUrl(page, language) {
+ return siteConfig.baseUrl + (language ? language + "/" : "") + page;
+}
+
+class Button extends React.Component {
+ render() {
+ return (
+
+ );
+ }
+}
+
+Button.defaultProps = {
+ target: "_self"
+};
+
+const SplashContainer = props => (
+
+);
+
+const logoStyle = {
+ marginBottom: '-20px',
+ marginRight: '10px',
+ width: '77px',
+ height: '77px'
+};
+
+const ProjectTitle = _ => (
+
+ {siteConfig.title}
+ {siteConfig.tagline}
+
+);
+
+const PromoSection = props => (
+
+);
+
+class HomeSplash extends React.Component {
+ render() {
+ let language = this.props.language || "";
+ return (
+
+
+
+
+
+
+ Get started
+
+
+
+
+
+ );
+ }
+}
+
+const Features = props => {
+ const features = [
+ {
+ title: "Speed up compilation",
+ content:
+ "Analyze your Scala 2 project and chase down compilation time bottlenecks with a focus on implicit searches and macro expansions.",
+ image: imgUrl("speed-up-compilation.png"),
+ imageAlign: "right"
+ },
+ {
+ title: "Optimize your macros",
+ content:
+ "As a library author, improve the implementation of your macros to avoid excessive compilation time.",
+ image: imgUrl("macro-impl.png"),
+ imageAlign: "left"
+ }
+ ];
+
+ return (
+
+ {features.map(feature => (
+ {[feature]}
+ ))}
+
+ );
+};
+
+const Block = props => (
+
+
+
+);
+
+class Index extends React.Component {
+ render() {
+ let language = this.props.language || "";
+ return (
+
+ );
+ }
+}
+
+module.exports = Index;
diff --git a/website/sidebars.json b/website/sidebars.json
new file mode 100644
index 0000000..82caf2a
--- /dev/null
+++ b/website/sidebars.json
@@ -0,0 +1,8 @@
+{
+ "user-guide": {
+ "Usage": ["user-guide/motivation", "user-guide/installation", "user-guide/usage"],
+ "Plugins": [
+ "plugins/sbt-plugin"
+ ]
+ }
+}
diff --git a/website/siteConfig.js b/website/siteConfig.js
new file mode 100644
index 0000000..7059aa1
--- /dev/null
+++ b/website/siteConfig.js
@@ -0,0 +1,69 @@
+// See https://docusaurus.io/docs/site-config.html for all the possible
+// site configuration options.
+
+const repoUrl = "https://github.com/scalacenter/scalac-profiling";
+
+const siteConfig = {
+ title: "scalac-profiling",
+ tagline: "Compilation profiling tool for Scala 2 projects",
+
+ url: "https://scalacenter.github.io/",
+ baseUrl: "/scalac-profiling/",
+
+ // Used for publishing and more
+ projectName: "scalac-profiling",
+ organizationName: "scalacenter",
+
+ algolia: {
+ apiKey: "",
+ indexName: ""
+ },
+
+ // For no header links in the top nav bar -> headerLinks: [],
+ headerLinks: [
+ { doc: "user-guide/motivation", label: "Docs" },
+ // TODO: Add the 'Case Studies' chapter
+ // { doc: "case-studies/index", label: "Case Studies" },
+ { href: repoUrl, label: "GitHub", external: true }
+ ],
+
+ // If you have users set above, you add it here:
+ // users,
+
+ /* path to images for header/footer */
+ headerIcon: "img/scalac-profiling-logo.png",
+ footerIcon: "img/scalac-profiling-logo.png",
+ favicon: "img/favicon.png",
+
+ /* colors for website */
+ colors: {
+ primaryColor: "#008040",
+ secondaryColor: "#005028"
+ },
+
+ customDocsPath: "out",
+
+ // This copyright info is used in /core/Footer.js and blog rss/atom feeds.
+ copyright: `Copyright © ${new Date().getFullYear()} Scala Center`,
+
+ highlight: {
+ // Highlight.js theme to use for syntax highlighting in code blocks
+ theme: "github"
+ },
+
+ /* On page navigation for the current documentation page */
+ onPageNav: "separate",
+
+ /* Open Graph and Twitter card images */
+ ogImage: "img/scalac-profiling-logo.png",
+ twitterImage: "img/scalac-profiling-logo.png",
+
+ editUrl: `${repoUrl}/edit/main/docs/`,
+
+ // Disabled because relative *.md links result in 404s.
+ // cleanUrl: true,
+
+ repoUrl
+};
+
+module.exports = siteConfig;
diff --git a/website/static/css/custom.css b/website/static/css/custom.css
new file mode 100644
index 0000000..0f0ed3f
--- /dev/null
+++ b/website/static/css/custom.css
@@ -0,0 +1,81 @@
+/* your custom css */
+
+.lightBackground {
+ background-color: #fafafa;
+}
+
+.fixedHeaderContainer header img {
+ margin-right: 5px;
+}
+
+.imageAlignSide .blockImage {
+ max-width: 700px;
+ flex: 0 1 700px;
+}
+
+.container.paddingTop {
+ padding-top: 40px;
+}
+
+.container.paddingBottom {
+ padding-bottom: 60px;
+}
+
+@media only screen and (--min-device-width: 360px) and (--max-device-width: 736px) {
+}
+
+@media only screen and (min-width: 736px) {
+ .diagram {
+ margin: 0px auto;
+ width: 70%;
+ margin-top: 3em;
+ margin-bottom: 3em;
+ }
+}
+
+@media only screen and (max-width: 960px) {
+ .wrapper {
+ max-width: 700px;
+ }
+ .imageAlignSide.imageAlignLeft {
+ flex-flow: row wrap-reverse;
+ }
+ .imageAlignSide .blockImage {
+ margin-top: 20px;
+ }
+ .imageAlignLeft .blockImage {
+ margin-right: 0;
+ }
+ .imageAlignRight .blockImage {
+ margin-left: 0;
+ }
+}
+
+@media only screen and (min-width: 1024px) {
+}
+
+@media only screen and (max-width: 1023px) {
+}
+
+@media only screen and (min-width: 1400px) {
+}
+
+@media only screen and (min-width: 1500px) {
+ .wrapper {
+ max-width: 1100px;
+ }
+}
+
+
+article a {
+ text-decoration: underline;
+}
+
+
+table td,
+table th {
+ border-color: transparent;
+}
+table th {
+ border-bottom-color: inherit;
+}
diff --git a/website/static/img/favicon.ico b/website/static/img/favicon.ico
new file mode 100644
index 0000000..7652ae6
Binary files /dev/null and b/website/static/img/favicon.ico differ
diff --git a/website/static/img/favicon.png b/website/static/img/favicon.png
new file mode 100644
index 0000000..1136ea4
Binary files /dev/null and b/website/static/img/favicon.png differ
diff --git a/website/static/img/macro-impl.png b/website/static/img/macro-impl.png
new file mode 100644
index 0000000..0388c1f
Binary files /dev/null and b/website/static/img/macro-impl.png differ
diff --git a/website/static/img/scala-steward-implicit-searches-flamegraph.svg b/website/static/img/scala-steward-implicit-searches-flamegraph.svg
new file mode 100644
index 0000000..5b58139
--- /dev/null
+++ b/website/static/img/scala-steward-implicit-searches-flamegraph.svg
@@ -0,0 +1,13477 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Implicit Searches Flame Graph of Scala Steward
+
+Reset Zoom
+Search
+ic
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (893 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pin")]} (id 8341) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,554 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Dependency]{type Out = K} (id 1459) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,598 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("limit")]} (id 8335) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,092 μs, 0.02%)
+
+
+
+((com.monovore.decline.Opts[Boolean], com.monovore.decline.Opts[Option[Int]], com.monovore.decline.Opts[Boolean])) => ?{def mapN: ?} (expanded macros 0) (1,888 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("MavenRepository")]} (id 2167) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,685 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (10,524 μs, 0.17%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("scalafmt")]} (id 7628) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (593 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.DependencyInfo]{type Out = K} (id 1592) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,857 μs, 0.03%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Resolver.Header] (expanded macros 0) (1,754 μs, 0.03%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.PostUpdateHookConfig] (expanded macros 0) (874 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.NewPR]{type Repr = V} (expanded macros 3) (3,167 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("suffix")] :: Symbol with shapeless.tag.Tagged[String("exact")] :: Symbol with shapeless.tag.Tagged[String("contains")] :: shapeless.HNil,Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,600 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("links")] :: shapeless.HNil,scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,765 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (9,640 μs, 0.16%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 1970) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,470 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucket.CreateComment]{type Repr = V} (expanded macros 3) (1,782 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.NewPR]{type Out = K} (id 4035) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,725 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("configurations")]} (id 1468) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,685 μs, 0.03%)
+
+
+
+cats.Functor[G] (expanded macros 0) (2,013 μs, 0.03%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] (expanded macros 0) (558 μs, 0.01%)
+
+
+
+cats.kernel.Order[org.scalasteward.core.data.Resolver] (expanded macros 0) (650 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repocache.RepoCache]{type Repr = V} (id 6849) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,267 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("filter")] :: shapeless.HNil,String :: Option[String] :: cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] :: shapeless.HNil]{type Out = R} (expanded macros 0) (3,352 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucket.DefaultReviewers]{type Repr = V} (expanded macros 3) (3,554 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.edit.scalafix.ScalafixMigration]{type Repr = V} (id 2764) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,138 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (663 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (894 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.data.GroupId] (expanded macros 0) (854 μs, 0.01%)
+
+
+
+F[Option[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]]] => ?{def map: ?} (expanded macros 0) (1,197 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Branch] (expanded macros 0) (1,097 μs, 0.02%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[org.scalasteward.core.repoconfig.PullRequestGroup]] :: Some[Option[scala.util.matching.Regex]] :: Some[List[String]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("grouping")] :: Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (4,216 μs, 0.07%)
+
+
+
+cats.Foldable[Array] (expanded macros 0) (3,389 μs, 0.05%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.coursier.VersionsCache.Value]{type Repr = R} (expanded macros 0) (66,800 μs, 1.08%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (1,773 μs, 0.03%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (1,287 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("artifactId")]} (id 1472) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,102 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("clone_url")] :: Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("parent")] :: shapeless.HNil,org.http4s.Uri :: String :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (9,089 μs, 0.15%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (595 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.EditPullRequestOption]{type Repr = R} (expanded macros 0) (12,757 μs, 0.21%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("contains")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,535 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: shapeless.HNil]] (id 5311) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (2,223 μs, 0.04%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.data.Comment] (expanded macros 0) (2,206 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.decoding.ConfiguredDecoder[org.scalasteward.core.update.artifact.ArtifactChange]] (id 8713) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (62,050 μs, 1.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("groupId")]} (id 7252) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (708 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("updates")] :: shapeless.HNil,List[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,921 μs, 0.06%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("labels")]} (id 5486) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (747 μs, 0.01%)
+
+
+
+cats.Functor[List] (expanded macros 0) (1,397 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("changes")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (968 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.PullRequestFrequency] (expanded macros 0) (1,652 μs, 0.03%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.data.Comment] (expanded macros 0) (11,807 μs, 0.19%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.util.Timestamp] (expanded macros 0) (1,592 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.ArtifactId]{type Out = K} (id 1386) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,619 μs, 0.04%)
+
+
+
+dependency.artifactId.type => ?{def === : ?} (expanded macros 0) (736 μs, 0.01%)
+
+
+
+cats.kernel.Eq[Char] (expanded macros 0) (1,107 μs, 0.02%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.repoconfig.VersionPattern]] (expanded macros 0) (1,714 μs, 0.03%)
+
+
+
+Option[F[org.scalasteward.core.forge.bitbucket.RepositoryResponse]] => ?{def sequence: ?} (expanded macros 0) (1,597 μs, 0.03%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = D} (expanded macros 0) (11,312 μs, 0.18%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.PullRequestNumber] (expanded macros 0) (1,903 μs, 0.03%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("changes")] :: shapeless.HNil]{type Out = Rec} (expanded macros 0) (570 μs, 0.01%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.DependencyInfo]]]] (expanded macros 0) (6,098 μs, 0.10%)
+
+
+
+coursier.util.Monad[[_]F[_]] (expanded macros 0) (1,964 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("pullRequests")] :: Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (21,113 μs, 0.34%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = K} (id 2061) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,755 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]{type Repr = R} (expanded macros 0) (37,771 μs, 0.61%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,636 μs, 0.06%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 2084) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,086 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.Credentials]{type Out = K} (id 1642) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,450 μs, 0.02%)
+
+
+
+((Nothing, Nothing)) => String (expanded macros 0) (1,635 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.bitbucketserver.Json.Repository]] (id 4187) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (16,240 μs, 0.26%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("dependency")] :: shapeless.HNil,org.scalasteward.core.repoconfig.UpdatePattern :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,060 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (715 μs, 0.01%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.GroupId] (expanded macros 0) (6,362 μs, 0.10%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("changes")]} (id 8838) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (655 μs, 0.01%)
+
+
+
+F[Option[org.scalasteward.core.forge.bitbucket.RepositoryResponse]] => ?{def map: ?} (expanded macros 0) (2,533 μs, 0.04%)
+
+
+
+response.type => ?{def as: ?} (expanded macros 0) (3,890 μs, 0.06%)
+
+
+
+F[Unit] => ?{def handleErrorWith: ?} (expanded macros 0) (587 μs, 0.01%)
+
+
+
+G[B] => ?{def map: ?} (expanded macros 0) (5,487 μs, 0.09%)
+
+
+
+ValueOf[org.scalasteward.core.repoconfig.UpdatePattern] (expanded macros 0) (602 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitlab.ForkPayload]{type Repr = V} (expanded macros 3) (1,473 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.update.artifact.ArtifactChange]{type Out = K} (id 8716) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (962 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,759 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.TokenOut]{type Repr = V} (id 5357) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,031 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Condition]{type Repr = R} (expanded macros 0) (10,055 μs, 0.16%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (534 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.buildtool.sbt.data.SbtVersion]{type Repr = R :: shapeless.HNil} (expanded macros 3) (12,476 μs, 0.20%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pin")]} (id 8327) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,340 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("default_branch")]} (id 4556) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,320 μs, 0.02%)
+
+
+
+List[String] => ?{def intercalate: ?} (expanded macros 0) (545 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")]} (id 7452) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,325 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.azurerepos.ClosePullRequestPayload]{type Repr = V} (id 3414) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,134 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("html_url")] :: Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("head")] :: shapeless.HNil,org.http4s.Uri :: String :: Int :: String :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: shapeless.HNil]{type Out = R} (expanded macros 0) (17,551 μs, 0.28%)
+
+
+
+org.http4s.Header[org.http4s.headers.Authorization, _] (expanded macros 0) (731 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.BranchResp]] (id 4613) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (24,997 μs, 0.41%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.PullRequestGroup]{type Repr = R} (expanded macros 0) (9,371 μs, 0.15%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.AttachLabelReq]{type Out = K} (id 4839) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,942 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,Option[String] :: String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,979 μs, 0.03%)
+
+
+
+shapeless.Lazy[shapeless.Generic[org.scalasteward.core.data.Version]{type Repr = R :: shapeless.HNil}] (id 2542) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (113,647 μs, 1.84%)
+s..
+
+
+cats.Functor[G] (expanded macros 0) (2,338 μs, 0.04%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (1,202 μs, 0.02%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Out = D} (expanded macros 0) (3,151 μs, 0.05%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.PullRequestOut] (expanded macros 0) (1,225 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("milestone")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,Option[Vector[Int]] :: Option[Int] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (9,094 μs, 0.15%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("entryCreatedAt")] :: Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("updateBranch")] :: shapeless.HNil,org.scalasteward.core.util.Timestamp :: Option[org.scalasteward.core.forge.data.PullRequestNumber] :: Option[org.scalasteward.core.git.Branch] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (7,727 μs, 0.13%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucket.Reviewer]{type Repr = V} (expanded macros 3) (1,637 μs, 0.03%)
+
+
+
+dependency.version.type => ?{def > : ?} (expanded macros 0) (639 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pattern")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (9,027 μs, 0.15%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("limit")],Symbol with shapeless.tag.Tagged[String("fileExtensions")],Lub0] (expanded macros 0) (724 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,525 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("links")] :: shapeless.HNil,String :: org.scalasteward.core.forge.data.PullRequestState :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,160 μs, 0.07%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("description")],String] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],Option[List[String]]] :: Option[List[Int]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignee_ids")],Option[List[Int]]] :: Option[List[Int]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewer_ids")],Option[List[Int]]] :: Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("target_project_id")],Long] :: Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("remove_source_branch")],Option[Boolean]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("source_branch")],String] :: org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("target_branch")],org.scalasteward.core.git.Branch] :: shapeless.HNil] (id 5492) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (8,563 μs, 0.14%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("description")] :: shapeless.HNil,String :: Option[List[String]] :: String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,684 μs, 0.08%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("customLabels")]} (id 7546) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,142 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("key")]} (id 1665) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,113 μs, 0.02%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId]] (expanded macros 0) (1,409 μs, 0.02%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Some[Option[List[String]]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (2,978 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("artifactIds")]} (id 2782) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,060 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Update.ForArtifactId]{type Repr = R} (expanded macros 0) (37,033 μs, 0.60%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (8,580 μs, 0.14%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Link]{type Out = K} (id 4019) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,235 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateIssueCommentOption]{type Out = K} (id 4771) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,641 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("executionOrder")] :: shapeless.HNil,Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,631 μs, 0.04%)
+
+
+
+F[Unit] => ?{def >> : ?} (expanded macros 0) (16,308 μs, 0.26%)
+
+
+
+cats.kernel.Semigroup[Option[org.scalasteward.core.repoconfig.RepoConfig]] (expanded macros 0) (685 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("entryCreatedAt")]} (id 6588) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,100 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.repocache.RepoCache]] (id 6843) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (45,112 μs, 0.73%)
+
+
+
+io.circe.Decoder[Option[Boolean]] (expanded macros 0) (692 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("changes")]} (id 8847) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (563 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("updateBranch")] :: shapeless.HNil,Option[org.scalasteward.core.git.Branch] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,387 μs, 0.05%)
+
+
+
+cats.kernel.Eq[String] (expanded macros 0) (12,854 μs, 0.21%)
+
+
+
+shapeless.Lazy[shapeless.Generic[org.scalasteward.core.buildtool.sbt.data.SbtVersion]{type Repr = R :: shapeless.HNil}] (id 996) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (17,334 μs, 0.28%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = R} (expanded macros 0) (1,354 μs, 0.02%)
+
+
+
+cats.Foldable[[+O]fs2.Stream[[x]fs2.Pure[x],O]] (expanded macros 0) (5,334 μs, 0.09%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("maybeCrossName")],Option[String]] :: shapeless.HNil] (id 1395) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (8,778 μs, 0.14%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (904 μs, 0.01%)
+
+
+
+Ordering[org.scalasteward.core.data.Update.Single] (expanded macros 0) (1,542 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = V} (id 2062) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,413 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 4561) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,297 μs, 0.02%)
+
+
+
+cats.kernel.PartialOrder[org.scalasteward.core.data.Version] (expanded macros 0) (1,136 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Link]{type Repr = V} (expanded macros 3) (2,401 μs, 0.04%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Link] (expanded macros 0) (18,310 μs, 0.30%)
+
+
+
+cats.kernel.Order[(Int, String, String)] (expanded macros 0) (3,772 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("source_branch")] :: Symbol with shapeless.tag.Tagged[String("target_branch")] :: shapeless.HNil,String :: org.scalasteward.core.git.Branch :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,796 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (6,973 μs, 0.11%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("body")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,635 μs, 0.03%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.data.Update.ForArtifactId] (expanded macros 0) (47,472 μs, 0.77%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("artifactId")],Symbol with shapeless.tag.Tagged[_ >: String("addToGitBlameIgnoreRevs") with String("commitMessage") with String("command") <: String],Lub0] (expanded macros 0) (878 μs, 0.01%)
+
+
+
+cats.kernel.PartialOrder[org.scalasteward.core.data.Version] (expanded macros 0) (1,080 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.ReprAsObjectCodec[Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("runAfterUpgrading")],Option[Boolean]] :: shapeless.HNil] (id 8139) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredCodec`) (3,572 μs, 0.06%)
+
+
+
+cats.Invariant[Option] (expanded macros 0) (1,977 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,109 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Repo]{type Out = K} (id 4170) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (995 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("failedAt")] :: Symbol with shapeless.tag.Tagged[String("message")] :: shapeless.HNil,org.scalasteward.core.util.Timestamp :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (3,190 μs, 0.05%)
+
+
+
+io.circe.Decoder[scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]]] (expanded macros 0) (1,708 μs, 0.03%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Version] (expanded macros 0) (1,799 μs, 0.03%)
+
+
+
+shapeless.Lazy[shapeless.Generic[org.scalasteward.core.buildtool.sbt.data.ScalaVersion]{type Repr = R :: shapeless.HNil}] (id 1007) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (6,805 μs, 0.11%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]{type Repr = V} (id 4212) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (951 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] :: Option[List[String]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,457 μs, 0.09%)
+
+
+
+cats.FlatMap[List] (expanded macros 0) (7,656 μs, 0.12%)
+
+
+
+scala.math.Ordering[Int] (expanded macros 0) (707 μs, 0.01%)
+
+
+
+cats.FlatMap[Option] (expanded macros 0) (565 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.edit.scalafix.ScalafixMigration] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("migrations")],List[org.scalasteward.core.edit.scalafix.ScalafixMigration]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (2,311 μs, 0.04%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pin")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allow")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allowPreReleases")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ignore")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (9,300 μs, 0.15%)
+
+
+
+shapeless.Generic[org.scalasteward.core.nurture.PullRequestRepository.Entry]{type Repr = V} (expanded macros 3) (2,261 μs, 0.04%)
+
+
+
+cats.effect.kernel.Sync[cats.effect.IO] (expanded macros 0) (2,361 μs, 0.04%)
+
+
+
+String("ForGroupId") => ?{def -> : ?} (expanded macros 0) (838 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("draft")]} (id 4974) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (842 μs, 0.01%)
+
+
+
+accu.type => ?{def pure: ?} (expanded macros 0) (938 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupIdBefore")],Option[org.scalasteward.core.data.GroupId]] :: org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupIdAfter")],org.scalasteward.core.data.GroupId] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdBefore")],Option[String]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdAfter")],String] :: shapeless.HNil]{type Out = F} (expanded macros 0) (18,799 μs, 0.30%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.VersionPattern]{type Out = K} (id 8491) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,127 μs, 0.02%)
+
+
+
+ValueOf[org.scalasteward.core.data.Version] (expanded macros 0) (1,935 μs, 0.03%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Author] (expanded macros 0) (1,270 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("frequency")] :: Symbol with shapeless.tag.Tagged[String("grouping")] :: Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,Option[org.scalasteward.core.repoconfig.PullRequestFrequency] :: List[org.scalasteward.core.repoconfig.PullRequestGroup] :: Option[scala.util.matching.Regex] :: List[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (10,234 μs, 0.17%)
+
+
+
+F[org.scalasteward.core.edit.scalafix.ScalafixMigrations] => ?{def map: ?} (expanded macros 0) (1,133 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updates")]} (id 2483) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,897 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,879 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateLabelReq]{type Out = K} (id 4822) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,965 μs, 0.03%)
+
+
+
+DependencyMetadata.this.scmUrl.type => ?{def filterA: ?} (expanded macros 0) (961 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = R} (expanded macros 0) (1,308 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("repository")] :: shapeless.HNil,org.scalasteward.core.forge.bitbucketserver.Json.Repository :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,437 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.UpdatePullRequestPayload]{type Repr = V} (id 5371) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,001 μs, 0.02%)
+
+
+
+Array[String] => ?{def take: ?} (expanded macros 0) (2,371 μs, 0.04%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.repoconfig.GroupRepoConfig] (expanded macros 0) (15,057 μs, 0.24%)
+
+
+
+F[org.scalasteward.core.data.ProcessResult] => ?{def flatMap: ?} (expanded macros 0) (546 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.BuildRootConfig] (expanded macros 0) (894 μs, 0.01%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("href")],org.http4s.Uri] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],Option[String]] :: shapeless.HNil] (id 4028) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (4,457 μs, 0.07%)
+
+
+
+((com.monovore.decline.Opts[List[org.scalasteward.core.application.Cli.EnvVar]], com.monovore.decline.Opts[scala.concurrent.duration.FiniteDuration], com.monovore.decline.Opts[org.scalasteward.core.application.Config.SandboxCfg], com.monovore.decline.Opts[Int])) => ?{def mapN: ?} (expanded macros 0) (1,966 μs, 0.03%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] (expanded macros 0) (561 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.forge.bitbucketserver.Json.Page[org.scalasteward.core.forge.bitbucketserver.Json.PR]] => ?{def map: ?} (expanded macros 0) (1,361 μs, 0.02%)
+
+
+
+(=> names.type) => ?{def mkString_: ?} (expanded macros 0) (821 μs, 0.01%)
+
+
+
+eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined] (expanded macros 0) (1,147 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("sha")]} (id 4641) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,596 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("links")]} (id 4103) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (918 μs, 0.01%)
+
+
+
+io.circe.Encoder[Long] (expanded macros 0) (581 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("values")] :: shapeless.HNil,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Branch] :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,798 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("target_branch")]} (id 5480) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,130 μs, 0.02%)
+
+
+
+io.circe.Encoder[List[String]] (expanded macros 0) (703 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: None.type :: None.type :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("groupIdAfter")] :: Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (937 μs, 0.02%)
+
+
+
+cats.Functor[F] (expanded macros 0) (22,519 μs, 0.37%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Repr = V} (id 7445) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,798 μs, 0.03%)
+
+
+
+String("state_event") => ?{def -> : ?} (expanded macros 0) (651 μs, 0.01%)
+
+
+
+cats.effect.kernel.Async[cats.effect.IO] (expanded macros 0) (39,713 μs, 0.64%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.ScalafmtConfig]] (id 8118) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (24,115 μs, 0.39%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.data.Version]] (id 2540) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (119,449 μs, 1.94%)
+s..
+
+
+F[scala.collection.immutable.Map[org.scalasteward.core.data.Dependency,org.scalasteward.core.coursier.DependencyMetadata]] => ?{def map: ?} (expanded macros 0) (844 μs, 0.01%)
+
+
+
+cats.kernel.Eq[Option[org.scalasteward.core.repoconfig.VersionPattern]] (expanded macros 0) (2,107 μs, 0.03%)
+
+
+
+F[org.scalasteward.core.persistence.JsonKeyValueStore[F,org.scalasteward.core.coursier.VersionsCache.Key,org.scalasteward.core.coursier.VersionsCache.Value]] => ?{def map: ?} (expanded macros 0) (3,996 μs, 0.06%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.buildtool.mill.MillModule]] (expanded macros 0) (4,663 μs, 0.08%)
+
+
+
+scala.reflect.ClassTag[String] (expanded macros 1) (659 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = V} (id 1840) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,814 μs, 0.05%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[Option[List[String]]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (1,920 μs, 0.03%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Branches] (expanded macros 0) (13,639 μs, 0.22%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucket.DefaultReviewers]{type Repr = V} (id 3687) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,182 μs, 0.02%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.repoconfig.UpdatePattern]] (expanded macros 0) (2,165 μs, 0.04%)
+
+
+
+String => Iterable[Char] (expanded macros 0) (563 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,Option[Boolean] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,186 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("filter")] :: shapeless.HNil,cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,161 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.InstallationOut]{type Out = K} (id 5303) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (720 μs, 0.01%)
+
+
+
+capped.length.type => ?{def === : ?} (expanded macros 0) (570 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Out = K} (id 7459) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,571 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.decoding.ReprDecoder[List[org.scalasteward.core.edit.scalafix.ScalafixMigration] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("migrations")],List[org.scalasteward.core.edit.scalafix.ScalafixMigration]] :: shapeless.HNil]] (id 2863) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (5,925 μs, 0.10%)
+
+
+
+buildRoot.relativePath.type => ?{def dropWhile: ?} (expanded macros 0) (1,593 μs, 0.03%)
+
+
+
+io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.PostUpdateHookConfig] (expanded macros 0) (65,161 μs, 1.06%)
+
+
+
+eu.timepit.refined.api.Validate[Char,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]{type R = RB} (expanded macros 0) (12,413 μs, 0.20%)
+
+
+
+cats.Functor[F] (expanded macros 0) (818 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Update.ForGroupId]{type Repr = R} (expanded macros 0) (29,467 μs, 0.48%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.github.TokenOut]] (id 5351) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (12,013 μs, 0.19%)
+
+
+
+cats.FunctorFilter[[+O]fs2.Stream[[x]fs2.Pure[x],O]] (expanded macros 0) (549 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("clone_url")] :: Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("archived")] :: shapeless.HNil,org.http4s.Uri :: org.scalasteward.core.git.Branch :: Boolean :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,998 μs, 0.08%)
+
+
+
+shapeless.Generic[org.scalasteward.core.update.artifact.ArtifactChanges]{type Repr = V} (expanded macros 3) (1,817 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("body")]} (id 4304) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (801 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.UpdatePattern]{type Out = K} (id 8177) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (949 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Version]{type Repr = R :: shapeless.HNil} (expanded macros 3) (110,659 μs, 1.79%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (2,270 μs, 0.04%)
+
+
+
+F[cats.effect.kernel.Ref[F,Option[(K, Option[V])]]] => ?{def map: ?} (expanded macros 0) (661 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.nurture.PullRequestRepository.Entry] (expanded macros 0) (1,296 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.EditPullRequestOption]{type Out = K} (id 4707) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,522 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Ref]{type Out = K} (id 4153) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,095 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: shapeless.HNil,Option[String] :: List[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,687 μs, 0.11%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PullRequestGroup]{type Out = K} (id 7331) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (929 μs, 0.02%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.User] (expanded macros 0) (23,847 μs, 0.39%)
+
+
+
+cats.kernel.Order[(A, List[org.scalasteward.core.data.Resolver])] (expanded macros 0) (1,960 μs, 0.03%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (541 μs, 0.01%)
+
+
+
+List[org.scalasteward.core.forge.github.Repository] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("repositories")],List[org.scalasteward.core.forge.github.Repository]] :: shapeless.HNil <:< (List[org.scalasteward.core.forge.github.Repository] :: shapeless.HNil) (expanded macros 0) (44,353 μs, 0.72%)
+
+
+
+F[(A, org.http4s.Headers)] => ?{def map: ?} (expanded macros 0) (1,445 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (1,867 μs, 0.03%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("message")],Option[String]] :: shapeless.HNil] (expanded macros 0) (878 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sha1")],org.scalasteward.core.git.Sha1] :: List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.DependencyInfo]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyInfos")],List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.DependencyInfo]]]] :: Option[org.scalasteward.core.repoconfig.RepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("maybeRepoConfig")],Option[org.scalasteward.core.repoconfig.RepoConfig]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("maybeRepoConfigParsingError")],Option[String]] :: shapeless.HNil]] (id 6860) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (22,430 μs, 0.36%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateIssueCommentOption]{type Repr = V} (expanded macros 3) (2,439 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver]{type Repr = V} (id 2163) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,008 μs, 0.03%)
+
+
+
+io.circe.Encoder[Option[List[Int]]] (expanded macros 0) (1,032 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,509 μs, 0.02%)
+
+
+
+((String, String)) => org.http4s.Header.ToRaw (expanded macros 0) (7,477 μs, 0.12%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (1,406 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.Repository]{type Out = K} (id 5340) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (843 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("newerArtifactId")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,174 μs, 0.08%)
+
+
+
+io.circe.Encoder[List[String]] (expanded macros 0) (1,668 μs, 0.03%)
+
+
+
+F[List[Option[(String, Int)]]] => ?{def map: ?} (expanded macros 0) (769 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("exact")]} (id 8499) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (540 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreatePullRequestOption]{type Repr = R} (expanded macros 0) (42,537 μs, 0.69%)
+
+
+
+cats.effect.kernel.GenConcurrent[[x]F[x],Throwable] (expanded macros 0) (1,054 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.data.UserOut]{type Repr = R} (expanded macros 0) (6,881 μs, 0.11%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] :: Option[List[String]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (9,888 μs, 0.16%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.RepositoriesOut]{type Repr = V} (expanded macros 3) (1,199 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Repr = R} (expanded macros 0) (20,795 μs, 0.34%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: None.type :: Some[List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (2,091 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.GitHubAssignees]{type Repr = V} (expanded macros 3) (1,264 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("authors")]} (id 2777) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,020 μs, 0.02%)
+
+
+
+Char('=') => String (expanded macros 0) (29,761 μs, 0.48%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] (expanded macros 0) (2,435 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = 'f'} (id 6033) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (544 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.ArtifactId]{type Repr = V} (id 1387) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,418 μs, 0.04%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (601 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactId")],Option[String]] :: cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("command")],cats.data.NonEmptyList[String]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commitMessage")],String] :: Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")],Option[Boolean]] :: shapeless.HNil] (expanded macros 0) (4,695 μs, 0.08%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.data.UpdateState] (expanded macros 0) (11,725 μs, 0.19%)
+
+
+
+F[org.scalasteward.core.forge.bitbucketserver.Json.PR] => ?{def flatMap: ?} (expanded macros 0) (1,726 μs, 0.03%)
+
+
+
+cats.kernel.Order[cats.data.NonEmptyList[org.scalasteward.core.data.Version]] (expanded macros 0) (875 μs, 0.01%)
+
+
+
+cats.NotNull[java.util.regex.PatternSyntaxException] (expanded macros 0) (570 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (1,177 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 2117) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (920 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repocache.RefreshErrorAlg.Entry]{type Repr = V} (expanded macros 3) (1,310 μs, 0.02%)
+
+
+
+cats.kernel.Eq[Option[String]] (expanded macros 0) (788 μs, 0.01%)
+
+
+
+cats.kernel.Order[(org.scalasteward.core.data.GroupId, String, org.scalasteward.core.data.Version, cats.data.NonEmptyList[org.scalasteward.core.data.Version])] (expanded macros 0) (2,987 μs, 0.05%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (683 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("uuid")],String] :: shapeless.HNil]] (id 3725) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,440 μs, 0.07%)
+
+
+
+List[org.http4s.Uri] => ?{def flatTraverse: ?} (expanded macros 0) (1,262 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.data.Update.Grouped] (expanded macros 0) (32,912 μs, 0.53%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.bitbucket.CreateComment] (expanded macros 0) (1,468 μs, 0.02%)
+
+
+
+F[Option[String]] => ?{def flatMap: ?} (expanded macros 0) (3,801 μs, 0.06%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allow")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allowPreReleases")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ignore")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (7,505 μs, 0.12%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 4791) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,859 μs, 0.03%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("credentials")],Symbol with shapeless.tag.Tagged[String("headers")],Lub0] (expanded macros 0) (1,077 μs, 0.02%)
+
+
+
+recurse.type => ?{def >> : ?} (expanded macros 0) (1,740 μs, 0.03%)
+
+
+
+sbtCommands.type => ?{def mkString_(x$1: ? >: String(" (2,635 μs, 0.04%)
+
+
+
+info.dependency.groupId.type => ?{def === : ?} (expanded macros 0) (1,458 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitlab.MergeRequestPayload]{type Repr = R} (expanded macros 0) (28,522 μs, 0.46%)
+
+
+
+F[Boolean] => ?{def flatMap: ?} (expanded macros 0) (5,257 μs, 0.09%)
+
+
+
+Unit <:< Unit (expanded macros 0) (8,197 μs, 0.13%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("content")],String] :: shapeless.HNil]] (id 3433) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,540 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.RepoConfig]{type Out = Labels} (id 7831) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,553 μs, 0.03%)
+
+
+
+cats.FunctorFilter[cats.parse.Parser] (expanded macros 0) (527 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("color")]} (id 4829) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,650 μs, 0.03%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.forge.bitbucket.Reviewer]] (expanded macros 0) (2,191 μs, 0.04%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.data.CrossDependency with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("crossDependency")],org.scalasteward.core.data.CrossDependency] :: cats.data.NonEmptyList[org.scalasteward.core.data.Version] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerVersions")],cats.data.NonEmptyList[org.scalasteward.core.data.Version]] :: Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerGroupId")],Option[org.scalasteward.core.data.GroupId]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerArtifactId")],Option[String]] :: shapeless.HNil] (id 2366) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (16,758 μs, 0.27%)
+
+
+
+cats.kernel.Eq[Option[String]] (expanded macros 0) (880 μs, 0.01%)
+
+
+
+F[List[org.scalasteward.core.buildtool.BuildToolAlg[F]]] => ?{def map: ?} (expanded macros 0) (1,298 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: Symbol with shapeless.tag.Tagged[String("owner")] :: Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("archived")] :: Symbol with shapeless.tag.Tagged[String("clone_url")] :: Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("parent")] :: shapeless.HNil,Long :: org.scalasteward.core.forge.gitea.GiteaApiAlg.User :: String :: Boolean :: org.http4s.Uri :: String :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (19,658 μs, 0.32%)
+
+
+
+F[(org.scalasteward.core.forge.data.Comment, org.scalasteward.core.git.Branch)] => ?{def flatMap: ?} (expanded macros 0) (567 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion]] (expanded macros 0) (3,114 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pullRequests")]} (id 7629) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (575 μs, 0.01%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (557 μs, 0.01%)
+
+
+
+F[Option[org.http4s.Uri]] => ?{def flatMap: ?} (expanded macros 0) (2,244 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("content")] :: shapeless.HNil,org.scalasteward.core.forge.bitbucket.CommentContent :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,121 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,045 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Dependency]{type Repr = R} (expanded macros 0) (29,756 μs, 0.48%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("allow")] :: Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (14,419 μs, 0.23%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.Grouped]{type Repr = V} (expanded macros 3) (2,746 μs, 0.04%)
+
+
+
+F[ProcessBuilder] => ?{def flatMap: ?} (expanded macros 0) (798 μs, 0.01%)
+
+
+
+F[(org.scalasteward.core.util.UrlChecker[F], Some[String])] => ?{def flatMap: ?} (expanded macros 0) (3,797 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (3,019 μs, 0.05%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = Labels} (id 1876) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,808 μs, 0.03%)
+
+
+
+updates1.type => ?{def widen: ?} (expanded macros 0) (650 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]{type Out = K} (id 4544) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,680 μs, 0.04%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (556 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("maybeCrossName")],Option[String]] :: shapeless.HNil]] (id 1394) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (9,787 μs, 0.16%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucket.Reviewer] (expanded macros 0) (1,427 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("doc")]} (id 2779) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,511 μs, 0.02%)
+
+
+
+Ordering[A] (expanded macros 0) (1,709 μs, 0.03%)
+
+
+
+F[org.scalasteward.core.forge.gitlab.MergeRequestOut] => ?{def flatMap: ?} (expanded macros 0) (1,718 μs, 0.03%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (671 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("number")]} (id 6587) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,172 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("prefix")] :: Symbol with shapeless.tag.Tagged[String("suffix")] :: Symbol with shapeless.tag.Tagged[String("exact")] :: Symbol with shapeless.tag.Tagged[String("contains")] :: shapeless.HNil,Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (4,871 μs, 0.08%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,514 μs, 0.09%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = R} (expanded macros 0) (17,500 μs, 0.28%)
+
+
+
+F[Vector[org.scalasteward.core.forge.gitea.GiteaApiAlg.PullRequestResp]] => ?{def flatMap: ?} (expanded macros 0) (1,409 μs, 0.02%)
+
+
+
+(=> (Nothing, Nothing)) => Int (expanded macros 0) (694 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.update.artifact.ArtifactChanges]{type Out = K} (id 8843) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (685 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.forge.data.Comment] => ?{def map: ?} (expanded macros 0) (948 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("artifactIds")] :: Symbol with shapeless.tag.Tagged[String("newVersion")] :: Symbol with shapeless.tag.Tagged[String("rewriteRules")] :: Symbol with shapeless.tag.Tagged[String("doc")] :: Symbol with shapeless.tag.Tagged[String("scalacOptions")] :: Symbol with shapeless.tag.Tagged[String("authors")] :: Symbol with shapeless.tag.Tagged[String("target")] :: Symbol with shapeless.tag.Tagged[String("executionOrder")] :: shapeless.HNil,cats.data.NonEmptyList[String] :: org.scalasteward.core.data.Version :: cats.data.NonEmptyList[String] :: Option[String] :: Option[cats.data.NonEmptyList[String]] :: Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (17,132 μs, 0.28%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = V} (expanded macros 3) (3,505 μs, 0.06%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucketserver.Json.Condition] (expanded macros 0) (1,467 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],org.scalasteward.core.git.Sha1] :: shapeless.HNil] (id 4594) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (7,117 μs, 0.12%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (6,469 μs, 0.10%)
+
+
+
+ValueOf[org.scalasteward.core.git.Sha1] (expanded macros 0) (700 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Out = K} (id 7169) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,265 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("user")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pass")],String] :: shapeless.HNil]] (id 1650) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (6,901 μs, 0.11%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucketserver.Json.Comment] (expanded macros 0) (2,233 μs, 0.04%)
+
+
+
+F[(Unit, List[(org.scalasteward.core.data.Version, org.scalasteward.core.data.Dependency)], List[org.scalasteward.core.data.Resolver])] => ?{def flatMap: ?} (expanded macros 0) (560 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.util.Timestamp] (expanded macros 0) (1,631 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.Resolver.Header]] (id 1654) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (28,685 μs, 0.47%)
+
+
+
+scala.collection.immutable.LazyList[List[org.scalasteward.core.edit.update.data.VersionPosition]] => ?{def #:: : ?} (expanded macros 0) (628 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updatePullRequests")]} (id 7876) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (620 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitlab.ForkPayload]{type Repr = V} (id 5399) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,160 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 2119) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (852 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("filter")] :: shapeless.HNil,Option[String] :: cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,109 μs, 0.03%)
+
+
+
+List[String] => ?{def mkString_(x$1: ? >: String("\n"), x$2: ? >: String("\n"), x$3: ? >: String("\n")): ?} (expanded macros 0) (734 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.forge.bitbucket.RepositoryResponse] => ?{def flatMap: ?} (expanded macros 0) (2,223 μs, 0.04%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.update.artifact.ArtifactChanges]{type Out = K} (id 8832) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (703 μs, 0.01%)
+
+
+
+scala.collection.immutable.LazyList[A] => ?{def #:: : ?} (expanded macros 0) (827 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = R} (expanded macros 0) (8,320 μs, 0.13%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] (expanded macros 0) (938 μs, 0.02%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.update.artifact.ArtifactChange]{type Out = K} (id 8807) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (790 μs, 0.01%)
+
+
+
+cats.data.NonEmptyList[org.scalasteward.core.application.Cli.EnvVar] <:< cats.data.NonEmptyList[org.scalasteward.core.application.Cli.EnvVar] (expanded macros 0) (11,269 μs, 0.18%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,272 μs, 0.02%)
+
+
+
+shapeless.ops.nat.ToInt['a'] (expanded macros 3) (1,435 μs, 0.02%)
+
+
+
+a1.value.type => ?{def compare: ?} (expanded macros 0) (1,427 μs, 0.02%)
+
+
+
+F[(org.typelevel.log4cats.SelfAwareStructuredLogger[F], org.scalasteward.core.io.FileAlg[[_]F[_]], org.scalasteward.core.application.ValidateRepoConfigContext[[_]F[_]])] => ?{def map: ?} (expanded macros 0) (1,528 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("migrations")] :: shapeless.HNil,List[org.scalasteward.core.edit.scalafix.ScalafixMigration] :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,574 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("text")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,906 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("scalacOptions")] :: Symbol with shapeless.tag.Tagged[String("authors")] :: Symbol with shapeless.tag.Tagged[String("target")] :: Symbol with shapeless.tag.Tagged[String("executionOrder")] :: shapeless.HNil,Option[cats.data.NonEmptyList[String]] :: Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (8,228 μs, 0.13%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.data.UpdateState]] (id 4464) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (15,003 μs, 0.24%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,152 μs, 0.10%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,592 μs, 0.04%)
+
+
+
+shapeless.ops.record.Keys[Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (7,391 μs, 0.12%)
+
+
+
+io.circe.generic.extras.decoding.ConfiguredDecoder[org.scalasteward.core.data.Resolver.IvyRepository] (expanded macros 0) (92,282 μs, 1.50%)
+
+
+
+PostUpdateHook.this.command.type => ?{def mkString_: ?} (expanded macros 0) (2,393 μs, 0.04%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.github.GitHubLabels] (expanded macros 0) (1,381 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.github.CreatePullRequestPayload]{type Repr = R} (expanded macros 0) (13,106 μs, 0.21%)
+
+
+
+update.type => ?{def asJson: ?} (expanded macros 0) (1,573 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.GroupRepoConfig]{type Repr = V} (id 7111) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (759 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.VersionPattern]{type Repr = V} (expanded macros 3) (1,367 μs, 0.02%)
+
+
+
+shapeless.Default[org.scalasteward.core.update.artifact.ArtifactChange]{type Out = Options} (id 8770) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (929 μs, 0.02%)
+
+
+
+RunResults.this.results.type => ?{def separate: ?} (expanded macros 0) (1,980 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = K} (id 1715) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,648 μs, 0.03%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("status")],String] :: shapeless.HNil] (id 3420) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (3,117 μs, 0.05%)
+
+
+
+F[(List[String], List[org.scalasteward.core.data.Dependency], List[org.scalasteward.core.data.Resolver])] => ?{def map: ?} (expanded macros 0) (1,457 μs, 0.02%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.repoconfig.UpdatePattern] (expanded macros 0) (18,972 μs, 0.31%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("organization")],Option[String]] :: shapeless.HNil]] (id 4514) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (6,453 μs, 0.10%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("target")] :: Symbol with shapeless.tag.Tagged[String("executionOrder")] :: shapeless.HNil,Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,365 μs, 0.07%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.UpdatesConfig] (expanded macros 0) (873 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: Symbol with shapeless.tag.Tagged[String("namespace")] :: shapeless.HNil,String :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,989 μs, 0.05%)
+
+
+
+Char('/') => String (expanded macros 0) (523 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("links")]} (id 4177) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (703 μs, 0.01%)
+
+
+
+v.alnumComponents.type => ?{def === : ?} (expanded macros 0) (2,296 μs, 0.04%)
+
+
+
+shapeless.ops.record.Keys[org.scalasteward.core.repoconfig.CommitsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commits")],org.scalasteward.core.repoconfig.CommitsConfig] :: org.scalasteward.core.repoconfig.PullRequestsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pullRequests")],org.scalasteward.core.repoconfig.PullRequestsConfig] :: org.scalasteward.core.repoconfig.ScalafmtConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalafmt")],org.scalasteward.core.repoconfig.ScalafmtConfig] :: org.scalasteward.core.repoconfig.UpdatesConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],org.scalasteward.core.repoconfig.UpdatesConfig] :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (14,358 μs, 0.23%)
+
+
+
+F[org.scalasteward.core.forge.bitbucketserver.Json.PR] => ?{def map: ?} (expanded macros 0) (1,378 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateForkOption]] (id 4501) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (29,845 μs, 0.48%)
+
+
+
+F[org.scalasteward.core.forge.gitea.GiteaApiAlg.CommentResp] => ?{def map: ?} (expanded macros 0) (1,434 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,578 μs, 0.03%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("pattern")],Symbol with shapeless.tag.Tagged[_ >: String("headers") with String("credentials") <: String],Lub0] (expanded macros 0) (1,873 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("targetRefName")]} (id 3399) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (703 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 1769) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (879 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (949 μs, 0.02%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("head")],String] :: org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("base")],org.scalasteward.core.git.Branch] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("draft")],Boolean] :: shapeless.HNil] (id 4981) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (4,750 μs, 0.08%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]] (id 4206) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (14,224 μs, 0.23%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.repocache.RefreshErrorAlg.Entry]] (id 6800) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (19,417 μs, 0.31%)
+
+
+
+F[(Unit, String, String, String)] => ?{def flatMap: ?} (expanded macros 0) (781 μs, 0.01%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.forge.bitbucket.CommentContent with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("content")],org.scalasteward.core.forge.bitbucket.CommentContent] :: shapeless.HNil] (id 3636) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (3,289 μs, 0.05%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Branch] (expanded macros 0) (1,723 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("commits")] :: Symbol with shapeless.tag.Tagged[String("pullRequests")] :: Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (22,651 μs, 0.37%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.RepoConfig]] (id 7603) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (176,461 μs, 2.86%)
+sh..
+
+
+io.circe.Decoder[org.scalasteward.core.forge.github.InstallationOut] (expanded macros 0) (1,464 μs, 0.02%)
+
+
+
+io.circe.Encoder[Option[Boolean]] (expanded macros 0) (590 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("number")]} (id 4390) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (580 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("message")]} (id 7090) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (624 μs, 0.01%)
+
+
+
+BuildToolDispatcher.this.allBuildTools.type => ?{def filterA: ?} (expanded macros 0) (1,131 μs, 0.02%)
+
+
+
+F[Unit] => ?{def flatMap: ?} (expanded macros 0) (37,636 μs, 0.61%)
+
+
+
+Array[String] => ?{def filter: ?} (expanded macros 0) (4,652 μs, 0.08%)
+
+
+
+F[Long] => ?{def flatMap: ?} (expanded macros 0) (2,124 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Branch]{type Out = K} (id 3925) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,291 μs, 0.02%)
+
+
+
+v.type => ?{def < : ?} (expanded macros 0) (932 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.forge.bitbucketserver.Json.User with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("user")],org.scalasteward.core.forge.bitbucketserver.Json.User] :: shapeless.HNil] (id 4218) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (3,020 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.AttachLabelReq]{type Repr = V} (id 4842) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,048 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[List[A] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("values")],List[A]] :: shapeless.HNil]] (id 4086) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,164 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("groupIdAfter")] :: Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,org.scalasteward.core.data.GroupId :: Option[String] :: String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,663 μs, 0.04%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.Comment]{type Out = K} (id 4298) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (908 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.bitbucketserver.Json.NewPR]] (id 4032) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (47,343 μs, 0.77%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.UpdatePattern] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] :: Option[List[String]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (7,613 μs, 0.12%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("latestCommit")]} (id 3932) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (810 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Scope[A]]{type Repr = V} (expanded macros 3) (8,263 μs, 0.13%)
+
+
+
+io.circe.Encoder[Option[List[String]]] (expanded macros 0) (2,475 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("owner")]} (id 4560) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,416 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.update.artifact.ArtifactChanges]{type Repr = R} (expanded macros 0) (753 μs, 0.01%)
+
+
+
+io.circe.Encoder[List[String]] (expanded macros 0) (1,689 μs, 0.03%)
+
+
+
+io.circe.Encoder[List[String]] (expanded macros 0) (1,502 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 5548) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (641 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Resolver] (expanded macros 0) (4,833 μs, 0.08%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,652 μs, 0.03%)
+
+
+
+ValueOf[org.scalasteward.core.data.Update] (expanded macros 0) (590 μs, 0.01%)
+
+
+
+millBuildVersion.type => ?{def toSeq: ?} (expanded macros 0) (854 μs, 0.01%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (1,183 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Branch]] (id 3922) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (22,829 μs, 0.37%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.DependencyInfo] (expanded macros 0) (34,425 μs, 0.56%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("values")] :: shapeless.HNil,List[A] :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,085 μs, 0.03%)
+
+
+
+shapeless.Default.AsRecord.Helper[shapeless.HNil,shapeless.HNil]{type Out = OutT} (expanded macros 0) (899 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.RepoConfig]{type Out = K} (id 7608) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,964 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Repr = V} (expanded macros 3) (1,249 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.GitHubAssignees]{type Repr = V} (id 5258) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,170 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (5,877 μs, 0.10%)
+
+
+
+io.circe.Encoder[Option[Boolean]] (expanded macros 0) (597 μs, 0.01%)
+
+
+
+F[Vector[org.scalasteward.core.forge.gitea.GiteaApiAlg.Label]] => ?{def flatMap: ?} (expanded macros 0) (2,240 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,938 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Page[A]]{type Repr = V} (id 4081) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,195 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (819 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.UpdatesConfig]{type Repr = V} (id 8258) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,965 μs, 0.03%)
+
+
+
+cats.FlatMap[F] (expanded macros 0) (873 μs, 0.01%)
+
+
+
+cats.kernel.Eq[Option[org.http4s.Uri.Host]] (expanded macros 0) (1,905 μs, 0.03%)
+
+
+
+shapeless.ops.nat.ToInt[shapeless._0] (expanded macros 3) (25,337 μs, 0.41%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Condition]{type Out = K} (id 3990) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,143 μs, 0.02%)
+
+
+
+io.circe.Decoder[List[String]] (expanded macros 0) (1,067 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updatePullRequests")]} (id 7625) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (700 μs, 0.01%)
+
+
+
+NurtureAlg.this.logger.type => ?{def attemptWarn: ?} (expanded macros 0) (706 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 1847) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,277 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("IvyRepository")]} (id 2168) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,304 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("state")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (4,038 μs, 0.07%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucket.Page[org.scalasteward.core.forge.data.PullRequestOut]] (expanded macros 0) (2,975 μs, 0.05%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.forge.data.PullRequestNumber with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],org.scalasteward.core.forge.data.PullRequestNumber] :: Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("version")],Int] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("links")],scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]]] :: shapeless.HNil] (id 4110) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (8,492 μs, 0.14%)
+
+
+
+eu.timepit.refined.api.RefType[F] (expanded macros 0) (1,166 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[Vector[Int] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],Vector[Int]] :: shapeless.HNil] (id 4848) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (5,322 μs, 0.09%)
+
+
+
+((Nothing, Nothing)) => Iterable[Char] (expanded macros 0) (738 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.UpdatesConfig]{type Out = K} (id 8257) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,831 μs, 0.03%)
+
+
+
+io.circe.Decoder[Long] (expanded macros 0) (631 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]]] (expanded macros 0) (2,278 μs, 0.04%)
+
+
+
+F[Option[(K, Option[V])]] => ?{def flatMap: ?} (expanded macros 0) (1,128 μs, 0.02%)
+
+
+
+io.circe.Decoder[List[A]] (expanded macros 0) (2,646 μs, 0.04%)
+
+
+
+shapeless.ops.record.Keys[Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],Option[org.scalasteward.core.data.GroupId]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactId")],Option[String]] :: cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("command")],cats.data.NonEmptyList[String]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commitMessage")],String] :: Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")],Option[Boolean]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (6,157 μs, 0.10%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.update.artifact.ArtifactChange]{type Out = K} (id 8718) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (683 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.PullRequestOut]{type Repr = V} (expanded macros 3) (2,093 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = K} (id 1822) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,840 μs, 0.03%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("displayId")],org.scalasteward.core.git.Branch] :: org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("latestCommit")],org.scalasteward.core.git.Sha1] :: shapeless.HNil] (id 3936) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (5,566 μs, 0.09%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Branch] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("values")],cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Branch]] :: shapeless.HNil] (id 3967) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (2,945 μs, 0.05%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucketserver.Json.PR] (expanded macros 0) (3,654 μs, 0.06%)
+
+
+
+x$2.type => ?{def nonEmpty: ?} (expanded macros 0) (984 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.RepoConfig]{type Repr = V} (id 7609) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,502 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.azurerepos.AzureComment]{type Out = K} (id 3427) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,065 μs, 0.02%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.repoconfig.PullRequestsConfig]{type Out = K} (id 7567) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (1,626 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("namespace")]} (id 5403) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (751 μs, 0.01%)
+
+
+
+cats.kernel.Eq[String] (expanded macros 0) (894 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("groupId")]} (id 1473) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,459 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Ref]{type Repr = R} (expanded macros 0) (10,911 μs, 0.18%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.repoconfig.PullRequestGroup]] (expanded macros 0) (2,169 μs, 0.04%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.util.Timestamp with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("failedAt")],org.scalasteward.core.util.Timestamp] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("message")],String] :: shapeless.HNil] (id 6814) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (6,219 μs, 0.10%)
+
+
+
+F[((org.scalasteward.core.forge.data.RepoOut, org.scalasteward.core.forge.data.BranchOut), Option[org.scalasteward.core.repocache.RepoCache])] => ?{def flatMap: ?} (expanded macros 0) (547 μs, 0.01%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (3,131 μs, 0.05%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.Label]{type Repr = R} (expanded macros 0) (22,090 μs, 0.36%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("assignees")]} (id 5261) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (786 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (9,228 μs, 0.15%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.UpdatesConfig]{type Repr = R} (expanded macros 0) (25,527 μs, 0.41%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = K} (id 1698) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,968 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (928 μs, 0.02%)
+
+
+
+io.circe.generic.extras.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pattern")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (id 1852) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredDecoder`) (15,986 μs, 0.26%)
+
+
+
+io.circe.Decoder[scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]]] (expanded macros 0) (1,397 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (4,632 μs, 0.08%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("commit")]} (id 4272) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (826 μs, 0.01%)
+
+
+
+cats.data.NonEmptyList[String] <:< cats.data.NonEmptyList[String] (expanded macros 0) (1,346 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (2,849 μs, 0.05%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.azurerepos.AzureComment]] (id 3422) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (15,132 μs, 0.25%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (561 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.User]{type Repr = V} (expanded macros 3) (4,194 μs, 0.07%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("toRef")]} (id 4051) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (858 μs, 0.01%)
+
+
+
+org.http4s.Header.Raw => org.http4s.Header.ToRaw (expanded macros 0) (6,616 μs, 0.11%)
+
+
+
+shapeless.ops.record.Keys[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (6,027 μs, 0.10%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.data.UpdateState]{type Repr = R} (expanded macros 0) (7,360 μs, 0.12%)
+
+
+
+F[List[org.scalasteward.core.forge.github.RepositoriesOut]] => ?{def flatMap: ?} (expanded macros 0) (1,341 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.ReprAsObjectCodec[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("message")],Option[String]] :: shapeless.HNil] (id 7079) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredCodec`) (4,102 μs, 0.07%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("token")]} (id 5360) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (709 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("version")]} (id 4106) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (591 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("filesContainingVersion")]} (id 1599) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,417 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("version")]} (id 8185) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (685 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.github.UpdatePullRequestPayload] (expanded macros 0) (1,258 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.DependencyInfo]{type Repr = V} (expanded macros 3) (2,406 μs, 0.04%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.forge.github.Repository]] (expanded macros 0) (1,934 μs, 0.03%)
+
+
+
+F[org.scalasteward.core.git.Branch] => ?{def map: ?} (expanded macros 0) (1,599 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = V} (expanded macros 3) (2,395 μs, 0.04%)
+
+
+
+shapeless.Default[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Out = Options} (id 2876) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (1,041 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,162 μs, 0.02%)
+
+
+
+cats.kernel.Monoid[List[org.scalasteward.core.edit.update.data.VersionPosition]] (expanded macros 0) (1,415 μs, 0.02%)
+
+
+
+cats.Functor[F] (expanded macros 0) (660 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,String :: Option[Boolean] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,121 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("head")] :: shapeless.HNil,org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,885 μs, 0.06%)
+
+
+
+F[List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]]] => ?{def flatMap: ?} (expanded macros 0) (3,260 μs, 0.05%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("displayId")],org.scalasteward.core.git.Branch] :: org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("latestCommit")],org.scalasteward.core.git.Sha1] :: shapeless.HNil]] (id 3935) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (6,157 μs, 0.10%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (2,362 μs, 0.04%)
+
+
+
+ForgeRepoAlg.this.config.forgeCfg.tpe.type => ?{def === : ?} (expanded macros 0) (3,619 μs, 0.06%)
+
+
+
+defaultReviewers.type => ?{def map: ?} (expanded macros 0) (1,129 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("fileExtensions")]} (id 8247) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,349 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.data.UpdateState] (expanded macros 0) (1,232 μs, 0.02%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.update.artifact.ArtifactChanges]{type Out = K} (id 8875) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (866 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.ForArtifactId]{type Out = K} (id 2300) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (3,036 μs, 0.05%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fork")],Boolean] :: Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: org.scalasteward.core.forge.gitea.GiteaApiAlg.User with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("owner")],org.scalasteward.core.forge.gitea.GiteaApiAlg.User] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("archived")],Boolean] :: org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("clone_url")],org.http4s.Uri] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("default_branch")],String] :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("parent")],Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]] :: shapeless.HNil]] (id 4564) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (14,794 μs, 0.24%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pattern")]} (id 1848) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (930 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.ArtifactId]{type Out = K} (id 1384) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (3,097 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitlab.ProjectId]{type Repr = V} (expanded macros 3) (1,366 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.nurture.PullRequestRepository.Entry]] (id 6572) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (61,531 μs, 1.00%)
+
+
+
+shapeless.ops.record.Keys[Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (2,118 μs, 0.03%)
+
+
+
+x.grouping.type => ?{def |+| : ?} (expanded macros 0) (2,583 μs, 0.04%)
+
+
+
+F[org.scalasteward.core.persistence.JsonKeyValueStore[F,org.scalasteward.core.data.Repo,org.scalasteward.core.repocache.RefreshErrorAlg.Entry]] => ?{def flatMap: ?} (expanded macros 0) (4,312 μs, 0.07%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Out = K} (id 7444) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,638 μs, 0.03%)
+
+
+
+scala.util.Either[io.circe.DecodingFailure,org.scalasteward.core.forge.gitea.GiteaApiAlg.User] => io.circe.Json (expanded macros 0) (714 μs, 0.01%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.Repo] (expanded macros 0) (9,442 μs, 0.15%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("location")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil]] (id 1975) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (11,852 μs, 0.19%)
+
+
+
+eu.timepit.refined.api.Validate[Char,eu.timepit.refined.numeric.Greater['f']]{type R = R} (expanded macros 0) (2,298 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("login")],String] :: shapeless.HNil]] (id 4497) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (2,655 μs, 0.04%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (730 μs, 0.01%)
+
+
+
+F[(Unit, org.scalasteward.core.forge.bitbucketserver.Json.NewPR)] => ?{def flatMap: ?} (expanded macros 0) (1,133 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("baseSha1")],org.scalasteward.core.git.Sha1] :: org.scalasteward.core.data.Update with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("update")],org.scalasteward.core.data.Update] :: org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: org.scalasteward.core.util.Timestamp with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("entryCreatedAt")],org.scalasteward.core.util.Timestamp] :: Option[org.scalasteward.core.forge.data.PullRequestNumber] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("number")],Option[org.scalasteward.core.forge.data.PullRequestNumber]] :: Option[org.scalasteward.core.git.Branch] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updateBranch")],Option[org.scalasteward.core.git.Branch]] :: shapeless.HNil]] (id 6593) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (28,355 μs, 0.46%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.gitlab.MergeRequestPayload] (expanded macros 0) (38,576 μs, 0.63%)
+
+
+
+cats.data.NonEmptyList[String] => ?{def mkString_: ?} (expanded macros 0) (5,299 μs, 0.09%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,045 μs, 0.07%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Repr = R} (expanded macros 0) (1,514 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("status")],String] :: shapeless.HNil]] (id 3419) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,683 μs, 0.06%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("assignees")],Symbol with shapeless.tag.Tagged[_ >: String("dependencyOverrides") with String("reviewers") <: String],Lub0] (expanded macros 0) (851 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] :: Option[List[String]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (9,824 μs, 0.16%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("assignee_ids")]} (id 5485) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (841 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: None.type :: Some[Option[Boolean]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (1,215 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.azurerepos.PullRequestCommentPayload]{type Out = K} (id 3441) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,107 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,961 μs, 0.05%)
+
+
+
+F[List[(org.scalasteward.core.buildtool.BuildRoot, List[org.scalasteward.core.buildtool.BuildToolAlg[F]])]] => ?{def flatMap: ?} (expanded macros 0) (3,497 μs, 0.06%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.data.Resolver.MavenRepository]{type Out = K} (id 2027) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (1,477 μs, 0.02%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (1,453 μs, 0.02%)
+
+
+
+from.major.type => ?{def === : ?} (expanded macros 0) (868 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.util.Timestamp] => ?{def map: ?} (expanded macros 0) (3,565 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit]{type Out = K} (id 4587) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,536 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.update.artifact.ArtifactChanges]{type Out = K} (id 8834) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (989 μs, 0.02%)
+
+
+
+sbtCommands.type => ?{def mkString_: ?} (expanded macros 0) (6,511 μs, 0.11%)
+
+
+
+F[coursier.core.Repository] => ?{def flatMap: ?} (expanded macros 0) (2,058 μs, 0.03%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] (expanded macros 0) (1,251 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("runAfterUpgrading")] :: shapeless.HNil,Option[Boolean] :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,137 μs, 0.02%)
+
+
+
+ValueOf[org.scalasteward.core.data.Dependency] (expanded macros 0) (1,586 μs, 0.03%)
+
+
+
+Unit => Throwable (expanded macros 0) (1,136 μs, 0.02%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.GroupId] (expanded macros 0) (1,126 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.GitHubLabels]{type Repr = V} (expanded macros 3) (2,030 μs, 0.03%)
+
+
+
+cats.Traverse[List] (expanded macros 0) (646 μs, 0.01%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.Resolver.Header] (expanded macros 0) (21,490 μs, 0.35%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("filter")] :: shapeless.HNil,Option[String] :: cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,941 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (18,333 μs, 0.30%)
+
+
+
+from.patch.type => ?{def =!= : ?} (expanded macros 0) (1,522 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("title")]} (id 3398) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (720 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ReprAsObjectCodec[Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("runAfterUpgrading")],Option[Boolean]] :: shapeless.HNil]] (id 8138) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,034 μs, 0.07%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.Grouped]{type Repr = V} (id 2478) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,916 μs, 0.05%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.azurerepos.PullRequestCommentPayload]{type Out = K} (id 3439) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,128 μs, 0.02%)
+
+
+
+F[org.scalasteward.core.forge.bitbucketserver.Json.Branches] => ?{def map: ?} (expanded macros 0) (1,225 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateForkOption]{type Out = K} (id 4504) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,752 μs, 0.03%)
+
+
+
+dependency.groupId.type => ?{def === : ?} (expanded macros 0) (876 μs, 0.01%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[Option[scala.util.matching.Regex] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")],Option[scala.util.matching.Regex]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("customLabels")],List[String]] :: shapeless.HNil] (expanded macros 0) (2,881 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("commit")] :: shapeless.HNil,org.scalasteward.core.git.Branch :: org.scalasteward.core.forge.data.CommitOut :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,939 μs, 0.05%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = R} (expanded macros 0) (17,071 μs, 0.28%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.decoding.ReprDecoder[Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupIdBefore")],Option[org.scalasteward.core.data.GroupId]] :: org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupIdAfter")],org.scalasteward.core.data.GroupId] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdBefore")],Option[String]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdAfter")],String] :: shapeless.HNil]] (id 8745) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (6,251 μs, 0.10%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.ArtifactId] (expanded macros 0) (1,909 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("fileExtensions")]} (id 8337) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,066 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("value")]} (id 1664) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,579 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("status")] :: shapeless.HNil,Int :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,744 μs, 0.03%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[org.scalasteward.core.repoconfig.UpdatesConfig] :: Some[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Some[Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Some[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: Some[List[String]] :: Some[List[String]] :: Some[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (4,636 μs, 0.08%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Out = K} (id 7171) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,179 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]{type Repr = V} (id 4545) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,811 μs, 0.05%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.data.Resolver.Header]] (expanded macros 0) (2,663 μs, 0.04%)
+
+
+
+StringContext => ?{def ci: ?} (expanded macros 0) (5,061 μs, 0.08%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Out = K} (id 2855) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (806 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pass")]} (id 1647) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,240 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 5524) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (671 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit]{type Out = K} (id 4585) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,678 μs, 0.03%)
+
+
+
+eu.timepit.refined.internal.WitnessAs[N,Int] (expanded macros 0) (1,615 μs, 0.03%)
+
+
+
+cats.Functor[io.circe.Decoder] (expanded macros 0) (1,080 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("message")],Option[String]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (1,259 μs, 0.02%)
+
+
+
+fs2.compat.NotGiven[List[org.scalasteward.core.data.Repo] <:< Nothing] (expanded macros 0) (2,223 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = V} (id 1949) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,623 μs, 0.04%)
+
+
+
+F[(List[org.scalasteward.core.buildtool.mill.MillModule], List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]])] => ?{def map: ?} (expanded macros 0) (2,054 μs, 0.03%)
+
+
+
+cats.kernel.Eq[String] (expanded macros 0) (909 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Out = D} (expanded macros 0) (12,478 μs, 0.20%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.data.Update.ForGroupId] (expanded macros 0) (35,772 μs, 0.58%)
+
+
+
+string.type => ?{def toList: ?} (expanded macros 0) (537 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.CreatePullRequestPayload]{type Out = K} (id 4966) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,201 μs, 0.02%)
+
+
+
+a.value.type => ?{def headOption: ?} (expanded macros 0) (786 μs, 0.01%)
+
+
+
+io.circe.Encoder[List[String]] (expanded macros 0) (953 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("login")]} (id 4495) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (688 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucketserver.Json.Branch] (expanded macros 0) (1,813 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repocache.RefreshErrorAlg.Entry]{type Out = K} (id 6803) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (986 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucketserver.Json.User]] (id 4223) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (30,215 μs, 0.49%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updates")]} (id 2460) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,725 μs, 0.03%)
+
+
+
+io.circe.Decoder[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] (expanded macros 0) (1,663 μs, 0.03%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.forge.data.PullRequestNumber]] (expanded macros 0) (1,890 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo]{type Out = K} (id 4633) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,985 μs, 0.03%)
+
+
+
+cats.Contravariant[cats.kernel.Order] (expanded macros 0) (612 μs, 0.01%)
+
+
+
+cats.FunctorFilter[[+O]fs2.Stream[[x]fs2.Pure[x],O]] (expanded macros 0) (1,041 μs, 0.02%)
+
+
+
+cats.kernel.Eq[String] (expanded macros 0) (1,103 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucket.CommentContent]{type Out = K} (id 3646) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (769 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.azurerepos.PullRequestPayload]{type Repr = V} (expanded macros 3) (2,324 μs, 0.04%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (2,144 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("commit")] :: shapeless.HNil,org.scalasteward.core.git.Branch :: org.scalasteward.core.forge.data.CommitOut :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,952 μs, 0.05%)
+
+
+
+io.circe.Decoder[Vector[Int]] (expanded macros 0) (829 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: shapeless.HNil]] (id 4234) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (9,409 μs, 0.15%)
+
+
+
+((Nothing, Nothing)) => coursier.maven.MavenRepository (expanded macros 0) (1,253 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[List[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer]] :: shapeless.HNil] (id 3997) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (2,823 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.Comment]{type Repr = V} (expanded macros 3) (1,254 μs, 0.02%)
+
+
+
+String => Iterable[_] (expanded macros 0) (740 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("remove_source_branch")] :: Symbol with shapeless.tag.Tagged[String("source_branch")] :: Symbol with shapeless.tag.Tagged[String("target_branch")] :: shapeless.HNil,Option[Boolean] :: String :: org.scalasteward.core.git.Branch :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,365 μs, 0.09%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.RepoOut]{type Repr = V} (expanded macros 3) (2,110 μs, 0.03%)
+
+
+
+cats.Foldable[F] (expanded macros 0) (1,980 μs, 0.03%)
+
+
+
+eu.timepit.refined.internal.WitnessAs['a',Char] (expanded macros 0) (1,939 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],org.scalasteward.core.data.GroupId] :: cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIds")],cats.data.NonEmptyList[String]] :: org.scalasteward.core.data.Version with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newVersion")],org.scalasteward.core.data.Version] :: cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("rewriteRules")],cats.data.NonEmptyList[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("doc")],Option[String]] :: Option[cats.data.NonEmptyList[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalacOptions")],Option[cats.data.NonEmptyList[String]]] :: Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("authors")],Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("target")],Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("executionOrder")],Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder]] :: shapeless.HNil]] (id 2785) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (19,484 μs, 0.32%)
+
+
+
+cats.Applicative[[+A]cats.effect.kernel.Resource[F,A]] (expanded macros 0) (11,050 μs, 0.18%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Repo]{type Repr = V} (expanded macros 3) (1,478 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucket.DefaultReviewers]{type Out = K} (id 3686) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (951 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = R} (expanded macros 0) (16,275 μs, 0.26%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 1708) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,046 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitlab.ProjectId]{type Repr = R} (expanded macros 0) (7,101 μs, 0.12%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.repoconfig.RepoConfig]{type Out = D} (expanded macros 0) (12,101 μs, 0.20%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("forArtifactIds")]} (id 2443) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (2,591 μs, 0.04%)
+
+
+
+ValueOf[org.scalasteward.core.util.Timestamp] (expanded macros 0) (1,390 μs, 0.02%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.repoconfig.BuildRootConfig]] (expanded macros 0) (1,213 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("runAfterUpgrading")],Option[Boolean]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (1,089 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.DependencyInfo]{type Repr = R} (expanded macros 0) (14,931 μs, 0.24%)
+
+
+
+F[String] => ?{def flatMap: ?} (expanded macros 0) (11,050 μs, 0.18%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.Version] (expanded macros 0) (1,243 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 1955) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,316 μs, 0.02%)
+
+
+
+fs2.Compiler[[x]F[x],G] (expanded macros 0) (19,890 μs, 0.32%)
+
+
+
+PostUpdateHook.this.command.type => ?{def mkString_(x$1: ? >: String("\'"), x$2: ? >: String(" "), x$3: ? >: String("\'")): ?} (expanded macros 0) (941 μs, 0.02%)
+
+
+
+cats.kernel.Order[String] (expanded macros 0) (3,548 μs, 0.06%)
+
+
+
+F[org.scalasteward.core.git.Commit] => ?{def map: ?} (expanded macros 0) (817 μs, 0.01%)
+
+
+
+Ordering[org.scalasteward.core.data.Resolver] (expanded macros 0) (1,348 μs, 0.02%)
+
+
+
+F[(Option[String], Option[org.scalasteward.core.data.Version])] => ?{def map: ?} (expanded macros 0) (3,341 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("version")] :: Symbol with shapeless.tag.Tagged[String("sbtVersion")] :: Symbol with shapeless.tag.Tagged[String("scalaVersion")] :: Symbol with shapeless.tag.Tagged[String("configurations")] :: shapeless.HNil,org.scalasteward.core.data.ArtifactId :: org.scalasteward.core.data.Version :: Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion] :: Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (11,811 μs, 0.19%)
+
+
+
+io.circe.Decoder[Option[List[String]]] (expanded macros 0) (1,322 μs, 0.02%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.data.Resolver.Header]] (expanded macros 0) (2,656 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("raw")],String] :: shapeless.HNil]] (id 3652) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,146 μs, 0.07%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.PullRequestResp]{type Out = K} (id 4670) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,461 μs, 0.04%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[org.scalasteward.core.data.CrossDependency]] (expanded macros 0) (5,125 μs, 0.08%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("user")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pass")],String] :: shapeless.HNil] (id 1651) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (5,795 μs, 0.09%)
+
+
+
+buildTools.type => ?{def flatTraverse: ?} (expanded macros 0) (902 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = R} (expanded macros 0) (18,163 μs, 0.29%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.UpdatePattern]{type Out = K} (id 8179) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (806 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("commits")] :: Symbol with shapeless.tag.Tagged[String("pullRequests")] :: Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,org.scalasteward.core.repoconfig.CommitsConfig :: org.scalasteward.core.repoconfig.PullRequestsConfig :: org.scalasteward.core.repoconfig.ScalafmtConfig :: org.scalasteward.core.repoconfig.UpdatesConfig :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = R} (expanded macros 0) (17,787 μs, 0.29%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("label")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ref")],String] :: org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sha")],org.scalasteward.core.git.Sha1] :: shapeless.HNil]] (id 4645) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (10,557 μs, 0.17%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: List[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],List[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil] (id 2465) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (6,187 μs, 0.10%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitlab.ProjectId]{type Out = K} (id 5453) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (878 μs, 0.01%)
+
+
+
+F[(List[org.scalasteward.core.update.data.UpdateState], List[org.scalasteward.core.data.Update.ForArtifactId])] => ?{def map: ?} (expanded macros 0) (789 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Resolver.Credentials] (expanded macros 0) (2,059 μs, 0.03%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("html_url")],org.http4s.Uri] :: org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: org.scalasteward.core.forge.data.PullRequestNumber with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("number")],org.scalasteward.core.forge.data.PullRequestNumber] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: shapeless.HNil] (id 4395) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (7,198 μs, 0.12%)
+
+
+
+String("ForArtifactId") => ?{def -> : ?} (expanded macros 0) (879 μs, 0.01%)
+
+
+
+cats.Traverse[Option] (expanded macros 0) (539 μs, 0.01%)
+
+
+
+F[Boolean] => ?{def map: ?} (expanded macros 0) (1,847 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.repoconfig.VersionPattern]] (id 8464) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (18,905 μs, 0.31%)
+
+
+
+shapeless.ops.coproduct.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("MavenRepository")] :: shapeless.HNil,org.scalasteward.core.data.Resolver.MavenRepository :+: shapeless.CNil] (expanded macros 0) (2,042 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("prefix")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("suffix")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("exact")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("contains")],Option[String]] :: shapeless.HNil]] (id 8481) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,192 μs, 0.05%)
+
+
+
+io.circe.Encoder[Vector[Int]] (expanded macros 0) (914 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: shapeless.HNil] (id 5264) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (2,790 μs, 0.05%)
+
+
+
+F[(org.scalasteward.core.edit.scalafix.ScalafixMigrationsFinder, org.scalasteward.core.repoconfig.RepoConfigLoader[F])] => ?{def flatMap: ?} (expanded macros 0) (4,135 μs, 0.07%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("target_project_id")]} (id 5483) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (853 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.User]{type Out = K} (id 4523) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,709 μs, 0.03%)
+
+
+
+fs2.compat.NotGiven[Iterator[better.files.File] <:< Nothing] (expanded macros 0) (737 μs, 0.01%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (670 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("draft")] :: shapeless.HNil,Boolean :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,540 μs, 0.02%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.data.DependencyInfo]] (expanded macros 0) (2,659 μs, 0.04%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.Version.Component] (expanded macros 0) (681 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("assignees")]} (id 7623) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (873 μs, 0.01%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.repoconfig.PullRequestFrequency]] (expanded macros 0) (2,225 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (4,920 μs, 0.08%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("label")]} (id 4643) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,196 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("limit")]} (id 8248) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,049 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: shapeless.HNil]] (id 4475) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,895 μs, 0.06%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 1710) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (897 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("title")]} (id 4978) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (561 μs, 0.01%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (5,645 μs, 0.09%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("ignore")]} (id 8333) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,108 μs, 0.02%)
+
+
+
+io.circe.Encoder[List[Int]] (expanded macros 0) (676 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (10,570 μs, 0.17%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.PullRequestOut]{type Out = K} (id 4380) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,427 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")]} (id 7534) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,038 μs, 0.02%)
+
+
+
+((Nothing, Nothing)) => java.time.Duration (expanded macros 0) (749 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (1,221 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Out = K} (id 7188) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (962 μs, 0.02%)
+
+
+
+io.circe.Encoder[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] (expanded macros 0) (627 μs, 0.01%)
+
+
+
+scala.util.Either[io.circe.DecodingFailure,org.scalasteward.core.data.CrossDependency] => io.circe.Json (expanded macros 0) (722 μs, 0.01%)
+
+
+
+List[better.files.File] => ?{def collectFold: ?} (expanded macros 0) (684 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,896 μs, 0.10%)
+
+
+
+elems.type => ?{def parSequence: ?} (expanded macros 0) (4,498 μs, 0.07%)
+
+
+
+F[List[Either[(org.scalasteward.core.data.Repo, Throwable),org.scalasteward.core.data.Repo]]] => ?{def flatMap: ?} (expanded macros 0) (1,839 μs, 0.03%)
+
+
+
+io.circe.Decoder[Int] (expanded macros 0) (525 μs, 0.01%)
+
+
+
+F[(scala.collection.immutable.Map[org.scalasteward.core.data.Dependency,org.scalasteward.core.coursier.DependencyMetadata], scala.collection.immutable.Map[String,org.http4s.Uri])] => ?{def flatMap: ?} (expanded macros 0) (676 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("entryCreatedAt")] :: Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("updateBranch")] :: shapeless.HNil,org.scalasteward.core.forge.data.PullRequestState :: org.scalasteward.core.util.Timestamp :: Option[org.scalasteward.core.forge.data.PullRequestNumber] :: Option[org.scalasteward.core.git.Branch] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (9,900 μs, 0.16%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,524 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 4107) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (605 μs, 0.01%)
+
+
+
+x$3.type => ?{def > : ?} (expanded macros 0) (3,570 μs, 0.06%)
+
+
+
+eu.timepit.refined.api.Validate[String,eu.timepit.refined.boolean.And[eu.timepit.refined.collection.Forall[eu.timepit.refined.boolean.Or[eu.timepit.refined.char.Digit,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]],eu.timepit.refined.collection.Size[eu.timepit.refined.generic.Equal[40]]]] (expanded macros 0) (20,738 μs, 0.34%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (774 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.data.GroupId]] (expanded macros 0) (1,006 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.github.InstallationOut]] (id 5300) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (10,944 μs, 0.18%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("buildRoots")]} (id 7878) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (636 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("crossDependency")] :: Symbol with shapeless.tag.Tagged[String("newerVersions")] :: Symbol with shapeless.tag.Tagged[String("newerGroupId")] :: Symbol with shapeless.tag.Tagged[String("newerArtifactId")] :: shapeless.HNil,org.scalasteward.core.data.CrossDependency :: cats.data.NonEmptyList[org.scalasteward.core.data.Version] :: Option[org.scalasteward.core.data.GroupId] :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (19,517 μs, 0.32%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (15,703 μs, 0.25%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.UserOut]] (id 4486) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (13,462 μs, 0.22%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: org.scalasteward.core.forge.data.UserOut with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("owner")],org.scalasteward.core.forge.data.UserOut] :: Option[org.scalasteward.core.forge.data.RepoOut] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("parent")],Option[org.scalasteward.core.forge.data.RepoOut]] :: org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("clone_url")],org.http4s.Uri] :: org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("default_branch")],org.scalasteward.core.git.Branch] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("archived")],Boolean] :: shapeless.HNil]] (id 4439) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (9,740 μs, 0.16%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 1723) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (886 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.ScalafmtConfig]{type Repr = R} (expanded macros 0) (3,502 μs, 0.06%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.git.Branch]] (expanded macros 0) (2,461 μs, 0.04%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Page[A]]{type Out = K} (id 4080) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (876 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.ForGroupId]{type Out = K} (id 2439) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,193 μs, 0.04%)
+
+
+
+seconds.type => ?{def seconds: ?} (expanded macros 0) (4,272 μs, 0.07%)
+
+
+
+F[org.scalasteward.core.forge.gitlab.MergeRequestOut] => ?{def map: ?} (expanded macros 0) (3,355 μs, 0.05%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.RepoOut] (expanded macros 0) (29,242 μs, 0.47%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 2004) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,013 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.coursier.VersionsCache.Value]{type Out = K} (id 1320) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (4,080 μs, 0.07%)
+
+
+
+F[List[org.scalasteward.core.edit.update.data.ModulePosition]] => ?{def map: ?} (expanded macros 0) (1,274 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("repositories")] :: shapeless.HNil,List[org.scalasteward.core.forge.github.Repository] :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,054 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 1722) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,251 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],String] :: Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: shapeless.HNil]] (id 4794) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (5,768 μs, 0.09%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.RepositoriesOut]{type Repr = V} (id 5320) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (846 μs, 0.01%)
+
+
+
+x$4.type => ?{def bimap: ?} (expanded macros 0) (756 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (7,396 μs, 0.12%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.RepoConfig] (expanded macros 0) (1,077 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,098 μs, 0.03%)
+
+
+
+scala.util.Either[io.circe.DecodingFailure,org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo] => io.circe.Json (expanded macros 0) (915 μs, 0.01%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("runAfterUpgrading")],Option[Boolean]] :: shapeless.HNil] (expanded macros 0) (715 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = K} (id 2076) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,665 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (9,099 μs, 0.15%)
+
+
+
+ValueOf[org.scalasteward.core.git.Sha1] (expanded macros 0) (694 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("color")] :: shapeless.HNil,String :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (7,584 μs, 0.12%)
+
+
+
+F[(List[String], String)] => ?{def map: ?} (expanded macros 0) (1,815 μs, 0.03%)
+
+
+
+to.major.type => ?{def === : ?} (expanded macros 0) (714 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("dependencyInfos")] :: Symbol with shapeless.tag.Tagged[String("maybeRepoConfig")] :: Symbol with shapeless.tag.Tagged[String("maybeRepoConfigParsingError")] :: shapeless.HNil,List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.DependencyInfo]]] :: Option[org.scalasteward.core.repoconfig.RepoConfig] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,436 μs, 0.07%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.update.artifact.ArtifactChange]{type Out = D} (expanded macros 0) (3,422 μs, 0.06%)
+
+
+
+eu.timepit.refined.api.Validate[String,eu.timepit.refined.boolean.And[eu.timepit.refined.collection.Forall[eu.timepit.refined.boolean.Or[eu.timepit.refined.char.Digit,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]],eu.timepit.refined.collection.Size[eu.timepit.refined.generic.Equal[40]]]] (expanded macros 0) (13,321 μs, 0.22%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.repoconfig.RepoConfig]{type Out = K} (id 7935) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (1,366 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[List[org.scalasteward.core.forge.bitbucket.Reviewer] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("values")],List[org.scalasteward.core.forge.bitbucket.Reviewer]] :: shapeless.HNil]] (id 3692) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (7,753 μs, 0.13%)
+
+
+
+F[List[org.scalasteward.core.forge.github.InstallationOut]] => ?{def flatMap: ?} (expanded macros 0) (1,229 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.util.Timestamp with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatedAt")],org.scalasteward.core.util.Timestamp] :: List[org.scalasteward.core.data.Version] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("versions")],List[org.scalasteward.core.data.Version]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("maybeError")],Option[String]] :: shapeless.HNil]] (id 1330) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (59,028 μs, 0.96%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.PullRequestOut] (expanded macros 0) (4,875 μs, 0.08%)
+
+
+
+s.type => ?{def === : ?} (expanded macros 0) (631 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.CommitOut]] (id 4310) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (22,748 μs, 0.37%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("locked")]} (id 4050) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (897 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.buildtool.sbt.data.SbtVersion] (expanded macros 0) (2,036 μs, 0.03%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (1,188 μs, 0.02%)
+
+
+
+List[org.http4s.Uri] => ?{def traverse: ?} (expanded macros 0) (917 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("description")] :: Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("open")] :: Symbol with shapeless.tag.Tagged[String("closed")] :: Symbol with shapeless.tag.Tagged[String("fromRef")] :: Symbol with shapeless.tag.Tagged[String("toRef")] :: Symbol with shapeless.tag.Tagged[String("locked")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: shapeless.HNil,String :: org.scalasteward.core.forge.data.PullRequestState :: Boolean :: Boolean :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: Boolean :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (13,273 μs, 0.22%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.RepoConfig]{type Repr = R} (expanded macros 0) (1,934 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.AttachLabelReq]] (id 4836) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (26,585 μs, 0.43%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (3,077 μs, 0.05%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],String] :: org.scalasteward.core.forge.bitbucketserver.Json.Repository with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("repository")],org.scalasteward.core.forge.bitbucketserver.Json.Repository] :: shapeless.HNil]] (id 4163) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,366 μs, 0.05%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucketserver.Json.PR] (expanded macros 0) (2,445 μs, 0.04%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.Label]{type Out = K} (id 4803) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (4,485 μs, 0.07%)
+
+
+
+F[org.scalasteward.core.data.RepoData] => ?{def map: ?} (expanded macros 0) (532 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.nurture.PullRequestRepository.Entry] (expanded macros 0) (9,963 μs, 0.16%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("archived")] :: Symbol with shapeless.tag.Tagged[String("clone_url")] :: Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("parent")] :: shapeless.HNil,Boolean :: org.http4s.Uri :: String :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (11,794 μs, 0.19%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,597 μs, 0.11%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.bitbucketserver.Json.Repository] (expanded macros 0) (12,542 μs, 0.20%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.forge.azurerepos.AzureComment]] (expanded macros 0) (604 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Version] (expanded macros 0) (3,294 μs, 0.05%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (859 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.data.BranchOut]{type Repr = R} (expanded macros 0) (9,356 μs, 0.15%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.Update.Single] (expanded macros 0) (904 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.git.Sha1] (expanded macros 0) (660 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Resolver.IvyRepository] (expanded macros 0) (1,916 μs, 0.03%)
+
+
+
+cats.effect.kernel.Async[F] (expanded macros 0) (1,370 μs, 0.02%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.git.Branch]] (expanded macros 0) (1,559 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("executionOrder")]} (id 2775) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,357 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.UserOut]{type Out = K} (id 4491) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (721 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion]] (expanded macros 0) (2,739 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("base")]} (id 4682) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,354 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("description")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("assignee_ids")] :: Symbol with shapeless.tag.Tagged[String("reviewer_ids")] :: Symbol with shapeless.tag.Tagged[String("target_project_id")] :: Symbol with shapeless.tag.Tagged[String("remove_source_branch")] :: Symbol with shapeless.tag.Tagged[String("source_branch")] :: Symbol with shapeless.tag.Tagged[String("target_branch")] :: shapeless.HNil,String :: String :: Option[List[String]] :: Option[List[Int]] :: Option[List[Int]] :: Long :: Option[Boolean] :: String :: org.scalasteward.core.git.Branch :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (14,683 μs, 0.24%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer]{type Repr = V} (expanded macros 3) (2,883 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("groupId")] :: Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("version")] :: Symbol with shapeless.tag.Tagged[String("sbtVersion")] :: Symbol with shapeless.tag.Tagged[String("scalaVersion")] :: Symbol with shapeless.tag.Tagged[String("configurations")] :: shapeless.HNil,org.scalasteward.core.data.GroupId :: org.scalasteward.core.data.ArtifactId :: org.scalasteward.core.data.Version :: Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion] :: Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (14,818 μs, 0.24%)
+
+
+
+io.circe.Encoder[Map[org.http4s.Uri,org.scalasteward.core.nurture.PullRequestRepository.Entry]] (expanded macros 0) (17,503 μs, 0.28%)
+
+
+
+cats.kernel.Semigroup[Option[org.scalasteward.core.repoconfig.RepoConfig]] (expanded macros 0) (970 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],org.scalasteward.core.data.GroupId] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactId")],Option[String]] :: Option[org.scalasteward.core.repoconfig.VersionPattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("version")],Option[org.scalasteward.core.repoconfig.VersionPattern]] :: shapeless.HNil] (id 8190) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (8,673 μs, 0.14%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,Option[String] :: cats.data.NonEmptyList[String] :: String :: Option[Boolean] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,667 μs, 0.06%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 1971) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (977 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Repo]] (id 4167) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (17,821 μs, 0.29%)
+
+
+
+io.circe.Encoder[cats.data.NonEmptyList[org.scalasteward.core.data.Version]] (expanded macros 0) (4,372 μs, 0.07%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.repoconfig.VersionPattern] (expanded macros 0) (14,227 μs, 0.23%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.repoconfig.ScalafmtConfig]{type Out = K} (id 8160) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (541 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.CommitsConfig]{type Repr = R} (expanded macros 0) (3,703 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("archived")] :: Symbol with shapeless.tag.Tagged[String("clone_url")] :: Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("parent")] :: shapeless.HNil,String :: Boolean :: org.http4s.Uri :: String :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (14,351 μs, 0.23%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("message")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,274 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.edit.scalafix.ScalafixMigration]{type Out = K} (id 2761) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,691 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 1893) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,020 μs, 0.02%)
+
+
+
+cats.effect.kernel.Sync[[x]F[x]] (expanded macros 0) (711 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("description")]} (id 3396) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,074 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucket.DefaultReviewers] (expanded macros 0) (2,178 μs, 0.04%)
+
+
+
+org.http4s.QueryParamKeyLike[String] (expanded macros 0) (1,818 μs, 0.03%)
+
+
+
+shapeless.ops.record.Keys[Option[org.scalasteward.core.repoconfig.PullRequestFrequency] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("frequency")],Option[org.scalasteward.core.repoconfig.PullRequestFrequency]] :: List[org.scalasteward.core.repoconfig.PullRequestGroup] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("grouping")],List[org.scalasteward.core.repoconfig.PullRequestGroup]] :: Option[scala.util.matching.Regex] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")],Option[scala.util.matching.Regex]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("customLabels")],List[String]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (8,870 μs, 0.14%)
+
+
+
+g.updates.type => ?{def fproduct: ?} (expanded macros 0) (1,844 μs, 0.03%)
+
+
+
+repo.full_name.type => ?{def split(x$1: ? >: Char('/')): ?} (expanded macros 0) (710 μs, 0.01%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (1,152 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.coursier.VersionsCache.Value] (expanded macros 0) (4,765 μs, 0.08%)
+
+
+
+eu.timepit.refined.api.RefType[F] (expanded macros 0) (542 μs, 0.01%)
+
+
+
+x$1.type => ?{def === : ?} (expanded macros 0) (1,920 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,Option[String] :: cats.data.NonEmptyList[String] :: String :: Option[Boolean] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,836 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Project]{type Out = K} (id 4140) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (765 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.coursier.VersionsCache.Value]{type Out = K} (id 1318) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (10,467 μs, 0.17%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: shapeless.HNil,String :: Option[String] :: List[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil]{type Out = R} (expanded macros 0) (10,663 μs, 0.17%)
+
+
+
+x$4.render.type => ?{def === : ?} (expanded macros 0) (1,093 μs, 0.02%)
+
+
+
+String => Iterable[_] (expanded macros 0) (962 μs, 0.02%)
+
+
+
+hook.command.type => ?{def mkString_(x$1: ? >: String(" ")): ?} (expanded macros 0) (865 μs, 0.01%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.data.Resolver.IvyRepository]{type Out = K} (id 1914) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (1,636 μs, 0.03%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.coursier.VersionsCache.Value] (expanded macros 0) (126,869 μs, 2.06%)
+i..
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("reviewers")]} (id 7649) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (627 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.forge.data.PullRequestNumber] (expanded macros 0) (610 μs, 0.01%)
+
+
+
+cutoff.type => ?{def === : ?} (expanded macros 0) (1,473 μs, 0.02%)
+
+
+
+(=> scala.collection.immutable.LazyList[List[org.scalasteward.core.edit.update.data.VersionPosition]]) => ?{def #:: : ?} (expanded macros 0) (946 μs, 0.02%)
+
+
+
+cats.kernel.Eq[String] (expanded macros 0) (807 μs, 0.01%)
+
+
+
+up.version.type => ?{def === : ?} (expanded macros 0) (2,729 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.Resolver.Credentials]] (id 1637) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (28,524 μs, 0.46%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("assignee")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("body")] :: Symbol with shapeless.tag.Tagged[String("due_date")] :: Symbol with shapeless.tag.Tagged[String("head")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("milestone")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,Option[String] :: Option[Vector[String]] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Vector[Int]] :: Option[Int] :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (26,498 μs, 0.43%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("target")]} (id 2776) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (980 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("labels")] :: shapeless.HNil,Vector[Int] :: shapeless.HNil]{type Out = R} (expanded macros 0) (5,077 μs, 0.08%)
+
+
+
+cats.effect.kernel.MonadCancel[F,Throwable] (expanded macros 0) (3,773 μs, 0.06%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (553 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.GroupRepoConfig]{type Repr = V} (expanded macros 3) (1,156 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("sha")] :: shapeless.HNil,org.scalasteward.core.git.Sha1 :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,045 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,org.scalasteward.core.forge.data.PullRequestNumber :: String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,571 μs, 0.04%)
+
+
+
+F[(Unit, String)] => ?{def flatMap: ?} (expanded macros 0) (1,427 μs, 0.02%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (921 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("locked")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: shapeless.HNil,Boolean :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,723 μs, 0.06%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.CommitsConfig] (expanded macros 0) (823 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Branch] (expanded macros 0) (5,334 μs, 0.09%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Update.ForArtifactId]{type Repr = R} (expanded macros 0) (28,665 μs, 0.46%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (7,653 μs, 0.12%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("text")],String] :: shapeless.HNil] (id 3982) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (4,192 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("crossDependency")] :: Symbol with shapeless.tag.Tagged[String("newerVersions")] :: Symbol with shapeless.tag.Tagged[String("newerGroupId")] :: Symbol with shapeless.tag.Tagged[String("newerArtifactId")] :: shapeless.HNil,org.scalasteward.core.data.CrossDependency :: cats.data.NonEmptyList[org.scalasteward.core.data.Version] :: Option[org.scalasteward.core.data.GroupId] :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (14,850 μs, 0.24%)
+
+
+
+eu.timepit.refined.api.RefType[F] (expanded macros 0) (564 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.util.Timestamp] (expanded macros 0) (1,384 μs, 0.02%)
+
+
+
+ScalafixMigration.this.authors.type => ?{def foldMap: ?} (expanded macros 0) (553 μs, 0.01%)
+
+
+
+((Nothing, Nothing)) => org.http4s.QueryParam[?T] (expanded macros 0) (3,645 μs, 0.06%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("forArtifactIds")],cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil] (id 2446) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (6,043 μs, 0.10%)
+
+
+
+shapeless.ops.record.Keys[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (8,750 μs, 0.14%)
+
+
+
+to.minor.type => ?{def =!= : ?} (expanded macros 0) (756 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("login")]} (id 4531) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,559 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucket.Reviewer]{type Repr = R} (expanded macros 0) (7,737 μs, 0.13%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.azurerepos.PullRequestPayload]{type Out = K} (id 3388) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,791 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("maybeError")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (13,732 μs, 0.22%)
+
+
+
+replacementsByPath.type => ?{def traverse_: ?} (expanded macros 0) (776 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.azurerepos.AzureComment]{type Out = K} (id 3425) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (990 μs, 0.02%)
+
+
+
+cats.Foldable[F] (expanded macros 0) (2,120 μs, 0.03%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: None.type :: None.type :: Some[List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil]{type Out = Rec} (expanded macros 0) (2,895 μs, 0.05%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[Option[org.scalasteward.core.repoconfig.PullRequestFrequency] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("frequency")],Option[org.scalasteward.core.repoconfig.PullRequestFrequency]] :: List[org.scalasteward.core.repoconfig.PullRequestGroup] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("grouping")],List[org.scalasteward.core.repoconfig.PullRequestGroup]] :: Option[scala.util.matching.Regex] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")],Option[scala.util.matching.Regex]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("customLabels")],List[String]] :: shapeless.HNil] (expanded macros 0) (6,232 μs, 0.10%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("pullRequests")] :: Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,org.scalasteward.core.repoconfig.PullRequestsConfig :: org.scalasteward.core.repoconfig.ScalafmtConfig :: org.scalasteward.core.repoconfig.UpdatesConfig :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (15,127 μs, 0.25%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("prefix")] :: Symbol with shapeless.tag.Tagged[String("suffix")] :: Symbol with shapeless.tag.Tagged[String("exact")] :: Symbol with shapeless.tag.Tagged[String("contains")] :: shapeless.HNil,Option[String] :: Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (4,977 μs, 0.08%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (963 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("key")] :: Symbol with shapeless.tag.Tagged[String("value")] :: shapeless.HNil,String :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (4,461 μs, 0.07%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 4512) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,601 μs, 0.03%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.repoconfig.ScalafmtConfig]{type Out = D} (expanded macros 0) (2,153 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.azurerepos.PullRequestCommentPayload]{type Repr = V} (id 3442) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,328 μs, 0.02%)
+
+
+
+F[Either[Throwable,Unit]] => ?{def map: ?} (expanded macros 0) (2,646 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("migrations")]} (id 2852) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (961 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("scalafmt")]} (id 7848) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (687 μs, 0.01%)
+
+
+
+io.circe.Decoder[Boolean] (expanded macros 0) (568 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("title")]} (id 5488) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (796 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = K} (id 1961) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,793 μs, 0.03%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.data.Resolver.Credentials]] (expanded macros 0) (10,070 μs, 0.16%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.RepoConfig]{type Repr = V} (expanded macros 3) (2,078 μs, 0.03%)
+
+
+
+F[org.scalasteward.core.forge.data.RepoOut] => ?{def map: ?} (expanded macros 0) (2,371 μs, 0.04%)
+
+
+
+ValueOf[org.scalasteward.core.data.CrossDependency] (expanded macros 0) (1,062 μs, 0.02%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.data.Resolver.Header]] (expanded macros 0) (6,985 μs, 0.11%)
+
+
+
+F[List[org.scalasteward.core.edit.EditAttempt]] => ?{def map: ?} (expanded macros 0) (2,012 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.Header]{type Repr = R} (expanded macros 0) (14,164 μs, 0.23%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Link]{type Repr = R} (expanded macros 0) (11,974 μs, 0.19%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("reviewers")]} (id 4049) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,145 μs, 0.02%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("pullRequests")],Symbol with shapeless.tag.Tagged[_ >: String("dependencyOverrides") with String("reviewers") with String("assignees") with String("buildRoots") with String("updatePullRequests") with String("postUpdateHooks") with String("updates") with String("scalafmt") <: String],Lub0] (expanded macros 0) (1,252 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (3,354 μs, 0.05%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],String] :: shapeless.HNil] (id 4307) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (3,968 μs, 0.06%)
+
+
+
+cats.kernel.Eq[String] (expanded macros 0) (923 μs, 0.01%)
+
+
+
+eu.timepit.refined.internal.WitnessAs[shapeless._0,Int] (expanded macros 0) (2,190 μs, 0.04%)
+
+
+
+io.circe.generic.extras.decoding.ReprDecoder[Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupIdBefore")],Option[org.scalasteward.core.data.GroupId]] :: org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupIdAfter")],org.scalasteward.core.data.GroupId] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdBefore")],Option[String]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdAfter")],String] :: shapeless.HNil] (id 8746) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredDecoder`) (5,767 μs, 0.09%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 2462) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,596 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("configurations")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,211 μs, 0.05%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.PR]] (id 4090) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (32,225 μs, 0.52%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Repository]{type Repr = V} (id 4193) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,175 μs, 0.02%)
+
+
+
+F[(better.files.File, org.http4s.Uri.UserInfo, String, String)] => ?{def flatMap: ?} (expanded macros 0) (3,560 μs, 0.06%)
+
+
+
+mergeRequest.type => ?{def flatMap: ?} (expanded macros 0) (620 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("migrations")]} (id 2861) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (825 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("raw")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,607 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.DependencyInfo]{type Out = K} (id 1594) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,618 μs, 0.03%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("pattern")],Symbol with shapeless.tag.Tagged[_ >: String("headers") with String("credentials") <: String],Lub0] (expanded macros 0) (2,153 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = K} (id 1837) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,809 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer]{type Out = K} (id 4005) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,329 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("dependencyOverrides")]} (id 7862) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (647 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("version")] :: shapeless.HNil,Option[org.scalasteward.core.repoconfig.VersionPattern] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,486 μs, 0.02%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.DependencyInfo]]]] (expanded macros 0) (5,458 μs, 0.09%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Resolver.MavenRepository] (expanded macros 0) (2,172 μs, 0.04%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = K} (id 1700) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,962 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Repr = V} (expanded macros 3) (3,614 μs, 0.06%)
+
+
+
+x$3.type => ?{def === : ?} (expanded macros 0) (2,055 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (4,948 μs, 0.08%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.PullRequestOut]] (id 4377) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (28,467 μs, 0.46%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Condition]{type Out = K} (id 3988) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,102 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Repr = V} (id 2849) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,243 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sha1")],org.scalasteward.core.git.Sha1] :: List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.DependencyInfo]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyInfos")],List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.DependencyInfo]]]] :: Option[org.scalasteward.core.repoconfig.RepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("maybeRepoConfig")],Option[org.scalasteward.core.repoconfig.RepoConfig]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("maybeRepoConfigParsingError")],Option[String]] :: shapeless.HNil] (id 6861) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (21,838 μs, 0.35%)
+
+
+
+io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] (expanded macros 0) (9,183 μs, 0.15%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.BranchResp]{type Repr = V} (id 4619) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,801 μs, 0.03%)
+
+
+
+cats.kernel.Order[String] (expanded macros 0) (534 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] (expanded macros 0) (5,535 μs, 0.09%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.encoding.ConfiguredAsObjectEncoder[org.scalasteward.core.data.Resolver.IvyRepository]] (id 2056) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (73,961 μs, 1.20%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (937 μs, 0.02%)
+
+
+
+F[(Option[String], String)] => ?{def flatMap: ?} (expanded macros 0) (904 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("displayId")] :: Symbol with shapeless.tag.Tagged[String("latestCommit")] :: shapeless.HNil,org.scalasteward.core.git.Branch :: org.scalasteward.core.git.Sha1 :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,858 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("frequency")]} (id 7530) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,351 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("raw")],String] :: shapeless.HNil] (id 3653) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (3,556 μs, 0.06%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.data.Update.Grouped]] (id 2449) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (39,004 μs, 0.63%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.BranchOut]{type Repr = V} (id 5543) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,043 μs, 0.02%)
+
+
+
+eu.timepit.refined.api.Validate[Char,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]{type R = RB} (expanded macros 0) (6,840 μs, 0.11%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Out = D} (expanded macros 0) (4,672 μs, 0.08%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 4591) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,456 μs, 0.02%)
+
+
+
+cats.FlatMap[F] (expanded macros 0) (2,434 μs, 0.04%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.github.UpdatePullRequestPayload] (expanded macros 0) (9,720 μs, 0.16%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("sbtVersion")]} (id 1470) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,117 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateIssueCommentOption]{type Repr = V} (id 4772) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,042 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.azurerepos.ClosePullRequestPayload]{type Out = K} (id 3413) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (796 μs, 0.01%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] (expanded macros 0) (1,080 μs, 0.02%)
+
+
+
+cats.kernel.Semigroup[List[org.scalasteward.core.repoconfig.PullRequestGroup]] (expanded macros 0) (1,961 μs, 0.03%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (734 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],org.scalasteward.core.git.Sha1] :: shapeless.HNil]] (id 5526) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,589 μs, 0.06%)
+
+
+
+eu.timepit.refined.api.Validate[Char,eu.timepit.refined.numeric.Less['a']]{type R = R} (expanded macros 0) (7,401 μs, 0.12%)
+
+
+
+shapeless.Generic[org.scalasteward.core.update.artifact.ArtifactChange]{type Repr = V} (id 8734) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (952 μs, 0.02%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (736 μs, 0.01%)
+
+
+
+F[Option[V]] => ?{def map: ?} (expanded macros 0) (832 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Some[Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Some[Option[List[String]]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (4,059 μs, 0.07%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.bitbucket.Reviewer] (expanded macros 0) (1,291 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (2,521 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pullRequests")]} (id 7846) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (644 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,List[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,322 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("status")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,760 μs, 0.03%)
+
+
+
+org.http4s.headers.Authorization => org.http4s.Header.ToRaw (expanded macros 0) (6,462 μs, 0.10%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = V} (expanded macros 3) (2,324 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.azurerepos.PullRequestPayload]{type Repr = V} (id 3389) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,163 μs, 0.04%)
+
+
+
+((=> String) => F[Unit]) => F[?] (expanded macros 0) (3,461 μs, 0.06%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("html_url")]} (id 4686) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,263 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("MavenRepository")]} (id 1679) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,366 μs, 0.02%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.ArtifactId] (expanded macros 0) (661 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.PR]{type Out = K} (id 4095) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,415 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.azurerepos.Paginated[org.scalasteward.core.forge.data.PullRequestOut]] (expanded macros 0) (4,177 μs, 0.07%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("status")]} (id 3446) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,013 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucket.DefaultReviewers]{type Out = K} (id 3684) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,147 μs, 0.02%)
+
+
+
+F[scalacache.caffeine.CaffeineCache[[_]F[_],String,org.http4s.Status]] => ?{def map: ?} (expanded macros 0) (807 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]{type Repr = V} (expanded macros 3) (3,654 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.CommitOut]{type Repr = V} (id 4316) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,550 μs, 0.03%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.Version] (expanded macros 0) (1,164 μs, 0.02%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (1,048 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Scope[A]]{type Out = K} (id 2193) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (4,321 μs, 0.07%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allowPreReleases")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ignore")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (6,022 μs, 0.10%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.ScalafmtConfig]{type Out = K} (id 8121) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (753 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Scope[A]]{type Out = K} (id 2191) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (4,060 μs, 0.07%)
+
+
+
+eu.timepit.refined.internal.WitnessAs[shapeless._0,Int] (expanded macros 0) (41,937 μs, 0.68%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver]{type Repr = R} (expanded macros 0) (13,321 μs, 0.22%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver]{type Out = K} (id 1674) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (6,959 μs, 0.11%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("href")] :: Symbol with shapeless.tag.Tagged[String("name")] :: shapeless.HNil,org.http4s.Uri :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (3,625 μs, 0.06%)
+
+
+
+org.scalasteward.core.io.WorkspaceAlg[F] (expanded macros 0) (2,230 μs, 0.04%)
+
+
+
+x$12.type => ?{def max: ?} (expanded macros 0) (670 μs, 0.01%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("updates")],Symbol with shapeless.tag.Tagged[_ >: String("dependencyOverrides") with String("reviewers") with String("assignees") with String("buildRoots") with String("updatePullRequests") with String("postUpdateHooks") <: String],Lub0] (expanded macros 0) (1,078 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.CrossDependency] (id 1423) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,760 μs, 0.03%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("commitMessage")],Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")],Lub0] (expanded macros 0) (689 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.edit.scalafix.ScalafixMigration]{type Repr = V} (expanded macros 3) (4,486 μs, 0.07%)
+
+
+
+F[List[org.scalasteward.core.forge.data.PullRequestOut]] => ?{def flatMap: ?} (expanded macros 0) (713 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("dependency")] :: Symbol with shapeless.tag.Tagged[String("filesContainingVersion")] :: shapeless.HNil,org.scalasteward.core.data.Dependency :: List[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (5,356 μs, 0.09%)
+
+
+
+ValueOf[org.scalasteward.core.coursier.VersionsCache.Value] (expanded macros 0) (538 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PullRequestGroup]{type Repr = V} (expanded macros 3) (1,491 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = R} (expanded macros 0) (6,949 μs, 0.11%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("maybeRepoConfigParsingError")]} (id 6855) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (867 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.ForArtifactId]{type Repr = V} (expanded macros 3) (4,236 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,775 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.BranchResp]{type Out = K} (id 4616) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,900 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.CreatePullRequestPayload]{type Out = K} (id 4964) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,300 μs, 0.02%)
+
+
+
+F[scala.collection.immutable.Vector[org.scalasteward.core.forge.gitea.GiteaApiAlg.Label]] => ?{def map: ?} (expanded macros 0) (1,490 μs, 0.02%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (557 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.VersionPattern]{type Repr = V} (id 8492) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,344 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("maybeError")]} (id 1326) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (8,550 μs, 0.14%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repocache.RefreshErrorAlg.Entry] (expanded macros 0) (4,958 μs, 0.08%)
+
+
+
+((com.monovore.decline.Opts[org.scalasteward.core.forge.ForgeType], com.monovore.decline.Opts[org.http4s.Uri], com.monovore.decline.Opts[String], com.monovore.decline.Opts[Boolean], com.monovore.decline.Opts[Boolean])) => ?{def mapN: ?} (expanded macros 0) (3,498 μs, 0.06%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] (expanded macros 0) (1,050 μs, 0.02%)
+
+
+
+F[org.scalasteward.core.forge.gitea.GiteaApiAlg.PullRequestResp] => ?{def map: ?} (expanded macros 0) (3,145 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("postUpdateHooks")]} (id 7852) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (618 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.azurerepos.PullRequestPayload]] (id 3383) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (35,554 μs, 0.58%)
+
+
+
+shapeless.Generic[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] (id 1009) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,205 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("grouping")]} (id 7468) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,116 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.BranchOut]{type Out = K} (id 5542) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (927 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commit")],org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit] :: shapeless.HNil] (id 4625) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (4,356 μs, 0.07%)
+
+
+
+Option[(String, String)] => ?{def toMap: ?} (expanded macros 0) (650 μs, 0.01%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (525 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.Header]{type Out = K} (id 1659) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,129 μs, 0.03%)
+
+
+
+org.scalasteward.core.forge.data.PullRequestNumber with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],org.scalasteward.core.forge.data.PullRequestNumber] :: Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("version")],Int] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("links")],scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]]] :: shapeless.HNil <:< (org.scalasteward.core.forge.data.PullRequestNumber :: Int :: String :: org.scalasteward.core.forge.data.PullRequestState :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] :: shapeless.HNil) (expanded macros 0) (553 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.forge.bitbucket.CreateComment] => ?{def map: ?} (expanded macros 0) (1,384 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Repr = V} (id 7172) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,377 μs, 0.02%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: None.type :: Some[List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (1,974 μs, 0.03%)
+
+
+
+F[Either[Throwable,coursier.Fetch.Result]] => ?{def flatMap: ?} (expanded macros 0) (1,955 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: shapeless.HNil,Long :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,600 μs, 0.06%)
+
+
+
+cats.kernel.Order[List[org.scalasteward.core.data.Version.Component]] (expanded macros 0) (1,033 μs, 0.02%)
+
+
+
+F[Option[org.scalasteward.core.repoconfig.RepoConfig]] => ?{def flatMap: ?} (expanded macros 0) (4,749 μs, 0.08%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.UpdatePattern] (expanded macros 0) (1,693 μs, 0.03%)
+
+
+
+cats.kernel.Order[cats.data.NonEmptyList[org.scalasteward.core.data.Version]] (expanded macros 0) (1,083 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.CrossDependency] (expanded macros 0) (2,763 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.encoding.ConfiguredAsObjectEncoder[org.scalasteward.core.data.Resolver.MavenRepository]] (id 1943) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (78,098 μs, 1.27%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("organization")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,912 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.coursier.VersionsCache.Value]{type Repr = V} (id 1321) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (6,432 μs, 0.10%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.git.Branch]] (expanded macros 0) (2,145 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 2485) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,435 μs, 0.02%)
+
+
+
+cats.effect.kernel.GenSpawn[[_]F[_],E] (expanded macros 0) (1,869 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,680 μs, 0.06%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Condition]] (id 3985) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (17,955 μs, 0.29%)
+
+
+
+cats.arrow.Compose[monocle.Optional] (expanded macros 0) (731 μs, 0.01%)
+
+
+
+org.scalasteward.core.io.FileAlg[F] (expanded macros 0) (4,218 μs, 0.07%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.Header]{type Out = K} (id 1657) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,502 μs, 0.02%)
+
+
+
+F[(org.scalasteward.core.forge.data.RepoOut, org.scalasteward.core.forge.data.RepoOut)] => ?{def flatMap: ?} (expanded macros 0) (768 μs, 0.01%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (601 μs, 0.01%)
+
+
+
+F[Option[org.scalasteward.core.git.Commit]] => ?{def map: ?} (expanded macros 0) (5,313 μs, 0.09%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateLabelReq]{type Repr = R} (expanded macros 0) (18,833 μs, 0.31%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("filesContainingVersion")] :: shapeless.HNil,List[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,459 μs, 0.04%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Repr = R} (expanded macros 0) (899 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.VersionPattern] (expanded macros 0) (844 μs, 0.01%)
+
+
+
+org.http4s.QueryParamEncoder[String] (expanded macros 0) (1,839 μs, 0.03%)
+
+
+
+Numeric[Int] (expanded macros 0) (3,694 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,321 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("allow")]} (id 8329) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,092 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Repr = V} (expanded macros 3) (1,350 μs, 0.02%)
+
+
+
+eu.timepit.refined.api.Validate[Int,eu.timepit.refined.generic.Equal[40]]{type R = RP} (expanded macros 0) (2,202 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 2086) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (879 μs, 0.01%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.data.Version]] (expanded macros 0) (6,107 μs, 0.10%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.Comment]{type Out = K} (id 4300) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (759 μs, 0.01%)
+
+
+
+org.scalasteward.core.data.CrossDependency with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("crossDependency")],org.scalasteward.core.data.CrossDependency] :: cats.data.NonEmptyList[org.scalasteward.core.data.Version] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerVersions")],cats.data.NonEmptyList[org.scalasteward.core.data.Version]] :: Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerGroupId")],Option[org.scalasteward.core.data.GroupId]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerArtifactId")],Option[String]] :: shapeless.HNil <:< (org.scalasteward.core.data.CrossDependency :: cats.data.NonEmptyList[org.scalasteward.core.data.Version] :: Option[org.scalasteward.core.data.GroupId] :: Option[String] :: shapeless.HNil) (expanded macros 0) (862 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: shapeless.HNil,Option[String] :: List[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,891 μs, 0.11%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.update.artifact.ArtifactChanges]{type Repr = R} (expanded macros 0) (4,931 μs, 0.08%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.RepoConfig]{type Out = K} (id 7635) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,572 μs, 0.03%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("html_url")],org.http4s.Uri] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],String] :: Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("number")],Int] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("base")],org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo] :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("head")],org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo] :: shapeless.HNil] (id 4689) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (10,172 μs, 0.16%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.UpdateState]{type Out = K} (id 4467) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (921 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("body")] :: Symbol with shapeless.tag.Tagged[String("head")] :: Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("draft")] :: shapeless.HNil,String :: String :: org.scalasteward.core.git.Branch :: Boolean :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,431 μs, 0.07%)
+
+
+
+io.circe.Encoder[cats.data.NonEmptyList[String]] (expanded macros 0) (537 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.Repository]{type Repr = V} (expanded macros 3) (1,230 μs, 0.02%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.BranchResp] (expanded macros 0) (20,596 μs, 0.33%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: Some[List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (1,488 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 1763) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (925 μs, 0.01%)
+
+
+
+shapeless.ops.nat.ToInt[shapeless._0] (expanded macros 3) (699 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.CommitOut] (expanded macros 0) (1,599 μs, 0.03%)
+
+
+
+com.monovore.decline.Argument[Int] (expanded macros 0) (993 μs, 0.02%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: None.type :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (669 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.data.PullRequestNumber] (expanded macros 0) (1,494 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.buildtool.sbt.data.ScalaVersion]{type Repr = R :: shapeless.HNil} (expanded macros 3) (3,076 μs, 0.05%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] (expanded macros 0) (1,796 μs, 0.03%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("artifactIdBefore")],Symbol with shapeless.tag.Tagged[String("artifactIdAfter")],Lub0] (expanded macros 0) (576 μs, 0.01%)
+
+
+
+chunks.type => ?{def mapFilter: ?} (expanded macros 0) (3,185 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updates")]} (id 7850) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (722 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Page[A]]] (id 4075) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (15,525 μs, 0.25%)
+
+
+
+eu.timepit.refined.api.Validate[Char,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]{type R = RB} (expanded macros 0) (3,490 μs, 0.06%)
+
+
+
+shapeless.ops.record.Keys[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("location")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (7,928 μs, 0.13%)
+
+
+
+shapeless.ops.record.Keys[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdBefore")],Option[String]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdAfter")],String] :: shapeless.HNil] (expanded macros 0) (1,782 μs, 0.03%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allow")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allowPreReleases")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ignore")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (9,655 μs, 0.16%)
+
+
+
+eu.timepit.refined.api.Validate[Char,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]{type R = RB} (expanded macros 0) (2,938 μs, 0.05%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("command")],Symbol with shapeless.tag.Tagged[_ >: String("addToGitBlameIgnoreRevs") with String("commitMessage") <: String],Lub0] (expanded macros 0) (1,022 μs, 0.02%)
+
+
+
+F[List[String]] => ?{def void: ?} (expanded macros 0) (5,660 μs, 0.09%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitlab.CommitId]{type Repr = V} (expanded macros 3) (1,290 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.buildtool.sbt.data.SbtVersion] (expanded macros 0) (21,234 μs, 0.34%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (665 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.UpdatesConfig]{type Out = K} (id 8238) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,821 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.PullRequestOut]{type Out = K} (id 4382) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,859 μs, 0.03%)
+
+
+
+F[Option[cats.data.NonEmptyList[org.scalasteward.core.update.data.UpdateState.WithUpdate]]] => ?{def flatMap: ?} (expanded macros 0) (1,733 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucket.CommentContent]{type Repr = V} (id 3647) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,087 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("project")]} (id 4197) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (739 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("versions")] :: Symbol with shapeless.tag.Tagged[String("maybeError")] :: shapeless.HNil,List[org.scalasteward.core.data.Version] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (20,444 μs, 0.33%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (610 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pattern")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (5,918 μs, 0.10%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Comment]{type Out = K} (id 3975) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (913 μs, 0.01%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucketserver.Json.Project] (expanded macros 0) (11,976 μs, 0.19%)
+
+
+
+cats.Foldable[Option] (expanded macros 0) (691 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (989 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.Label]{type Out = K} (id 4805) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,106 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.data.Update.ForArtifactId]] (id 2295) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (67,152 μs, 1.09%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateLabelReq]] (id 4819) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (29,837 μs, 0.48%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateIssueCommentOption]{type Repr = R} (expanded macros 0) (14,811 μs, 0.24%)
+
+
+
+io.circe.KeyEncoder[org.scalasteward.core.coursier.VersionsCache.Key] (expanded macros 0) (3,546 μs, 0.06%)
+
+
+
+((=> String) => F[Unit]) => F[Unit] (expanded macros 0) (4,543 μs, 0.07%)
+
+
+
+eu.timepit.refined.internal.WitnessAs[shapeless._0,Int] (expanded macros 0) (2,297 μs, 0.04%)
+
+
+
+group.type => ?{def reduceMap: ?} (expanded macros 0) (2,154 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.CommitOut]{type Out = K} (id 4315) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,208 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("latestCommit")] :: shapeless.HNil,org.scalasteward.core.git.Sha1 :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,483 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.edit.scalafix.ScalafixMigration] (expanded macros 0) (1,456 μs, 0.02%)
+
+
+
+strings.type => ?{def mkString_: ?} (expanded macros 0) (1,156 μs, 0.02%)
+
+
+
+ValueOf[org.scalasteward.core.data.Version] (expanded macros 0) (931 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("key")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("value")],String] :: shapeless.HNil] (id 1668) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (5,822 μs, 0.09%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("rewriteRules")]} (id 2780) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,259 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("groupId")] :: Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (8,340 μs, 0.14%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.Credentials]{type Repr = V} (expanded macros 3) (2,266 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Comment]{type Repr = V} (expanded macros 3) (1,641 μs, 0.03%)
+
+
+
+creates.type => ?{def map: ?} (expanded macros 0) (1,677 μs, 0.03%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Branch] (expanded macros 0) (1,178 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitlab.MergeRequestPayload]{type Out = K} (id 5465) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,478 μs, 0.04%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]{type Repr = R} (expanded macros 0) (6,347 μs, 0.10%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.AttachLabelReq]{type Repr = R} (expanded macros 0) (15,910 μs, 0.26%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("update")] :: Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("entryCreatedAt")] :: Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("updateBranch")] :: shapeless.HNil,org.scalasteward.core.data.Update :: org.scalasteward.core.forge.data.PullRequestState :: org.scalasteward.core.util.Timestamp :: Option[org.scalasteward.core.forge.data.PullRequestNumber] :: Option[org.scalasteward.core.git.Branch] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (12,102 μs, 0.20%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,063 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("head")] :: shapeless.HNil,String :: Int :: String :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (14,280 μs, 0.23%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.PullRequestResp]] (id 4667) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (51,640 μs, 0.84%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (1,473 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.git.Branch] (expanded macros 0) (1,321 μs, 0.02%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("location")],Symbol with shapeless.tag.Tagged[_ >: String("headers") with String("credentials") <: String],Lub0] (expanded macros 0) (1,625 μs, 0.03%)
+
+
+
+c1.type => ?{def === : ?} (expanded macros 0) (2,017 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (3,246 μs, 0.05%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (548 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] (expanded macros 0) (1,398 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (2,375 μs, 0.04%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: None.type :: None.type :: Some[Option[Boolean]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (1,536 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("text")],String] :: shapeless.HNil]] (id 3981) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,940 μs, 0.08%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,017 μs, 0.07%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("credentials")],Symbol with shapeless.tag.Tagged[String("headers")],Lub0] (expanded macros 0) (1,248 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("newerGroupId")] :: Symbol with shapeless.tag.Tagged[String("newerArtifactId")] :: shapeless.HNil,Option[org.scalasteward.core.data.GroupId] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (9,021 μs, 0.15%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("forArtifactIds")]} (id 2407) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (2,814 μs, 0.05%)
+
+
+
+F[List[org.scalasteward.core.edit.update.data.Substring.Replacement]] => ?{def flatMap: ?} (expanded macros 0) (4,309 μs, 0.07%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.nurture.PullRequestRepository.Entry] (expanded macros 0) (9,547 μs, 0.15%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: shapeless.HNil,Long :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,386 μs, 0.02%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("forArtifactIds")],cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil] (id 2410) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (4,381 μs, 0.07%)
+
+
+
+cats.Show[String] (expanded macros 0) (14,312 μs, 0.23%)
+
+
+
+metadata.versionScheme.type => ?{def tupleLeft: ?} (expanded macros 0) (685 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("dependencyInfos")]} (id 6857) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (764 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.update.artifact.ArtifactChange] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("changes")],List[org.scalasteward.core.update.artifact.ArtifactChange]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (1,297 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Version] (expanded macros 0) (2,700 μs, 0.04%)
+
+
+
+F[Map[org.http4s.Uri,org.scalasteward.core.nurture.PullRequestRepository.Entry]] => ?{def map: ?} (expanded macros 0) (2,069 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("location")]} (id 1765) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (883 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("slug")],String] :: org.scalasteward.core.forge.bitbucketserver.Json.Project with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("project")],org.scalasteward.core.forge.bitbucketserver.Json.Project] :: shapeless.HNil]] (id 4200) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,570 μs, 0.06%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (3,108 μs, 0.05%)
+
+
+
+io.circe.Decoder[Option[cats.data.NonEmptyList[String]]] (expanded macros 0) (1,259 μs, 0.02%)
+
+
+
+cats.effect.kernel.MonadCancel[cats.effect.IO,Throwable] (expanded macros 0) (3,127 μs, 0.05%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Out = K} (id 2848) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (813 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("contains")]} (id 8476) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (721 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.forge.azurerepos.Paginated[org.scalasteward.core.forge.data.PullRequestOut]] => ?{def map: ?} (expanded macros 0) (1,510 μs, 0.02%)
+
+
+
+buildTools.type => ?{def traverse_: ?} (expanded macros 0) (868 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder]] (expanded macros 0) (2,431 μs, 0.04%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = R} (expanded macros 0) (18,591 μs, 0.30%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.Grouped]{type Out = K} (id 2452) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,594 μs, 0.04%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Comment]{type Repr = R} (expanded macros 0) (9,486 μs, 0.15%)
+
+
+
+req.type => ?{def pure: ?} (expanded macros 0) (643 μs, 0.01%)
+
+
+
+cats.kernel.Order[org.scalasteward.core.data.Resolver] (expanded macros 0) (599 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.github.GitHubAssignees] (expanded macros 0) (10,865 μs, 0.18%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("open")] :: Symbol with shapeless.tag.Tagged[String("closed")] :: Symbol with shapeless.tag.Tagged[String("fromRef")] :: Symbol with shapeless.tag.Tagged[String("toRef")] :: Symbol with shapeless.tag.Tagged[String("locked")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: shapeless.HNil,org.scalasteward.core.forge.data.PullRequestState :: Boolean :: Boolean :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: Boolean :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (11,489 μs, 0.19%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer]{type Repr = R} (expanded macros 0) (10,024 μs, 0.16%)
+
+
+
+installations.type => ?{def traverse: ?} (expanded macros 0) (1,753 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Repr = V} (id 7460) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,123 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("user")] :: Symbol with shapeless.tag.Tagged[String("pass")] :: shapeless.HNil,String :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (3,986 μs, 0.06%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.bitbucketserver.Json.NewPR] (expanded macros 0) (1,345 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (1,527 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("body")] :: shapeless.HNil,String :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,070 μs, 0.03%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateIssueCommentOption] (expanded macros 0) (20,143 μs, 0.33%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Out = Labels} (id 2877) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (726 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Link]{type Repr = V} (id 4020) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,475 μs, 0.02%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sourceRefName")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("targetRefName")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],Option[List[String]]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("description")],String] :: shapeless.HNil] (id 3403) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (7,365 μs, 0.12%)
+
+
+
+x$9.type => ?{def nonEmpty: ?} (expanded macros 0) (802 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("reviewer_ids")]} (id 5484) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (851 μs, 0.01%)
+
+
+
+F[Boolean] => ?{def ifM: ?} (expanded macros 0) (3,676 μs, 0.06%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Dependency] (expanded macros 0) (2,518 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Version] (id 2544) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,944 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (3,732 μs, 0.06%)
+
+
+
+io.circe.KeyEncoder[org.http4s.Uri] (expanded macros 0) (600 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[Option[scala.util.matching.Regex] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")],Option[scala.util.matching.Regex]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("customLabels")],List[String]] :: shapeless.HNil] (expanded macros 0) (4,054 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (3,383 μs, 0.05%)
+
+
+
+Option[org.http4s.Uri] => ?{def tupleLeft: ?} (expanded macros 0) (716 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[org.scalasteward.core.data.CrossDependency with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("crossDependency")],org.scalasteward.core.data.CrossDependency] :: cats.data.NonEmptyList[org.scalasteward.core.data.Version] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerVersions")],cats.data.NonEmptyList[org.scalasteward.core.data.Version]] :: Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerGroupId")],Option[org.scalasteward.core.data.GroupId]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerArtifactId")],Option[String]] :: shapeless.HNil] (id 2313) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (19,258 μs, 0.31%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("milestone")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,Option[Int] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,510 μs, 0.11%)
+
+
+
+F[List[org.scalasteward.core.data.Repo]] => ?{def flatMap: ?} (expanded macros 0) (1,914 μs, 0.03%)
+
+
+
+cats.kernel.Order[org.scalasteward.core.data.Dependency] (expanded macros 0) (3,255 μs, 0.05%)
+
+
+
+buildRoot.type => ?{def -> : ?} (expanded macros 0) (953 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Resolver.IvyRepository] (expanded macros 0) (1,951 μs, 0.03%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.data.GroupId]] (expanded macros 0) (3,277 μs, 0.05%)
+
+
+
+Option[String] => ?{def orEmpty: ?} (expanded macros 0) (806 μs, 0.01%)
+
+
+
+com.monovore.decline.Argument[scala.concurrent.duration.FiniteDuration] (expanded macros 0) (4,192 μs, 0.07%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("key")]} (id 4144) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (821 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: None.type :: None.type :: None.type :: Some[Option[Boolean]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("groupId")] :: Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil]{type Out = Rec} (expanded macros 0) (1,976 μs, 0.03%)
+
+
+
+Numeric[Int] (expanded macros 0) (1,131 μs, 0.02%)
+
+
+
+Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignee")],Option[String]] :: Option[Vector[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],Option[Vector[String]]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("base")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("due_date")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("head")],Option[String]] :: Option[Vector[Int]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],Option[Vector[Int]]] :: Option[Int] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("milestone")],Option[Int]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: shapeless.HNil <:< (Option[String] :: Option[Vector[String]] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Vector[Int]] :: Option[Int] :: Option[String] :: shapeless.HNil) (expanded macros 0) (592 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("grouping")]} (id 7532) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,182 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreatePullRequestOption]{type Out = K} (id 4722) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,758 μs, 0.04%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter]] (expanded macros 0) (1,686 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (721 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Update.Grouped]{type Repr = R} (expanded macros 0) (23,939 μs, 0.39%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("html_url")] :: Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,org.http4s.Uri :: org.scalasteward.core.forge.data.PullRequestState :: org.scalasteward.core.forge.data.PullRequestNumber :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (4,934 μs, 0.08%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("milestone")]} (id 4735) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,346 μs, 0.02%)
+
+
+
+F[org.scalasteward.core.forge.data.PullRequestOut] => ?{def map: ?} (expanded macros 0) (805 μs, 0.01%)
+
+
+
+exitValue.type => ?{def === : ?} (expanded macros 0) (602 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("fromRef")]} (id 4052) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (826 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,548 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 4437) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (587 μs, 0.01%)
+
+
+
+cats.effect.kernel.GenTemporal[F,Throwable] (expanded macros 0) (1,409 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("reviewer_ids")] :: Symbol with shapeless.tag.Tagged[String("target_project_id")] :: Symbol with shapeless.tag.Tagged[String("remove_source_branch")] :: Symbol with shapeless.tag.Tagged[String("source_branch")] :: Symbol with shapeless.tag.Tagged[String("target_branch")] :: shapeless.HNil,Option[List[Int]] :: Long :: Option[Boolean] :: String :: org.scalasteward.core.git.Branch :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (8,503 μs, 0.14%)
+
+
+
+io.circe.generic.extras.decoding.ReprDecoder[List[org.scalasteward.core.update.artifact.ArtifactChange] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("changes")],List[org.scalasteward.core.update.artifact.ArtifactChange]] :: shapeless.HNil] (id 8850) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredDecoder`) (3,402 μs, 0.06%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.data.Resolver.Credentials]] (expanded macros 0) (2,792 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("parent")]} (id 4555) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,585 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("title")]} (id 2484) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,596 μs, 0.03%)
+
+
+
+F[Either[Throwable,coursier.core.Repository]] => ?{def map: ?} (expanded macros 0) (2,469 μs, 0.04%)
+
+
+
+fs2.Stream[[x]fs2.Pure[x],org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]] => ?{def toList: ?} (expanded macros 0) (8,554 μs, 0.14%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("failedAt")]} (id 6811) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (591 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("default_branch")]} (id 4433) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (896 μs, 0.01%)
+
+
+
+cats.kernel.Order[String] => ?{def contramap: ?} (expanded macros 0) (3,543 μs, 0.06%)
+
+
+
+cats.UnorderedFoldable[Option] (expanded macros 0) (635 μs, 0.01%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: shapeless.HNil] (id 4012) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (3,099 μs, 0.05%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("slug")],String] :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("links")],scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]]] :: shapeless.HNil] (id 4181) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (3,844 μs, 0.06%)
+
+
+
+eu.timepit.refined.api.RefType[F] (expanded macros 0) (894 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 1958) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (876 μs, 0.01%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("organization")],Option[String]] :: shapeless.HNil] (id 4515) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (5,742 μs, 0.09%)
+
+
+
+migrations.type => ?{def traverse: ?} (expanded macros 0) (1,480 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("values")]} (id 3964) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,000 μs, 0.02%)
+
+
+
+F[Option[org.scalasteward.core.edit.EditAttempt]] => ?{def flatMap: ?} (expanded macros 0) (849 μs, 0.01%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (671 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("token")],String] :: shapeless.HNil]] (id 5362) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (2,851 μs, 0.05%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (2,120 μs, 0.03%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (1,076 μs, 0.02%)
+
+
+
+F[Unit] => ?{def *> : ?} (expanded macros 0) (1,389 μs, 0.02%)
+
+
+
+cats.Traverse[Seq] (expanded macros 0) (1,658 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("allow")] :: Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] :: Option[List[String]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (11,990 μs, 0.19%)
+
+
+
+cats.Functor[Option] (expanded macros 0) (656 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("allow")]} (id 8270) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,046 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.gitlab.CommitId] (expanded macros 0) (10,729 μs, 0.17%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("toRef")] :: Symbol with shapeless.tag.Tagged[String("locked")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: shapeless.HNil,org.scalasteward.core.forge.bitbucketserver.Json.Ref :: Boolean :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,236 μs, 0.08%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.PullRequestsConfig] (expanded macros 0) (809 μs, 0.01%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.Scope[A]] (expanded macros 0) (56,509 μs, 0.92%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("assignees")]} (id 7880) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (642 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.UpdatePattern] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] :: Option[List[String]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (7,624 μs, 0.12%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.data.Resolver.IvyRepository]{type Out = K} (id 2140) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (1,501 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Out = Labels} (id 7240) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (981 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("buildRoots")]} (id 7624) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (792 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.nurture.PullRequestRepository.Entry]{type Repr = V} (id 6578) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,063 μs, 0.03%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.git.Branch] (expanded macros 0) (1,503 μs, 0.02%)
+
+
+
+cats.Alternative[List] (expanded macros 0) (884 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (4,791 μs, 0.08%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.GroupId] (expanded macros 0) (889 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PullRequestGroup]{type Out = K} (id 7361) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (819 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.CommitOut]{type Repr = V} (expanded macros 3) (1,561 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (3,222 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.CommitsConfig]{type Repr = V} (expanded macros 3) (1,253 μs, 0.02%)
+
+
+
+Int(5) => eu.timepit.refined.api.Refined[Int,eu.timepit.refined.numeric.Greater[shapeless._0]] (expanded macros 0) (67,188 μs, 1.09%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.UserOut] (expanded macros 0) (9,960 μs, 0.16%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("location")]} (id 1724) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (963 μs, 0.02%)
+
+
+
+io.circe.generic.extras.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pattern")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (id 2089) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredEncoder`) (9,687 μs, 0.16%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.util.Timestamp] (expanded macros 0) (3,988 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.VersionPattern]{type Out = K} (id 8489) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,094 μs, 0.02%)
+
+
+
+Int(2) => ?{def minutes: ?} (expanded macros 0) (1,462 μs, 0.02%)
+
+
+
+(=> cats.data.NonEmptyList[String]) => ?{def mkString_: ?} (expanded macros 0) (612 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Project]{type Repr = V} (expanded macros 3) (1,378 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("customLabels")]} (id 7451) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,452 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("head")]} (id 4737) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,531 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (11,370 μs, 0.18%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[org.scalasteward.core.repoconfig.CommitsConfig] :: Some[org.scalasteward.core.repoconfig.PullRequestsConfig] :: Some[org.scalasteward.core.repoconfig.ScalafmtConfig] :: Some[org.scalasteward.core.repoconfig.UpdatesConfig] :: Some[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Some[Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Some[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: Some[List[String]] :: Some[List[String]] :: Some[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("commits")] :: Symbol with shapeless.tag.Tagged[String("pullRequests")] :: Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil]{type Out = Rec} (expanded macros 0) (7,095 μs, 0.12%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")]} (id 7544) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,141 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PullRequestGroup]{type Repr = V} (id 7334) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,005 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repocache.RepoCache] (expanded macros 0) (4,979 μs, 0.08%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.PostUpdateHookConfig] (expanded macros 0) (835 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.github.GitHubReviewers] (expanded macros 0) (1,319 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Version] (expanded macros 0) (7,107 μs, 0.12%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Dependency]{type Out = K} (id 1457) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,810 μs, 0.05%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.update.artifact.ArtifactChange]{type Repr = R} (expanded macros 0) (8,421 μs, 0.14%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.ForArtifactId]{type Repr = V} (id 2354) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,961 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,org.scalasteward.core.repoconfig.ScalafmtConfig :: org.scalasteward.core.repoconfig.UpdatesConfig :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (10,328 μs, 0.17%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucketserver.Json.Page[org.scalasteward.core.forge.bitbucketserver.Json.PR]] (expanded macros 0) (5,151 μs, 0.08%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (13,129 μs, 0.21%)
+
+
+
+shapeless.Lazy[shapeless.Generic[org.scalasteward.core.forge.data.PullRequestNumber]{type Repr = R :: shapeless.HNil}] (id 4372) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (2,828 μs, 0.05%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.data.Comment]{type Repr = R} (expanded macros 0) (6,565 μs, 0.11%)
+
+
+
+Int(2) => ?{def hours: ?} (expanded macros 0) (1,843 μs, 0.03%)
+
+
+
+result.type => ?{def flatMap: ?} (expanded macros 0) (587 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = V} (id 1716) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,387 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.ForGroupId]{type Repr = V} (id 2404) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,065 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,669 μs, 0.03%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (777 μs, 0.01%)
+
+
+
+io.circe.Decoder[Vector[String]] (expanded macros 0) (914 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.TokenOut]{type Out = K} (id 5356) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (620 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.UpdatesConfig]{type Repr = V} (expanded macros 3) (2,331 μs, 0.04%)
+
+
+
+F[org.scalasteward.core.git.Sha1] => ?{def flatMap: ?} (expanded macros 0) (994 μs, 0.02%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[org.scalasteward.core.repoconfig.CommitsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commits")],org.scalasteward.core.repoconfig.CommitsConfig] :: org.scalasteward.core.repoconfig.PullRequestsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pullRequests")],org.scalasteward.core.repoconfig.PullRequestsConfig] :: org.scalasteward.core.repoconfig.ScalafmtConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalafmt")],org.scalasteward.core.repoconfig.ScalafmtConfig] :: org.scalasteward.core.repoconfig.UpdatesConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],org.scalasteward.core.repoconfig.UpdatesConfig] :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (10,507 μs, 0.17%)
+
+
+
+StringContext => ?{def uri: ?} (expanded macros 0) (5,949 μs, 0.10%)
+
+
+
+io.circe.Encoder[Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] (expanded macros 0) (1,005 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("forArtifactIds")] :: shapeless.HNil,cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil]{type Out = R} (expanded macros 0) (6,348 μs, 0.10%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("contains")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,538 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (2,288 μs, 0.04%)
+
+
+
+F[(Either[Throwable,Unit], org.scalasteward.core.git.CommitMsg)] => ?{def flatMap: ?} (expanded macros 0) (1,025 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("open")]} (id 4054) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (792 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.UpdatesConfig]{type Repr = R} (expanded macros 0) (22,941 μs, 0.37%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.data.Update.Grouped] (expanded macros 0) (32,158 μs, 0.52%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.BranchOut]{type Repr = V} (id 4268) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,210 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("source_branch")]} (id 5481) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (910 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.BranchOut]{type Out = K} (id 4265) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,052 μs, 0.02%)
+
+
+
+cats.kernel.Semigroup[List[A]] (expanded macros 0) (7,944 μs, 0.13%)
+
+
+
+shapeless.Default[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Out = Options} (id 7522) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (2,752 μs, 0.04%)
+
+
+
+org.scalasteward.core.data.Update.ForGroupIdDecoder.type => ?{def widen: ?} (expanded macros 0) (1,068 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("html_url")],org.http4s.Uri] :: org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: org.scalasteward.core.forge.data.PullRequestNumber with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("number")],org.scalasteward.core.forge.data.PullRequestNumber] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: shapeless.HNil]] (id 4394) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (7,812 μs, 0.13%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.UpdatePattern] (expanded macros 0) (1,606 μs, 0.03%)
+
+
+
+cats.Foldable[[+B]Either[io.circe.Error,B]] (expanded macros 0) (731 μs, 0.01%)
+
+
+
+cats.kernel.Monoid[String] (expanded macros 0) (2,868 μs, 0.05%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Comment]{type Out = K} (id 3973) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,381 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("body")] :: Symbol with shapeless.tag.Tagged[String("due_date")] :: Symbol with shapeless.tag.Tagged[String("head")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("milestone")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Vector[Int]] :: Option[Int] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (19,895 μs, 0.32%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.git.Sha1] (expanded macros 0) (612 μs, 0.01%)
+
+
+
+cats.kernel.Order[org.http4s.Uri.Host] (expanded macros 0) (623 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.azurerepos.PullRequestPayload]{type Repr = R} (expanded macros 0) (19,975 μs, 0.32%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Page[A]]{type Repr = V} (expanded macros 3) (1,994 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.update.artifact.ArtifactChanges]{type Repr = R} (expanded macros 0) (7,982 μs, 0.13%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[org.scalasteward.core.data.Version]] (expanded macros 0) (4,802 μs, 0.08%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucket.CreateComment] (expanded macros 0) (12,831 μs, 0.21%)
+
+
+
+F[(List[org.scalasteward.core.update.data.UpdateState], List[org.scalasteward.core.update.data.UpdateState.DependencyOutdated])] => ?{def flatMap: ?} (expanded macros 0) (706 μs, 0.01%)
+
+
+
+c1.type => ?{def compare: ?} (expanded macros 0) (2,274 μs, 0.04%)
+
+
+
+io.circe.generic.extras.encoding.ConfiguredAsObjectEncoder[org.scalasteward.core.data.Resolver.IvyRepository] (expanded macros 0) (73,010 μs, 1.18%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("forArtifactIds")],cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil]] (id 2445) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (7,116 μs, 0.12%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 4811) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,494 μs, 0.02%)
+
+
+
+x.assignees.type => ?{def |+| : ?} (expanded macros 0) (575 μs, 0.01%)
+
+
+
+F[List[org.scalasteward.core.nurture.PullRequestData[cats.Id]]] => ?{def flatMap: ?} (expanded macros 0) (741 μs, 0.01%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit] (expanded macros 0) (22,050 μs, 0.36%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = V} (id 1964) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,556 μs, 0.04%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Branch]] (expanded macros 0) (885 μs, 0.01%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateForkOption] (expanded macros 0) (24,597 μs, 0.40%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updates")]} (id 7654) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (540 μs, 0.01%)
+
+
+
+io.circe.Decoder[io.circe.Json] (expanded macros 0) (1,439 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.github.RepositoriesOut]] (id 5314) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (103,162 μs, 1.67%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("html_url")],org.http4s.Uri] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],String] :: Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("number")],Int] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("base")],org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo] :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("head")],org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo] :: shapeless.HNil]] (id 4688) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (11,084 μs, 0.18%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (4,145 μs, 0.07%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[String]] (expanded macros 0) (769 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.BranchResp]{type Repr = V} (expanded macros 3) (2,523 μs, 0.04%)
+
+
+
+scala.util.Using.Releasable[org.bouncycastle.util.io.pem.PemReader] (expanded macros 0) (1,236 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("location")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (6,055 μs, 0.10%)
+
+
+
+F[org.scalasteward.core.forge.bitbucketserver.Json.Repo] => ?{def flatMap: ?} (expanded macros 0) (1,004 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 4009) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (814 μs, 0.01%)
+
+
+
+cats.kernel.Order[org.scalasteward.core.data.Version] (expanded macros 0) (1,584 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.CommitsConfig]{type Repr = R} (expanded macros 0) (5,615 μs, 0.09%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("groupId")] :: Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,Option[org.scalasteward.core.data.GroupId] :: Option[String] :: cats.data.NonEmptyList[String] :: String :: Option[Boolean] :: shapeless.HNil]{type Out = R} (expanded macros 0) (5,252 μs, 0.09%)
+
+
+
+F[Seq[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]]] => ?{def map: ?} (expanded macros 0) (1,747 μs, 0.03%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (3,065 μs, 0.05%)
+
+
+
+eu.timepit.refined.api.Validate[Int,eu.timepit.refined.generic.Equal[40]]{type R = RP} (expanded macros 0) (2,777 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: shapeless.HNil,org.scalasteward.core.git.Sha1 :: shapeless.HNil]{type Out = R} (expanded macros 0) (4,380 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("sha")] :: shapeless.HNil,org.scalasteward.core.git.Sha1 :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,570 μs, 0.06%)
+
+
+
+List[String] => ?{def traverse_: ?} (expanded macros 0) (1,036 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = R} (expanded macros 0) (7,248 μs, 0.12%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.VersionPattern]{type Repr = R} (expanded macros 0) (11,758 μs, 0.19%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("groupIdBefore")] :: Symbol with shapeless.tag.Tagged[String("groupIdAfter")] :: Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,Option[org.scalasteward.core.data.GroupId] :: org.scalasteward.core.data.GroupId :: Option[String] :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (3,429 μs, 0.06%)
+
+
+
+io.circe.Encoder[Long] (expanded macros 0) (537 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("labels")]} (id 4845) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,571 μs, 0.03%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (576 μs, 0.01%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (674 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("comments")] :: Symbol with shapeless.tag.Tagged[String("status")] :: shapeless.HNil,List[org.scalasteward.core.forge.azurerepos.AzureComment] :: Int :: shapeless.HNil]{type Out = R} (expanded macros 0) (3,602 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("grouping")] :: Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.PullRequestGroup] :: Option[scala.util.matching.Regex] :: List[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (7,644 μs, 0.12%)
+
+
+
+cats.Traverse[List] (expanded macros 0) (4,621 μs, 0.07%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.azurerepos.PullRequestPayload]{type Out = K} (id 3386) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,088 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Project]{type Repr = R} (expanded macros 0) (7,225 μs, 0.12%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.GitHubAssignees]{type Out = K} (id 5255) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (766 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("owner")] :: Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("archived")] :: Symbol with shapeless.tag.Tagged[String("clone_url")] :: Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("parent")] :: shapeless.HNil,org.scalasteward.core.forge.gitea.GiteaApiAlg.User :: String :: Boolean :: org.http4s.Uri :: String :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (17,053 μs, 0.28%)
+
+
+
+cats.effect.kernel.Sync[F] (expanded macros 0) (8,778 μs, 0.14%)
+
+
+
+(=> Char('=')) => String (expanded macros 0) (648 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 4024) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,138 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,cats.data.NonEmptyList[String] :: String :: Option[Boolean] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,972 μs, 0.05%)
+
+
+
+F[(Unit, (List[org.scalasteward.core.edit.scalafix.ScalafixMigration], List[org.scalasteward.core.edit.scalafix.ScalafixMigration]))] => ?{def flatMap: ?} (expanded macros 0) (958 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PullRequestGroup]{type Out = K} (id 7363) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (708 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.ScalafmtConfig]{type Repr = V} (expanded macros 3) (984 μs, 0.02%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.data.Resolver.Header]] (expanded macros 0) (2,627 μs, 0.04%)
+
+
+
+io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.CommitsConfig] (expanded macros 0) (22,750 μs, 0.37%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Repository]{type Out = K} (id 4190) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,056 μs, 0.02%)
+
+
+
+create.type => ?{def flatMap: ?} (expanded macros 0) (720 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,006 μs, 0.02%)
+
+
+
+F[org.scalasteward.core.forge.github.TokenOut] => ?{def flatMap: ?} (expanded macros 0) (1,776 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updateBranch")]} (id 6586) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,479 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 1846) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,464 μs, 0.02%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("description")],String] :: org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("open")],Boolean] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("closed")],Boolean] :: org.scalasteward.core.forge.bitbucketserver.Json.Ref with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fromRef")],org.scalasteward.core.forge.bitbucketserver.Json.Ref] :: org.scalasteward.core.forge.bitbucketserver.Json.Ref with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("toRef")],org.scalasteward.core.forge.bitbucketserver.Json.Ref] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("locked")],Boolean] :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]] :: shapeless.HNil] (id 4060) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (7,816 μs, 0.13%)
+
+
+
+cats.effect.kernel.GenConcurrent[[x]F[x],Throwable] (expanded macros 0) (2,123 μs, 0.03%)
+
+
+
+artifactIds.type => ?{def map: ?} (expanded macros 0) (647 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.github.GitHubAssignees]{type Repr = R} (expanded macros 0) (7,119 μs, 0.12%)
+
+
+
+((com.monovore.decline.Opts[String], com.monovore.decline.Opts[String], com.monovore.decline.Opts[Option[String]])) => ?{def mapN: ?} (expanded macros 0) (2,947 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (4,985 μs, 0.08%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.data.Update.ForArtifactId]] (expanded macros 0) (1,353 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Version] (expanded macros 0) (1,334 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("grouping")]} (id 7542) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,157 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 2006) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (950 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.ReprAsObjectCodec[org.scalasteward.core.repoconfig.CommitsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commits")],org.scalasteward.core.repoconfig.CommitsConfig] :: org.scalasteward.core.repoconfig.PullRequestsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pullRequests")],org.scalasteward.core.repoconfig.PullRequestsConfig] :: org.scalasteward.core.repoconfig.ScalafmtConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalafmt")],org.scalasteward.core.repoconfig.ScalafmtConfig] :: org.scalasteward.core.repoconfig.UpdatesConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],org.scalasteward.core.repoconfig.UpdatesConfig] :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (id 7660) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredCodec`) (29,248 μs, 0.47%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PullRequestGroup]{type Repr = V} (id 7364) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,010 μs, 0.02%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateLabelReq] (expanded macros 0) (24,908 μs, 0.40%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.RepoOut]{type Repr = V} (id 4424) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,053 μs, 0.03%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.util.Timestamp] (expanded macros 0) (1,116 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (916 μs, 0.01%)
+
+
+
+F[better.files.File] => ?{def flatMap: ?} (expanded macros 0) (20,631 μs, 0.33%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[org.scalasteward.core.edit.scalafix.ScalafixMigration] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("migrations")],List[org.scalasteward.core.edit.scalafix.ScalafixMigration]] :: shapeless.HNil] (expanded macros 0) (1,109 μs, 0.02%)
+
+
+
+x$2.type => ?{def traverse_: ?} (expanded macros 0) (2,087 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = R} (expanded macros 0) (1,285 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = K} (id 1948) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,832 μs, 0.03%)
+
+
+
+F[cats.effect.ExitCode] => ?{def map: ?} (expanded macros 0) (1,582 μs, 0.03%)
+
+
+
+F[List[org.scalasteward.core.update.artifact.ArtifactChange]] => ?{def map: ?} (expanded macros 0) (837 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,536 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.ScalafmtConfig] (expanded macros 0) (862 μs, 0.01%)
+
+
+
+to.patch.type => ?{def =!= : ?} (expanded macros 0) (689 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("dependency")]} (id 1600) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,131 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("status")]} (id 3417) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (821 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updates")]} (id 7627) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (631 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.azurerepos.AzureComment]{type Repr = V} (expanded macros 3) (1,578 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.User]{type Repr = R} (expanded macros 0) (15,768 μs, 0.26%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.GroupId] (expanded macros 0) (1,748 μs, 0.03%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[org.scalasteward.core.repoconfig.UpdatesConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],org.scalasteward.core.repoconfig.UpdatesConfig] :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (7,263 μs, 0.12%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.github.Repository] (expanded macros 0) (1,264 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("migrations")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (1,365 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer]] (id 4000) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (18,363 μs, 0.30%)
+
+
+
+io.circe.Decoder[List[String]] (expanded macros 0) (1,352 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repocache.RepoCache]{type Out = K} (id 6846) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,233 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("forArtifactIds")] :: shapeless.HNil,cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil]{type Out = R} (expanded macros 0) (18,362 μs, 0.30%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("archived")] :: shapeless.HNil,org.scalasteward.core.git.Branch :: Boolean :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,239 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (885 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.repoconfig.PullRequestGroup] (expanded macros 0) (659 μs, 0.01%)
+
+
+
+F[Option[Int]] => ?{def map: ?} (expanded macros 0) (798 μs, 0.01%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (1,379 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updatePullRequests")]} (id 7854) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (656 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 1767) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (896 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.forge.bitbucket.Page[org.scalasteward.core.forge.data.PullRequestOut]] => ?{def map: ?} (expanded macros 0) (1,200 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: shapeless.HNil] (id 4235) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (8,486 μs, 0.14%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.RepoConfig] (expanded macros 0) (921 μs, 0.01%)
+
+
+
+cats.kernel.Order[(org.scalasteward.core.data.GroupId, org.scalasteward.core.data.Version, cats.data.NonEmptyList[org.scalasteward.core.data.Version])] (expanded macros 0) (2,058 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.PR]{type Repr = R} (expanded macros 0) (16,085 μs, 0.26%)
+
+
+
+Numeric[Int] (expanded macros 0) (827 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.github.TokenOut] (expanded macros 0) (2,116 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("message")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,705 μs, 0.03%)
+
+
+
+x$10.asString.type => ?{def === : ?} (expanded macros 0) (2,423 μs, 0.04%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.bitbucketserver.Json.Comment] (expanded macros 0) (1,586 μs, 0.03%)
+
+
+
+org.http4s.headers.User-Agent => org.http4s.Header.ToRaw (expanded macros 0) (6,184 μs, 0.10%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 1834) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (928 μs, 0.02%)
+
+
+
+cats.Functor[F] (expanded macros 0) (533 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.CommentResp]{type Repr = R} (expanded macros 0) (23,907 μs, 0.39%)
+
+
+
+ForgeRepoAlg.this.logger.type => ?{def attemptWarn: ?} (expanded macros 0) (587 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreatePullRequestOption]{type Repr = V} (id 4723) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,856 μs, 0.05%)
+
+
+
+ValueOf[org.scalasteward.core.util.Timestamp] (expanded macros 0) (569 μs, 0.01%)
+
+
+
+o1.type => ?{def compare: ?} (expanded macros 0) (3,411 μs, 0.06%)
+
+
+
+io.circe.Decoder[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] (expanded macros 0) (5,091 μs, 0.08%)
+
+
+
+org.scalasteward.core.io.ProcessAlg[F] (expanded macros 0) (1,215 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.Comment] (expanded macros 0) (2,602 μs, 0.04%)
+
+
+
+Option[org.scalasteward.core.nurture.PullRequestRepository.Entry] => ?{def traverse: ?} (expanded macros 0) (1,431 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucket.CreateComment]] (id 3624) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (16,840 μs, 0.27%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ReprAsObjectCodec[List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pin")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allow")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allowPreReleases")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ignore")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil]] (id 8273) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (20,730 μs, 0.34%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] (id 7166) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (75,421 μs, 1.22%)
+
+
+
+F[org.scalasteward.core.edit.scalafix.ScalafixMigrations] => ?{def adaptErr: ?} (expanded macros 0) (529 μs, 0.01%)
+
+
+
+io.circe.generic.extras.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("location")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (id 1728) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredDecoder`) (14,110 μs, 0.23%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[String]] (expanded macros 0) (534 μs, 0.01%)
+
+
+
+String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: List[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],List[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil <:< (String :: Option[String] :: List[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil) (expanded macros 0) (527 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = R} (expanded macros 0) (15,429 μs, 0.25%)
+
+
+
+cats.kernel.Monoid[List[String]] (expanded macros 0) (742 μs, 0.01%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.data.DependencyInfo]] (expanded macros 0) (1,190 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Link]] (id 4014) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (24,402 μs, 0.40%)
+
+
+
+cats.effect.kernel.Sync[[_]F[_]] (expanded macros 0) (676 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("repository")]} (id 4160) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (779 μs, 0.01%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("credentials")],Symbol with shapeless.tag.Tagged[String("headers")],Lub0] (expanded macros 0) (1,218 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("message")]} (id 6810) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (846 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 1849) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (908 μs, 0.01%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (1,324 μs, 0.02%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (1,479 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: Symbol with shapeless.tag.Tagged[String("version")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("links")] :: shapeless.HNil,org.scalasteward.core.forge.data.PullRequestNumber :: Int :: String :: org.scalasteward.core.forge.data.PullRequestState :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] :: shapeless.HNil]{type Out = R} (expanded macros 0) (7,396 μs, 0.12%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,449 μs, 0.04%)
+
+
+
+cats.Applicative[F] (expanded macros 0) (5,987 μs, 0.10%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 5404) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (590 μs, 0.01%)
+
+
+
+fs2.compat.NotGiven[better.files.File <:< Nothing] (expanded macros 0) (4,998 μs, 0.08%)
+
+
+
+F[io.circe.Json] => ?{def void: ?} (expanded macros 0) (1,195 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.util.Timestamp with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatedAt")],org.scalasteward.core.util.Timestamp] :: List[org.scalasteward.core.data.Version] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("versions")],List[org.scalasteward.core.data.Version]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("maybeError")],Option[String]] :: shapeless.HNil] (id 1331) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (56,801 μs, 0.92%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Resolver] (expanded macros 0) (3,198 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 2000) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,092 μs, 0.02%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.forge.ForgeType] (expanded macros 0) (2,121 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.edit.scalafix.ScalafixMigration]] (id 2758) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (69,177 μs, 1.12%)
+
+
+
+io.circe.KeyEncoder[org.scalasteward.core.data.Repo] (expanded macros 0) (1,749 μs, 0.03%)
+
+
+
+org.scalasteward.core.data.CrossDependency with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("crossDependency")],org.scalasteward.core.data.CrossDependency] :: cats.data.NonEmptyList[org.scalasteward.core.data.Version] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerVersions")],cats.data.NonEmptyList[org.scalasteward.core.data.Version]] :: Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerGroupId")],Option[org.scalasteward.core.data.GroupId]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerArtifactId")],Option[String]] :: shapeless.HNil <:< (org.scalasteward.core.data.CrossDependency :: cats.data.NonEmptyList[org.scalasteward.core.data.Version] :: Option[org.scalasteward.core.data.GroupId] :: Option[String] :: shapeless.HNil) (expanded macros 0) (584 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],String] :: org.scalasteward.core.forge.bitbucketserver.Json.Repository with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("repository")],org.scalasteward.core.forge.bitbucketserver.Json.Repository] :: shapeless.HNil] (id 4164) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (2,790 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("head")] :: Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("draft")] :: shapeless.HNil,String :: org.scalasteward.core.git.Branch :: Boolean :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,511 μs, 0.06%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer]] (expanded macros 0) (861 μs, 0.01%)
+
+
+
+eu.timepit.refined.internal.WitnessAs[40,Int] (expanded macros 0) (1,769 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("frequency")] :: Symbol with shapeless.tag.Tagged[String("grouping")] :: Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (10,401 μs, 0.17%)
+
+
+
+cats.Functor[org.scalasteward.core.data.Scope] (expanded macros 0) (1,238 μs, 0.02%)
+
+
+
+cats.TraverseFilter[List] (expanded macros 0) (659 μs, 0.01%)
+
+
+
+cats.kernel.Semigroup[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] (expanded macros 0) (795 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.nurture.PullRequestRepository.Entry]{type Out = K} (id 6577) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,812 μs, 0.03%)
+
+
+
+"), x$3: ? >: String("")): ?} (expanded macros 0) (2,635 μs, 0.04%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.repoconfig.PullRequestGroup] (expanded macros 0) (14,711 μs, 0.24%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("artifactIdAfter")]} (id 8725) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (545 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Project]{type Out = K} (id 4138) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (923 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (831 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.User]{type Out = K} (id 4228) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (3,755 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.Label]{type Repr = V} (expanded macros 3) (3,211 μs, 0.05%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.UserOut] (expanded macros 0) (1,466 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("filter")] :: shapeless.HNil,cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,291 μs, 0.02%)
+
+
+
+cats.kernel.Semigroup[List[String]] (expanded macros 0) (1,090 μs, 0.02%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (1,041 μs, 0.02%)
+
+
+
+eu.timepit.refined.internal.WitnessAs['f',Char] (expanded macros 0) (1,978 μs, 0.03%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.GroupRepoConfig] (expanded macros 0) (843 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("user")] :: shapeless.HNil,org.scalasteward.core.forge.bitbucketserver.Json.User :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,579 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 4810) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,618 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = R} (expanded macros 0) (7,094 μs, 0.12%)
+
+
+
+DependencyMetadata.this.releaseNotesUrl.type => ?{def filterA: ?} (expanded macros 0) (726 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (1,599 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("frequency")]} (id 7469) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,115 μs, 0.02%)
+
+
+
+io.circe.Decoder[Vector[org.scalasteward.core.forge.gitea.GiteaApiAlg.PullRequestResp]] (expanded macros 0) (822 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = R} (expanded macros 0) (7,660 μs, 0.12%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (762 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: shapeless.HNil,Long :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (7,718 μs, 0.13%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.TokenOut]{type Repr = V} (expanded macros 3) (1,047 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.UpdateState]{type Repr = V} (id 4470) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,015 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.PullRequestResp]{type Out = K} (id 4672) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,658 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,370 μs, 0.02%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.data.Resolver.Credentials]] (expanded macros 0) (2,243 μs, 0.04%)
+
+
+
+F[org.scalasteward.core.persistence.JsonKeyValueStore[F,org.scalasteward.core.data.Repo,Map[org.http4s.Uri,org.scalasteward.core.nurture.PullRequestRepository.Entry]]] => ?{def flatMap: ?} (expanded macros 0) (5,302 μs, 0.09%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (10,226 μs, 0.17%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.CommitsConfig]{type Out = K} (id 7063) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (589 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("newerVersions")]} (id 2362) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,613 μs, 0.03%)
+
+
+
+F[Option[String]] => ?{def map: ?} (expanded macros 0) (8,499 μs, 0.14%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("postUpdateHooks")]} (id 7874) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (606 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 1891) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (915 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.decoding.ConfiguredDecoder[org.scalasteward.core.edit.scalafix.ScalafixMigrations]] (id 2843) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (38,385 μs, 0.62%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,060 μs, 0.02%)
+
+
+
+cats.FlatMap[F] (expanded macros 0) (1,477 μs, 0.02%)
+
+
+
+cats.kernel.Semigroup[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] (expanded macros 0) (743 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[org.scalasteward.core.repoconfig.PullRequestsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pullRequests")],org.scalasteward.core.repoconfig.PullRequestsConfig] :: org.scalasteward.core.repoconfig.ScalafmtConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalafmt")],org.scalasteward.core.repoconfig.ScalafmtConfig] :: org.scalasteward.core.repoconfig.UpdatesConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],org.scalasteward.core.repoconfig.UpdatesConfig] :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (12,729 μs, 0.21%)
+
+
+
+(=> (=> String) => F[Unit]) => F[Unit] (expanded macros 0) (634 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updates")]} (id 7872) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (616 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.UpdateState]{type Repr = V} (expanded macros 3) (1,507 μs, 0.02%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] (expanded macros 0) (10,468 μs, 0.17%)
+
+
+
+cats.Functor[io.circe.Decoder] (expanded macros 0) (608 μs, 0.01%)
+
+
+
+maybeHookCommit.type => ?{def flatTraverse: ?} (expanded macros 0) (530 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("head")] :: shapeless.HNil,String :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (8,946 μs, 0.15%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,Option[scala.util.matching.Regex] :: List[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,506 μs, 0.09%)
+
+
+
+F[(Unit, better.files.File, String)] => ?{def flatMap: ?} (expanded macros 0) (1,171 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.Repository]{type Repr = V} (id 5343) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (786 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (3,246 μs, 0.05%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.BranchOut] (expanded macros 0) (12,486 μs, 0.20%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.UpdatesConfig]{type Out = K} (id 8236) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,901 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Branches]{type Repr = R} (expanded macros 0) (9,337 μs, 0.15%)
+
+
+
+shapeless.Witness{type T = 40} (id 6010) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (911 μs, 0.01%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]] (expanded macros 0) (960 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit]{type Repr = R} (expanded macros 0) (13,534 μs, 0.22%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 4161) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (561 μs, 0.01%)
+
+
+
+F[(List[(String, List[org.scalasteward.core.nurture.UpdateInfoUrl])], scala.collection.immutable.Map[String,String])] => ?{def flatMap: ?} (expanded macros 0) (702 μs, 0.01%)
+
+
+
+Double => Int (expanded macros 0) (2,764 μs, 0.04%)
+
+
+
+F[(List[String], org.scalasteward.core.buildtool.BuildRoot)] => ?{def flatMap: ?} (expanded macros 0) (1,343 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],org.scalasteward.core.git.Branch] :: org.scalasteward.core.forge.data.CommitOut with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commit")],org.scalasteward.core.forge.data.CommitOut] :: shapeless.HNil] (id 4276) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (4,885 μs, 0.08%)
+
+
+
+cats.FlatMap[F] (expanded macros 0) (674 μs, 0.01%)
+
+
+
+cats.data.NonEmptyList[org.scalasteward.core.data.Dependency] => ?{def tupleLeft: ?} (expanded macros 0) (790 μs, 0.01%)
+
+
+
+F[scala.collection.mutable.ListBuffer[String]] => ?{def flatMap: ?} (expanded macros 0) (700 μs, 0.01%)
+
+
+
+cats.Traverse[Option] (expanded macros 0) (656 μs, 0.01%)
+
+
+
+F[List[org.scalasteward.core.update.data.UpdateState]] => ?{def map: ?} (expanded macros 0) (1,570 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitlab.MergeRequestPayload]{type Repr = V} (expanded macros 3) (2,666 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit]{type Repr = V} (id 4588) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,886 μs, 0.03%)
+
+
+
+shapeless.ops.coproduct.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("IvyRepository")] :: Symbol with shapeless.tag.Tagged[String("MavenRepository")] :: shapeless.HNil,org.scalasteward.core.data.Resolver.IvyRepository :+: org.scalasteward.core.data.Resolver.MavenRepository :+: shapeless.CNil]{type Out = R} (expanded macros 0) (4,555 μs, 0.07%)
+
+
+
+shapeless.Generic[org.scalasteward.core.update.artifact.ArtifactChange]{type Repr = V} (expanded macros 3) (1,070 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.NewPR]{type Repr = R} (expanded macros 0) (28,755 μs, 0.47%)
+
+
+
+io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.ScalafmtConfig] (expanded macros 0) (20,364 μs, 0.33%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[String]] :: Some[List[String]] :: Some[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (2,102 μs, 0.03%)
+
+
+
+com.monovore.decline.Argument[org.scalasteward.core.forge.ForgeType] (expanded macros 0) (2,797 μs, 0.05%)
+
+
+
+from.minor.type => ?{def =!= : ?} (expanded macros 0) (1,565 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("title")]} (id 4389) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (846 μs, 0.01%)
+
+
+
+io.circe.Encoder[List[String]] (expanded macros 0) (6,141 μs, 0.10%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.CreatePullRequestPayload]{type Repr = V} (expanded macros 3) (1,888 μs, 0.03%)
+
+
+
+ValueOf[org.scalasteward.core.util.Timestamp] (expanded macros 0) (563 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("body")] :: Symbol with shapeless.tag.Tagged[String("head")] :: Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("draft")] :: shapeless.HNil,String :: String :: String :: org.scalasteward.core.git.Branch :: Boolean :: shapeless.HNil]{type Out = R} (expanded macros 0) (5,748 μs, 0.09%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("body")]} (id 5375) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (556 μs, 0.01%)
+
+
+
+updateStates.type => ?{def traverseFilter: ?} (expanded macros 0) (638 μs, 0.01%)
+
+
+
+Option[org.scalasteward.core.forge.ForgeRepo] => ?{def toSeq: ?} (expanded macros 0) (588 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[scala.util.matching.Regex]] (expanded macros 0) (563 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = R} (expanded macros 0) (15,101 μs, 0.24%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.bitbucket.CreatePullRequestRequest] (expanded macros 0) (1,668 μs, 0.03%)
+
+
+
+ValueOf[org.scalasteward.core.repocache.RefreshErrorAlg.Entry] (expanded macros 0) (605 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("login")],String] :: Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: shapeless.HNil]] (id 4533) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (6,505 μs, 0.11%)
+
+
+
+maybeRepoConfig.type => ?{def |+| : ?} (expanded macros 0) (1,506 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("user")]} (id 1648) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,017 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Update.Grouped]{type Repr = R} (expanded macros 0) (24,227 μs, 0.39%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Out = K} (id 7442) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,863 μs, 0.03%)
+
+
+
+dependency.type => ?{def as: ?} (expanded macros 0) (570 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Condition]{type Repr = V} (id 3991) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,336 μs, 0.02%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (1,233 μs, 0.02%)
+
+
+
+x$4.type => ?{def map: ?} (expanded macros 0) (2,099 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.UpdatesConfig]{type Out = Labels} (id 8318) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,699 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Repo]{type Out = K} (id 4172) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (961 μs, 0.02%)
+
+
+
+SelfCheckAlg.this.logger.type => ?{def attemptWarn: ?} (expanded macros 0) (2,838 μs, 0.05%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreatePullRequestOption]] (id 4717) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (73,252 μs, 1.19%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (958 μs, 0.02%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("filter")],cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter]] :: shapeless.HNil] (id 7374) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (4,336 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,org.scalasteward.core.repoconfig.ScalafmtConfig :: org.scalasteward.core.repoconfig.UpdatesConfig :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (13,707 μs, 0.22%)
+
+
+
+cats.kernel.Order[org.scalasteward.core.data.Scope[org.scalasteward.core.data.Dependency]] (expanded macros 0) (782 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.CrossDependency]{type Repr = R :: shapeless.HNil} (expanded macros 3) (2,484 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("migrations")] :: shapeless.HNil,List[org.scalasteward.core.edit.scalafix.ScalafixMigration] :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,620 μs, 0.04%)
+
+
+
+cats.UnorderedFoldable[org.scalasteward.core.util.Nel] (expanded macros 0) (858 μs, 0.01%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("login")],String] :: shapeless.HNil] (id 4498) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (2,124 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Branches]{type Out = K} (id 3958) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,111 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("commits")]} (id 7866) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (574 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("pin")] :: Symbol with shapeless.tag.Tagged[String("allow")] :: Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] :: Option[List[String]] :: shapeless.HNil]{type Out = R} (expanded macros 0) (15,314 μs, 0.25%)
+
+
+
+Int(10) => ?{def minutes: ?} (expanded macros 0) (2,264 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,333 μs, 0.07%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.ScalafmtConfig]{type Repr = V} (id 8133) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (659 μs, 0.01%)
+
+
+
+io.circe.Encoder[cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter]] (expanded macros 0) (1,663 μs, 0.03%)
+
+
+
+org.scalasteward.core.data.Update.Single => ?{def === : ?} (expanded macros 0) (1,717 μs, 0.03%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[Option[scala.util.matching.Regex]] :: Some[List[String]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (3,083 μs, 0.05%)
+
+
+
+this.runSpecificFiles.type => ?{def traverse_: ?} (expanded macros 0) (631 μs, 0.01%)
+
+
+
+F[Vector[org.scalasteward.core.forge.data.PullRequestOut]] => ?{def map: ?} (expanded macros 0) (1,572 μs, 0.03%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("customLabels")],List[String]] :: shapeless.HNil] (expanded macros 0) (1,507 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.buildtool.sbt.data.SbtVersion] (expanded macros 0) (2,052 μs, 0.03%)
+
+
+
+p.groupId.value.type => ?{def === : ?} (expanded macros 0) (712 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Repr = R} (expanded macros 0) (17,544 μs, 0.28%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (527 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.azurerepos.PullRequestCommentPayload]{type Repr = R} (expanded macros 0) (11,239 μs, 0.18%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Page[A]]{type Repr = R} (expanded macros 0) (8,373 μs, 0.14%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.azurerepos.AzureComment]{type Repr = V} (id 3428) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,198 μs, 0.02%)
+
+
+
+from.buildMetadata.type => ?{def =!= : ?} (expanded macros 0) (1,091 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,552 μs, 0.04%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.ForGroupId]{type Out = K} (id 2437) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,929 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("newerGroupId")] :: Symbol with shapeless.tag.Tagged[String("newerArtifactId")] :: shapeless.HNil,Option[org.scalasteward.core.data.GroupId] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (7,020 μs, 0.11%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("doc")] :: Symbol with shapeless.tag.Tagged[String("scalacOptions")] :: Symbol with shapeless.tag.Tagged[String("authors")] :: Symbol with shapeless.tag.Tagged[String("target")] :: Symbol with shapeless.tag.Tagged[String("executionOrder")] :: shapeless.HNil,Option[String] :: Option[cats.data.NonEmptyList[String]] :: Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (10,911 μs, 0.18%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.Comment]{type Repr = V} (id 4301) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (926 μs, 0.02%)
+
+
+
+cats.kernel.Order[String] (expanded macros 0) (649 μs, 0.01%)
+
+
+
+F[List[String]] => ?{def map: ?} (expanded macros 0) (23,069 μs, 0.37%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.InstallationOut]{type Repr = V} (expanded macros 3) (1,201 μs, 0.02%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.data.DependencyInfo]] (expanded macros 0) (1,466 μs, 0.02%)
+
+
+
+io.circe.Encoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.boolean.And[eu.timepit.refined.collection.Forall[eu.timepit.refined.boolean.Or[eu.timepit.refined.char.Digit,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]],eu.timepit.refined.collection.Size[eu.timepit.refined.generic.Equal[40]]]]] (expanded macros 0) (631 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("fromRef")] :: Symbol with shapeless.tag.Tagged[String("toRef")] :: Symbol with shapeless.tag.Tagged[String("locked")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: shapeless.HNil,org.scalasteward.core.forge.bitbucketserver.Json.Ref :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: Boolean :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,738 μs, 0.11%)
+
+
+
+List[org.scalasteward.core.edit.hooks.PostUpdateHook] => ?{def traverse: ?} (expanded macros 0) (609 μs, 0.01%)
+
+
+
+shapeless.Lazy[shapeless.Generic[org.scalasteward.core.util.Timestamp]{type Repr = R :: shapeless.HNil}] (id 9043) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (1,938 μs, 0.03%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] (expanded macros 0) (1,663 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updatePullRequests")]} (id 7652) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (625 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sourceRefName")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("targetRefName")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],Option[List[String]]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("description")],String] :: shapeless.HNil]] (id 3402) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (8,180 μs, 0.13%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("migrations")]} (id 2885) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (657 μs, 0.01%)
+
+
+
+F[List[(String, List[org.scalasteward.core.nurture.UpdateInfoUrl])]] => ?{def map: ?} (expanded macros 0) (865 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[String]] :: Some[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (1,533 μs, 0.02%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (1,347 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver]{type Repr = V} (expanded macros 3) (1,632 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Branches]] (id 3955) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (17,958 μs, 0.29%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,cats.data.NonEmptyList[String] :: String :: Option[Boolean] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,843 μs, 0.05%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.update.artifact.ArtifactChange]{type Out = K} (id 8733) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (733 μs, 0.01%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucketserver.Json.Comment] (expanded macros 0) (15,077 μs, 0.24%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[Option[org.scalasteward.core.repoconfig.PullRequestFrequency]] :: Some[List[org.scalasteward.core.repoconfig.PullRequestGroup]] :: Some[Option[scala.util.matching.Regex]] :: Some[List[String]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("frequency")] :: Symbol with shapeless.tag.Tagged[String("grouping")] :: Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil]{type Out = Rec} (expanded macros 0) (5,927 μs, 0.10%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],String] :: shapeless.HNil]] (id 4306) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,745 μs, 0.08%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("assignees")]} (id 7858) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (653 μs, 0.01%)
+
+
+
+cats.Functor[com.monovore.decline.Opts] (expanded macros 0) (24,294 μs, 0.39%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[Option[String]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("message")] :: shapeless.HNil]{type Out = Rec} (expanded macros 0) (535 μs, 0.01%)
+
+
+
+Either[io.circe.Error,Either[org.scalasteward.core.data.Dependency,org.scalasteward.core.data.Resolver]] => ?{def toList: ?} (expanded macros 0) (2,067 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("parent")] :: shapeless.HNil,Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,791 μs, 0.06%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.gitlab.MergeRequestPayload]] (id 5462) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (45,765 μs, 0.74%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (1,604 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucket.CommentContent]] (id 3641) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (15,892 μs, 0.26%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("scalaVersion")]} (id 1469) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,264 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("description")] :: shapeless.HNil,Option[List[String]] :: String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,318 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")]} (id 7248) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (637 μs, 0.01%)
+
+
+
+cats.kernel.Eq[List[org.scalasteward.core.data.Version.Component]] (expanded macros 0) (1,188 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pin")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allow")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allowPreReleases")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ignore")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (12,714 μs, 0.21%)
+
+
+
+hook.command.type => ?{def mkString_: ?} (expanded macros 0) (1,506 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("reviewers")] :: shapeless.HNil,List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,172 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.azurerepos.PullRequestCommentPayload]{type Repr = V} (expanded macros 3) (2,649 μs, 0.04%)
+
+
+
+((com.monovore.decline.Opts[better.files.File], com.monovore.decline.Opts[cats.data.NonEmptyList[org.http4s.Uri]], com.monovore.decline.Opts[org.scalasteward.core.application.Config.GitCfg], com.monovore.decline.Opts[org.scalasteward.core.application.Config.ForgeCfg], com.monovore.decline.Opts[Boolean], com.monovore.decline.Opts[org.scalasteward.core.application.Config.ProcessCfg], com.monovore.decline.Opts[org.scalasteward.core.application.Config.RepoConfigCfg], com.monovore.decline.Opts[org.scalasteward.core.application.Config.ScalafixCfg], com.monovore.decline.Opts[org.scalasteward.core.application.Config.ArtifactCfg], com.monovore.decline.Opts[scala.concurrent.duration.FiniteDuration], com.monovore.decline.Opts[org.scalasteward.core.application.Config.BitbucketCfg], com.monovore.decline.Opts[org.scalasteward.core.application.Config.BitbucketServerCfg], com.monovore.decline.Opts[org.scalasteward.core.application.Config.GitLabCfg], com.monovore.decline.Opts[org.scalasteward.core.application.Config.AzureReposCfg], com.monovore.decline.Opts[Option[org.scalasteward.core.forge.github.GitHubApp]], com.monovore.decline.Opts[cats.data.NonEmptyList[org.http4s.Uri]], com.monovore.decline.Opts[org.scalasteward.core.data.Resolver], com.monovore.decline.Opts[scala.concurrent.duration.FiniteDuration])) => ?{def mapN: ?} (expanded macros 0) (3,217 μs, 0.05%)
+
+
+
+updatedMergeRequest.type => ?{def map: ?} (expanded macros 0) (739 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("grouping")] :: Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (8,098 μs, 0.13%)
+
+
+
+shapeless.Witness{type T = 40} (id 6011) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (588 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.git.Sha1] => ?{def map: ?} (expanded macros 0) (788 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.BranchResp]{type Out = K} (id 4618) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,884 μs, 0.03%)
+
+
+
+F[List[org.scalasteward.core.data.Version]] => ?{def attempt: ?} (expanded macros 0) (1,221 μs, 0.02%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (720 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: Some[List[String]] :: Some[List[String]] :: Some[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (2,686 μs, 0.04%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("prefix")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("suffix")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("exact")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("contains")],Option[String]] :: shapeless.HNil] (id 8504) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (2,410 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.BranchOut]] (id 5537) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (15,638 μs, 0.25%)
+
+
+
+shapeless.Default[org.scalasteward.core.repoconfig.ScalafmtConfig]{type Out = Options} (id 8145) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (700 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("groupId")] :: Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("version")] :: shapeless.HNil,org.scalasteward.core.data.GroupId :: Option[String] :: Option[org.scalasteward.core.repoconfig.VersionPattern] :: shapeless.HNil]{type Out = R} (expanded macros 0) (4,232 μs, 0.07%)
+
+
+
+F[Either[org.http4s.DecodeFailure,A]] => ?{def flatMap: ?} (expanded macros 0) (619 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.Repository]{type Out = K} (id 5342) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (622 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("IvyRepository")]} (id 1680) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,049 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Condition] (expanded macros 0) (14,131 μs, 0.23%)
+
+
+
+String => ?{def toInt: ?} (expanded macros 0) (906 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 1725) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (858 μs, 0.01%)
+
+
+
+(=> (Nothing, Nothing)) => String (expanded macros 0) (675 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,411 μs, 0.09%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],String] :: shapeless.HNil] (id 4714) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (3,993 μs, 0.06%)
+
+
+
+F[Option[org.http4s.Uri]] => ?{def map: ?} (expanded macros 0) (1,397 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("resolvers")]} (id 2198) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (2,828 μs, 0.05%)
+
+
+
+io.circe.Decoder[Int] (expanded macros 0) (677 μs, 0.01%)
+
+
+
+dependencies.type => ?{def groupByNel: ?} (expanded macros 0) (669 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.azurerepos.PullRequestPayload] (expanded macros 0) (28,792 μs, 0.47%)
+
+
+
+Option[String] => ?{def contains_: ?} (expanded macros 0) (1,104 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,550 μs, 0.09%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (1,863 μs, 0.03%)
+
+
+
+org.scalasteward.core.data.Repo => ?{def asRight: ?} (expanded macros 0) (529 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.util.Timestamp] (id 9045) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (630 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("dependencyOverrides")]} (id 7621) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,402 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (8,600 μs, 0.14%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[List[A] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("values")],List[A]] :: shapeless.HNil] (id 4087) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (2,604 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (746 μs, 0.01%)
+
+
+
+org.scalasteward.core.util.Timestamp with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatedAt")],org.scalasteward.core.util.Timestamp] :: List[org.scalasteward.core.data.Version] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("versions")],List[org.scalasteward.core.data.Version]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("maybeError")],Option[String]] :: shapeless.HNil <:< (org.scalasteward.core.util.Timestamp :: List[org.scalasteward.core.data.Version] :: Option[String] :: shapeless.HNil) (expanded macros 0) (1,228 μs, 0.02%)
+
+
+
+updates.type => ?{def groupByNel: ?} (expanded macros 0) (1,492 μs, 0.02%)
+
+
+
+io.circe.Encoder[Option[Int]] (expanded macros 0) (901 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (2,350 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("ignore")]} (id 8249) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,086 μs, 0.02%)
+
+
+
+F[coursier.Fetch.Result] => ?{def attempt: ?} (expanded macros 0) (1,504 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.ScalafmtConfig]{type Repr = V} (id 8124) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (634 μs, 0.01%)
+
+
+
+F[List[org.scalasteward.core.data.Version]] => ?{def map: ?} (expanded macros 0) (4,603 μs, 0.07%)
+
+
+
+org.scalasteward.core.data.GroupId => ?{def === : ?} (expanded macros 0) (10,413 μs, 0.17%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (1,486 μs, 0.02%)
+
+
+
+F[List[org.scalasteward.core.repoconfig.RepoConfig]] => ?{def map: ?} (expanded macros 0) (622 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.PullRequestOut]{type Repr = V} (id 4383) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,957 μs, 0.03%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("groupIdAfter")],Symbol with shapeless.tag.Tagged[_ >: String("artifactIdAfter") with String("artifactIdBefore") <: String],Lub0] (expanded macros 0) (776 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.CommitsConfig]{type Repr = V} (id 7064) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (737 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("updatedAt")]} (id 1328) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (4,312 μs, 0.07%)
+
+
+
+io.circe.generic.extras.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("location")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (id 1976) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredEncoder`) (10,968 μs, 0.18%)
+
+
+
+eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Greater[shapeless._0]] (expanded macros 0) (52,810 μs, 0.86%)
+
+
+
+io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.data.CrossDependency] (expanded macros 0) (13,742 μs, 0.22%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("limit")]} (id 8349) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,158 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitlab.ForkPayload]{type Out = K} (id 5396) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,069 μs, 0.02%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[org.scalasteward.core.repoconfig.ScalafmtConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalafmt")],org.scalasteward.core.repoconfig.ScalafmtConfig] :: org.scalasteward.core.repoconfig.UpdatesConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],org.scalasteward.core.repoconfig.UpdatesConfig] :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (8,302 μs, 0.13%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.data.Update.ForArtifactId]] (expanded macros 0) (1,227 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Branch]{type Repr = R} (expanded macros 0) (11,508 μs, 0.19%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.repoconfig.CommitsConfig]{type Out = D} (expanded macros 0) (2,395 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("slug")] :: Symbol with shapeless.tag.Tagged[String("links")] :: shapeless.HNil,String :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] :: shapeless.HNil]{type Out = R} (expanded macros 0) (3,302 μs, 0.05%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.RepoConfig] (expanded macros 0) (1,142 μs, 0.02%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("reviewers")],Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],Lub0] (expanded macros 0) (773 μs, 0.01%)
+
+
+
+punctuation.type => ?{def contains_: ?} (expanded macros 0) (1,009 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.github.InstallationOut] (expanded macros 0) (8,383 μs, 0.14%)
+
+
+
+F[List[org.scalasteward.core.update.data.UpdateState.WithUpdate]] => ?{def flatMap: ?} (expanded macros 0) (778 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repocache.RefreshErrorAlg.Entry]{type Out = K} (id 6805) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (904 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("groupIdAfter")] :: Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (4,441 μs, 0.07%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucket.Reviewer]{type Out = K} (id 3717) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (844 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = K} (id 1963) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,918 μs, 0.03%)
+
+
+
+eu.timepit.refined.api.RefType[F] (expanded macros 0) (543 μs, 0.01%)
+
+
+
+cats.kernel.Eq[String] (expanded macros 0) (1,834 μs, 0.03%)
+
+
+
+com.monovore.decline.Argument[Long] (expanded macros 0) (769 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.util.Timestamp] => ?{def flatMap: ?} (expanded macros 0) (3,881 μs, 0.06%)
+
+
+
+List[String] => ?{def parTraverse: ?} (expanded macros 0) (589 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,943 μs, 0.06%)
+
+
+
+cats.kernel.Eq[String] (expanded macros 0) (867 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.ForGroupId]{type Out = K} (id 2403) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,819 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,069 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Repr = R} (expanded macros 0) (9,500 μs, 0.15%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.PullRequestResp] (expanded macros 0) (43,103 μs, 0.70%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("suffix")] :: Symbol with shapeless.tag.Tagged[String("exact")] :: Symbol with shapeless.tag.Tagged[String("contains")] :: shapeless.HNil,Option[String] :: Option[String] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,558 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (6,377 μs, 0.10%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.forge.data.PullRequestNumber]] (expanded macros 0) (2,351 μs, 0.04%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],org.scalasteward.core.data.GroupId] :: org.scalasteward.core.data.ArtifactId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactId")],org.scalasteward.core.data.ArtifactId] :: org.scalasteward.core.data.Version with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("version")],org.scalasteward.core.data.Version] :: Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sbtVersion")],Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion]] :: Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalaVersion")],Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("configurations")],Option[String]] :: shapeless.HNil] (id 1476) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (36,329 μs, 0.59%)
+
+
+
+cats.Traverse[List] (expanded macros 0) (1,010 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.EditPullRequestOption]{type Repr = V} (expanded macros 3) (2,056 μs, 0.03%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (577 μs, 0.01%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Branch] (expanded macros 0) (18,277 μs, 0.30%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],org.scalasteward.core.data.GroupId] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactId")],Option[String]] :: Option[org.scalasteward.core.repoconfig.VersionPattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("version")],Option[org.scalasteward.core.repoconfig.VersionPattern]] :: shapeless.HNil]] (id 8189) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (9,142 μs, 0.15%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.ScalafmtConfig]{type Repr = R} (expanded macros 0) (4,898 μs, 0.08%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]{type Out = K} (id 4209) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (844 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[List[org.scalasteward.core.data.Resolver.Header]]] (expanded macros 0) (9,684 μs, 0.16%)
+
+
+
+F[org.scalasteward.core.forge.bitbucket.CreatePullRequestRequest] => ?{def flatMap: ?} (expanded macros 0) (873 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.VersionPattern] (expanded macros 0) (1,095 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.ReprAsObjectCodec[Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],Option[org.scalasteward.core.data.GroupId]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactId")],Option[String]] :: cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("command")],cats.data.NonEmptyList[String]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commitMessage")],String] :: Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")],Option[Boolean]] :: shapeless.HNil] (id 7203) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredCodec`) (12,132 μs, 0.20%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.UpdatePullRequestPayload]{type Out = K} (id 5368) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (835 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.RepoConfig]{type Repr = R} (expanded macros 0) (20,633 μs, 0.33%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = V} (expanded macros 3) (2,316 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.Dependency]] (id 1454) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (85,923 μs, 1.39%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.repoconfig.PullRequestGroup] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("grouping")],List[org.scalasteward.core.repoconfig.PullRequestGroup]] :: Option[scala.util.matching.Regex] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")],Option[scala.util.matching.Regex]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("customLabels")],List[String]] :: shapeless.HNil] (expanded macros 0) (6,523 μs, 0.11%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.ForArtifactId]{type Out = K} (id 2353) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,627 μs, 0.04%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.edit.scalafix.ScalafixMigration]] (expanded macros 0) (2,213 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("runAfterUpgrading")] :: shapeless.HNil,Option[Boolean] :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,085 μs, 0.02%)
+
+
+
+eu.timepit.refined.api.Validate[Char,eu.timepit.refined.numeric.Less['a']]{type R = R} (expanded macros 0) (2,578 μs, 0.04%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.repocache.RefreshErrorAlg.Entry] (expanded macros 0) (15,840 μs, 0.26%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.data.SemVer.Change]] (expanded macros 0) (1,403 μs, 0.02%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.data.SemVer.Change]] (expanded macros 0) (1,323 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.ReprAsObjectCodec[Option[org.scalasteward.core.repoconfig.PullRequestFrequency] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("frequency")],Option[org.scalasteward.core.repoconfig.PullRequestFrequency]] :: List[org.scalasteward.core.repoconfig.PullRequestGroup] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("grouping")],List[org.scalasteward.core.repoconfig.PullRequestGroup]] :: Option[scala.util.matching.Regex] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")],Option[scala.util.matching.Regex]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("customLabels")],List[String]] :: shapeless.HNil] (id 7472) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredCodec`) (18,699 μs, 0.30%)
+
+
+
+org.scalasteward.core.buildtool.scalacli.ScalaCliAlg.directives.type => ?{def flatTraverse: ?} (expanded macros 0) (1,151 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.CommitsConfig]{type Repr = V} (expanded macros 3) (819 μs, 0.01%)
+
+
+
+version.type => ?{def >= : ?} (expanded macros 0) (829 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.BranchOut]{type Repr = V} (expanded macros 3) (1,267 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = 'f'} (id 6002) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (719 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucket.DefaultReviewers]{type Repr = R} (expanded macros 0) (10,571 μs, 0.17%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.SemVer.Change] (expanded macros 0) (1,010 μs, 0.02%)
+
+
+
+update.type => ?{def flatMap: ?} (expanded macros 0) (669 μs, 0.01%)
+
+
+
+F[Either[Throwable,Unit]] => ?{def flatMap: ?} (expanded macros 0) (940 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (5,155 μs, 0.08%)
+
+
+
+x$9.name.type => ?{def === : ?} (expanded macros 0) (965 μs, 0.02%)
+
+
+
+p1.groupId.type => ?{def === : ?} (expanded macros 0) (2,381 μs, 0.04%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Update] (expanded macros 0) (1,626 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Branches]{type Repr = V} (id 3961) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,377 μs, 0.02%)
+
+
+
+cats.data.NonEmptyList[String] => ?{def foldMap: ?} (expanded macros 0) (770 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("artifactId")]} (id 7254) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (658 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("values")] :: shapeless.HNil,List[org.scalasteward.core.forge.bitbucket.Reviewer] :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,492 μs, 0.04%)
+
+
+
+F[List[org.scalasteward.core.edit.scalafix.ScalafixMigration]] => ?{def map: ?} (expanded macros 0) (1,669 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("scalacOptions")]} (id 2778) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,046 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.AttachLabelReq]{type Repr = V} (expanded macros 3) (2,536 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("grouping")] :: Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.PullRequestGroup] :: Option[scala.util.matching.Regex] :: List[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (8,151 μs, 0.13%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.PullRequestsConfig] (expanded macros 0) (900 μs, 0.01%)
+
+
+
+List[org.scalasteward.core.buildtool.BuildRoot] => ?{def traverse_: ?} (expanded macros 0) (873 μs, 0.01%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.Update.Single] (expanded macros 0) (1,033 μs, 0.02%)
+
+
+
+cats.kernel.Eq[List[org.scalasteward.core.data.Version.Component]] (expanded macros 0) (1,445 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,682 μs, 0.03%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (799 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = D} (expanded macros 0) (7,556 μs, 0.12%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,583 μs, 0.03%)
+
+
+
+F[Option[org.scalasteward.core.util.Timestamp]] => ?{def flatMap: ?} (expanded macros 0) (640 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("target_project_id")] :: Symbol with shapeless.tag.Tagged[String("remove_source_branch")] :: Symbol with shapeless.tag.Tagged[String("source_branch")] :: Symbol with shapeless.tag.Tagged[String("target_branch")] :: shapeless.HNil,Long :: Option[Boolean] :: String :: org.scalasteward.core.git.Branch :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,915 μs, 0.11%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[org.scalasteward.core.data.CrossDependency with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("crossDependency")],org.scalasteward.core.data.CrossDependency] :: cats.data.NonEmptyList[org.scalasteward.core.data.Version] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerVersions")],cats.data.NonEmptyList[org.scalasteward.core.data.Version]] :: Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerGroupId")],Option[org.scalasteward.core.data.GroupId]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerArtifactId")],Option[String]] :: shapeless.HNil]] (id 2312) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (21,761 μs, 0.35%)
+
+
+
+cats.Parallel[F] (expanded macros 0) (8,091 μs, 0.13%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("authors")] :: Symbol with shapeless.tag.Tagged[String("target")] :: Symbol with shapeless.tag.Tagged[String("executionOrder")] :: shapeless.HNil,Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,244 μs, 0.10%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo]{type Repr = V} (expanded macros 3) (2,577 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 1973) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (819 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.forge.bitbucketserver.Json.Branch] => ?{def map: ?} (expanded macros 0) (1,137 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("migrations")]} (id 2881) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (715 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.UpdatesConfig]{type Out = K} (id 8255) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,022 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("filter")] :: shapeless.HNil,String :: Option[String] :: cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] :: shapeless.HNil]{type Out = R} (expanded macros 0) (3,998 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.PullRequestNumber] (id 4374) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (842 μs, 0.01%)
+
+
+
+F[better.files.File] => ?{def map: ?} (expanded macros 0) (10,041 μs, 0.16%)
+
+
+
+List[better.files.File] => ?{def filterA: ?} (expanded macros 0) (562 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = shapeless._0} (expanded macros 0) (767 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: shapeless.HNil]] (id 4011) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,745 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Repo]{type Repr = V} (id 4173) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,138 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("changes")]} (id 8869) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (533 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.CommitsConfig]] (id 7058) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (27,098 μs, 0.44%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("sbtVersion")] :: Symbol with shapeless.tag.Tagged[String("scalaVersion")] :: Symbol with shapeless.tag.Tagged[String("configurations")] :: shapeless.HNil,Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion] :: Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (7,807 μs, 0.13%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = V} (expanded macros 3) (2,840 μs, 0.05%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: shapeless.HNil] (id 5460) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (1,985 μs, 0.03%)
+
+
+
+dependency.resolvers.type => ?{def parFlatTraverse: ?} (expanded macros 0) (3,187 μs, 0.05%)
+
+
+
+org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],org.scalasteward.core.data.GroupId] :: org.scalasteward.core.data.ArtifactId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactId")],org.scalasteward.core.data.ArtifactId] :: org.scalasteward.core.data.Version with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("version")],org.scalasteward.core.data.Version] :: Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sbtVersion")],Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion]] :: Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalaVersion")],Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("configurations")],Option[String]] :: shapeless.HNil <:< (org.scalasteward.core.data.GroupId :: org.scalasteward.core.data.ArtifactId :: org.scalasteward.core.data.Version :: Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion] :: Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] :: Option[String] :: shapeless.HNil) (expanded macros 0) (659 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("description")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("assignee_ids")] :: Symbol with shapeless.tag.Tagged[String("reviewer_ids")] :: Symbol with shapeless.tag.Tagged[String("target_project_id")] :: Symbol with shapeless.tag.Tagged[String("remove_source_branch")] :: Symbol with shapeless.tag.Tagged[String("source_branch")] :: Symbol with shapeless.tag.Tagged[String("target_branch")] :: shapeless.HNil,String :: Option[List[String]] :: Option[List[Int]] :: Option[List[Int]] :: Long :: Option[Boolean] :: String :: org.scalasteward.core.git.Branch :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (13,114 μs, 0.21%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[List[org.scalasteward.core.forge.github.Repository] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("repositories")],List[org.scalasteward.core.forge.github.Repository]] :: shapeless.HNil] (id 5326) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (3,552 μs, 0.06%)
+
+
+
+cats.kernel.Monoid[List[org.scalasteward.core.git.Author]] (expanded macros 0) (1,503 μs, 0.02%)
+
+
+
+cats.Functor[[+A]cats.effect.kernel.Resource[F,A]] (expanded macros 0) (3,000 μs, 0.05%)
+
+
+
+SelfCheckAlg.this.config.urlCheckerTestUrls.type => ?{def traverse_: ?} (expanded macros 0) (2,971 μs, 0.05%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Resolver.Credentials] (expanded macros 0) (1,725 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.RepoConfig]{type Out = K} (id 7633) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,758 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("dependencyOverrides")]} (id 7648) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (815 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.data.CommitOut]{type Repr = R} (expanded macros 0) (9,844 μs, 0.16%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("message")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (1,263 μs, 0.02%)
+
+
+
+cats.effect.kernel.Async[[_]F[_]] (expanded macros 0) (557 μs, 0.01%)
+
+
+
+x.customLabels.type => ?{def |+| : ?} (expanded macros 0) (866 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[shapeless.HNil,shapeless.HNil]{type Out = OutT} (expanded macros 0) (921 μs, 0.01%)
+
+
+
+F[Unit] => ?{def as: ?} (expanded macros 0) (15,383 μs, 0.25%)
+
+
+
+x$15.type => ?{def traverse_: ?} (expanded macros 0) (643 μs, 0.01%)
+
+
+
+eu.timepit.refined.api.Validate[Char,eu.timepit.refined.numeric.Greater['f']]{type R = R} (expanded macros 0) (2,659 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (3,458 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.TokenOut]{type Out = K} (id 5354) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (794 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,705 μs, 0.09%)
+
+
+
+String("sbt.version\\s*=\\s*(\\S+)") => ?{def r: ?} (expanded macros 0) (17,718 μs, 0.29%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],String] :: Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: shapeless.HNil] (id 4795) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (5,094 μs, 0.08%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 4559) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,261 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("limit")]} (id 8267) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,084 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("fork")]} (id 4562) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,276 μs, 0.02%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("slug")],String] :: org.scalasteward.core.forge.bitbucketserver.Json.Project with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("project")],org.scalasteward.core.forge.bitbucketserver.Json.Project] :: shapeless.HNil] (id 4201) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (3,018 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 2083) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,073 μs, 0.02%)
+
+
+
+eu.timepit.refined.api.Validate[A,eu.timepit.refined.boolean.Or[eu.timepit.refined.char.Digit,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]]{type R = R} (expanded macros 0) (7,977 μs, 0.13%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.RepoConfig] (expanded macros 0) (1,265 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("versions")]} (id 1327) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (4,181 μs, 0.07%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (1,493 μs, 0.02%)
+
+
+
+String => ?{def forall: ?} (expanded macros 0) (1,266 μs, 0.02%)
+
+
+
+info.type => ?{def map: ?} (expanded macros 0) (999 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.AttachLabelReq]{type Out = K} (id 4841) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,028 μs, 0.03%)
+
+
+
+shapeless.Default[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Out = Options} (id 7239) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (1,116 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[Vector[Int] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],Vector[Int]] :: shapeless.HNil]] (id 4847) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (6,020 μs, 0.10%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],org.scalasteward.core.data.GroupId] :: cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIds")],cats.data.NonEmptyList[String]] :: org.scalasteward.core.data.Version with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newVersion")],org.scalasteward.core.data.Version] :: cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("rewriteRules")],cats.data.NonEmptyList[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("doc")],Option[String]] :: Option[cats.data.NonEmptyList[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalacOptions")],Option[cats.data.NonEmptyList[String]]] :: Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("authors")],Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("target")],Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("executionOrder")],Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder]] :: shapeless.HNil] (id 2786) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (18,474 μs, 0.30%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("groupIdAfter")] :: Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,org.scalasteward.core.data.GroupId :: Option[String] :: String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,514 μs, 0.04%)
+
+
+
+io.circe.Encoder[List[String]] (expanded macros 0) (1,040 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.UpdatesConfig] (expanded macros 0) (896 μs, 0.01%)
+
+
+
+((Unit, Unit)) => com.monovore.decline.Command[?A] (expanded macros 0) (1,000 μs, 0.02%)
+
+
+
+x$1.type => ?{def flatTraverse: ?} (expanded macros 0) (1,113 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = K} (id 1713) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,709 μs, 0.03%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.coursier.VersionsCache.Value] (expanded macros 0) (3,745 μs, 0.06%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Dependency] (expanded macros 0) (4,740 μs, 0.08%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = V} (expanded macros 3) (2,432 μs, 0.04%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[org.scalasteward.core.edit.scalafix.ScalafixMigration]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("migrations")] :: shapeless.HNil]{type Out = Rec} (expanded macros 0) (740 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = K} (id 1839) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,051 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("closed")] :: Symbol with shapeless.tag.Tagged[String("fromRef")] :: Symbol with shapeless.tag.Tagged[String("toRef")] :: Symbol with shapeless.tag.Tagged[String("locked")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: shapeless.HNil,Boolean :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: Boolean :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (8,231 μs, 0.13%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreatePullRequestOption]{type Repr = V} (expanded macros 3) (4,456 μs, 0.07%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.git.Sha1] (expanded macros 0) (878 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("maybeCrossName")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,520 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("title")]} (id 2461) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,508 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.update.artifact.ArtifactChange] (expanded macros 0) (1,013 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.github.UpdatePullRequestPayload]{type Repr = R} (expanded macros 0) (6,884 μs, 0.11%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("uuid")]} (id 3723) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (791 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("version")] :: shapeless.HNil,Option[String] :: Option[org.scalasteward.core.repoconfig.VersionPattern] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,490 μs, 0.04%)
+
+
+
+shapeless.ops.record.Keys[org.scalasteward.core.repoconfig.ScalafmtConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalafmt")],org.scalasteward.core.repoconfig.ScalafmtConfig] :: org.scalasteward.core.repoconfig.UpdatesConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],org.scalasteward.core.repoconfig.UpdatesConfig] :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (11,449 μs, 0.19%)
+
+
+
+DependencyMetadata.this.homePage.type => ?{def filterA: ?} (expanded macros 0) (1,978 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("updates")] :: shapeless.HNil,List[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,067 μs, 0.07%)
+
+
+
+String => org.http4s.Header.ToRaw with org.http4s.Header.ToRaw.Primitive (expanded macros 0) (4,835 μs, 0.08%)
+
+
+
+cats.kernel.Eq[Option[String]] (expanded macros 0) (2,255 μs, 0.04%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.forge.ForgeType] (expanded macros 0) (2,514 μs, 0.04%)
+
+
+
+org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder => ?{def === : ?} (expanded macros 0) (602 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.User]{type Repr = V} (id 4229) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,467 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Resolver.Credentials] (expanded macros 0) (4,470 μs, 0.07%)
+
+
+
+ValueOf[org.scalasteward.core.repoconfig.PullRequestFrequency] (expanded macros 0) (653 μs, 0.01%)
+
+
+
+io.circe.Decoder[Vector[Int]] (expanded macros 0) (1,290 μs, 0.02%)
+
+
+
+Long => Int (expanded macros 0) (2,055 μs, 0.03%)
+
+
+
+F[Map[String,Int]] => ?{def map: ?} (expanded macros 0) (870 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.DependencyInfo]]] (expanded macros 0) (5,746 μs, 0.09%)
+
+
+
+cats.kernel.Order[(String, Option[String])] (expanded macros 0) (1,195 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.ReprAsObjectCodec[List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pin")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allow")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allowPreReleases")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ignore")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (id 8274) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredCodec`) (19,959 μs, 0.32%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.ArtifactId] (expanded macros 0) (32,706 μs, 0.53%)
+
+
+
+cats.kernel.Eq[Option[org.http4s.Uri.Host]] (expanded macros 0) (2,785 μs, 0.05%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo] (expanded macros 0) (30,949 μs, 0.50%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.User]{type Repr = R} (expanded macros 0) (16,632 μs, 0.27%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit]] (id 4582) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (26,077 μs, 0.42%)
+
+
+
+List[org.scalasteward.core.edit.update.data.VersionPosition] => scala.collection.IterableOnce[B] (expanded macros 0) (915 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("description")]} (id 4056) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,024 μs, 0.02%)
+
+
+
+io.circe.Encoder[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] (expanded macros 0) (1,417 μs, 0.02%)
+
+
+
+cats.Functor[List] (expanded macros 0) (1,448 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("clone_url")]} (id 4557) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,482 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucket.CreateComment]{type Out = K} (id 3627) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (954 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],org.scalasteward.core.data.GroupId] :: org.scalasteward.core.data.ArtifactId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactId")],org.scalasteward.core.data.ArtifactId] :: org.scalasteward.core.data.Version with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("version")],org.scalasteward.core.data.Version] :: Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sbtVersion")],Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion]] :: Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalaVersion")],Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("configurations")],Option[String]] :: shapeless.HNil]] (id 1475) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (37,701 μs, 0.61%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PullRequestGroup]{type Out = K} (id 7333) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (814 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.Credentials]{type Out = K} (id 1640) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,597 μs, 0.03%)
+
+
+
+cats.Functor[F] (expanded macros 0) (604 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("state")]} (id 4473) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (797 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 5309) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (596 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("message")]} (id 7067) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (543 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("content")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,824 μs, 0.03%)
+
+
+
+ValueOf[org.scalasteward.core.data.CrossDependency] (expanded macros 0) (849 μs, 0.01%)
+
+
+
+cats.data.NonEmptyList[org.http4s.Uri] <:< cats.data.NonEmptyList[org.http4s.Uri] (expanded macros 0) (2,545 μs, 0.04%)
+
+
+
+cats.kernel.Eq[Option[org.http4s.Uri.Scheme]] (expanded macros 0) (1,750 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.GroupRepoConfig]{type Repr = R} (expanded macros 0) (7,224 μs, 0.12%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.update.artifact.ArtifactChange]{type Repr = R} (expanded macros 0) (837 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Branch] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("values")],cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Branch]] :: shapeless.HNil]] (id 3966) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,677 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitlab.MergeRequestPayload]{type Repr = V} (id 5468) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,205 μs, 0.04%)
+
+
+
+(=> Double) => Int (expanded macros 0) (686 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("archived")]} (id 4432) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (972 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]] (id 4539) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (64,484 μs, 1.05%)
+
+
+
+Numeric[Int] (expanded macros 0) (927 μs, 0.02%)
+
+
+
+io.circe.Encoder[Int] (expanded macros 0) (640 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.UserOut]{type Repr = V} (id 4492) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,448 μs, 0.02%)
+
+
+
+ValueOf[org.scalasteward.core.data.Resolver] (expanded macros 0) (1,138 μs, 0.02%)
+
+
+
+ValueOf[org.scalasteward.core.forge.bitbucket.RepositoryResponse] (expanded macros 0) (1,012 μs, 0.02%)
+
+
+
+Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fork")],Boolean] :: Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: org.scalasteward.core.forge.gitea.GiteaApiAlg.User with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("owner")],org.scalasteward.core.forge.gitea.GiteaApiAlg.User] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("archived")],Boolean] :: org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("clone_url")],org.http4s.Uri] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("default_branch")],String] :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("parent")],Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]] :: shapeless.HNil <:< (Boolean :: Long :: org.scalasteward.core.forge.gitea.GiteaApiAlg.User :: String :: Boolean :: org.http4s.Uri :: String :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] :: shapeless.HNil) (expanded macros 0) (673 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Resolver.Header] (expanded macros 0) (1,880 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Page[A]]{type Out = K} (id 4078) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (929 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucket.CreateComment]{type Repr = R} (expanded macros 0) (8,424 μs, 0.14%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("maybeCrossName")]} (id 1391) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,403 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.User]{type Out = K} (id 4226) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,042 μs, 0.02%)
+
+
+
+unwrapped.type => ?{def === : ?} (expanded macros 0) (582 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("labels")]} (id 4736) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,358 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.GitHubLabels]{type Out = K} (id 5286) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (796 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("allow")]} (id 8251) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,112 μs, 0.02%)
+
+
+
+List[Either[org.scalasteward.core.data.Dependency,org.scalasteward.core.data.Resolver]] => ?{def separate: ?} (expanded macros 0) (1,087 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("labels")]} (id 3397) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (766 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.forge.data.PullRequestNumber] (expanded macros 0) (542 μs, 0.01%)
+
+
+
+org.scalasteward.core.repoconfig.PullRequestUpdateStrategy => ?{def =!= : ?} (expanded macros 0) (814 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Dependency] (expanded macros 0) (2,205 μs, 0.04%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.PullRequestGroup] (expanded macros 0) (2,153 μs, 0.03%)
+
+
+
+F[List[better.files.File]] => ?{def flatMap: ?} (expanded macros 0) (1,113 μs, 0.02%)
+
+
+
+String => ?{def split(x$1: ? >: Char('=')): ?} (expanded macros 0) (4,417 μs, 0.07%)
+
+
+
+org.typelevel.log4cats.Logger[F] (expanded macros 0) (3,448 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Branches]{type Repr = V} (expanded macros 3) (1,613 μs, 0.03%)
+
+
+
+cats.Functor[F] (expanded macros 0) (614 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (769 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("state")]} (id 4711) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,461 μs, 0.02%)
+
+
+
+groupedDependencies.type => ?{def traverse: ?} (expanded macros 0) (546 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.github.Repository]] (id 5337) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (10,692 μs, 0.17%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.data.CrossDependency]] (id 1419) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (17,636 μs, 0.29%)
+
+
+
+F[(Option[String], List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]])] => ?{def map: ?} (expanded macros 0) (1,572 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 2068) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,189 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (3,923 μs, 0.06%)
+
+
+
+F[better.files.File] => ?{def void: ?} (expanded macros 0) (1,204 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("uuid")],String] :: shapeless.HNil] (id 3726) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (3,818 μs, 0.06%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("raw")]} (id 3650) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (734 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.repoconfig.VersionPattern]] (id 8486) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (17,262 μs, 0.28%)
+
+
+
+ValueOf[org.scalasteward.core.git.Branch] (expanded macros 0) (572 μs, 0.01%)
+
+
+
+cats.Monad[F] (expanded macros 0) (2,567 μs, 0.04%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.PullRequestNumber] (expanded macros 0) (1,177 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.RepoConfig]{type Repr = V} (expanded macros 3) (2,535 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.ForArtifactId]{type Repr = V} (id 2301) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,718 μs, 0.06%)
+
+
+
+F[(List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]], Seq[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]])] => ?{def flatMap: ?} (expanded macros 0) (1,423 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")]} (id 7467) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,248 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("commits")]} (id 7844) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (838 μs, 0.01%)
+
+
+
+req.uri.scheme.type => ?{def === : ?} (expanded macros 0) (3,105 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucket.Reviewer]{type Repr = V} (id 3720) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,372 μs, 0.02%)
+
+
+
+io.circe.Decoder[Option[Vector[Int]]] (expanded macros 0) (1,373 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("closed")]} (id 4053) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (820 μs, 0.01%)
+
+
+
+eu.timepit.refined.api.Validate[Char,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']]]{type R = RA} (expanded macros 0) (8,186 μs, 0.13%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.CommentResp]{type Out = K} (id 4786) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,203 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 2113) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,042 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("parent")]} (id 4435) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,180 μs, 0.02%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.data.GroupId]] (expanded macros 0) (1,382 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("version")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("links")] :: shapeless.HNil,Int :: String :: org.scalasteward.core.forge.data.PullRequestState :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,337 μs, 0.09%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("newVersion")] :: Symbol with shapeless.tag.Tagged[String("rewriteRules")] :: Symbol with shapeless.tag.Tagged[String("doc")] :: Symbol with shapeless.tag.Tagged[String("scalacOptions")] :: Symbol with shapeless.tag.Tagged[String("authors")] :: Symbol with shapeless.tag.Tagged[String("target")] :: Symbol with shapeless.tag.Tagged[String("executionOrder")] :: shapeless.HNil,org.scalasteward.core.data.Version :: cats.data.NonEmptyList[String] :: Option[String] :: Option[cats.data.NonEmptyList[String]] :: Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (15,009 μs, 0.24%)
+
+
+
+ValueOf[org.scalasteward.core.data.CrossDependency] (expanded macros 0) (891 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("grouping")]} (id 7453) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,400 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitlab.ForkPayload]{type Repr = R} (expanded macros 0) (8,778 μs, 0.14%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Scope[A]]{type Repr = R} (expanded macros 0) (39,260 μs, 0.64%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Out = K} (id 2846) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (985 μs, 0.02%)
+
+
+
+cats.FlatMap[Option] (expanded macros 0) (1,263 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repocache.RepoCache]{type Repr = R} (expanded macros 0) (14,251 μs, 0.23%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucket.CommentContent]{type Repr = V} (expanded macros 3) (1,388 μs, 0.02%)
+
+
+
+A with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("value")],A] :: List[org.scalasteward.core.data.Resolver] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("resolvers")],List[org.scalasteward.core.data.Resolver]] :: shapeless.HNil <:< (A :: List[org.scalasteward.core.data.Resolver] :: shapeless.HNil) (expanded macros 0) (671 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("changes")] :: shapeless.HNil,List[org.scalasteward.core.update.artifact.ArtifactChange] :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,197 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.gitlab.CommitId]] (id 5515) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (13,751 μs, 0.22%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.Credentials]{type Repr = R} (expanded macros 0) (13,388 μs, 0.22%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.decoding.ConfiguredDecoder[org.scalasteward.core.data.Resolver.MavenRepository]] (id 1695) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (109,199 μs, 1.77%)
+
+
+
+shapeless.Witness{type T = 'a'} (id 5995) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (824 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 1707) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,312 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (5,160 μs, 0.08%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.ArtifactId]] (id 1381) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (40,574 μs, 0.66%)
+
+
+
+F[Vector[Int]] => ?{def map: ?} (expanded macros 0) (1,742 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("href")]} (id 4025) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (840 μs, 0.01%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.GroupId] (expanded macros 0) (904 μs, 0.01%)
+
+
+
+eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Less[N]]{type R = R} (expanded macros 0) (2,286 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (4,340 μs, 0.07%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.repoconfig.UpdatesConfig]{type Out = D} (expanded macros 0) (13,482 μs, 0.22%)
+
+
+
+Option[org.http4s.Uri.Host] => ?{def === : ?} (expanded macros 0) (3,524 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.InstallationOut]{type Repr = V} (id 5306) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (874 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("parent")] :: shapeless.HNil,String :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,376 μs, 0.10%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Update.Grouped] => ?{def widen: ?} (expanded macros 0) (1,041 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Repr = V} (expanded macros 3) (2,284 μs, 0.04%)
+
+
+
+cats.kernel.Eq[org.http4s.Status] (expanded macros 0) (889 μs, 0.01%)
+
+
+
+List[org.scalasteward.core.buildtool.BuildRoot] => ?{def traverse: ?} (expanded macros 0) (1,136 μs, 0.02%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("scalafmt")],Symbol with shapeless.tag.Tagged[_ >: String("dependencyOverrides") with String("reviewers") with String("assignees") with String("buildRoots") with String("updatePullRequests") with String("postUpdateHooks") with String("updates") <: String],Lub0] (expanded macros 0) (1,156 μs, 0.02%)
+
+
+
+F[org.scalasteward.core.forge.data.BranchOut] => ?{def map: ?} (expanded macros 0) (1,303 μs, 0.02%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[org.scalasteward.core.data.Dependency]] (expanded macros 0) (4,003 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Out = K} (id 7186) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (979 μs, 0.02%)
+
+
+
+ScalafixMigration.this.rewriteRules.type => ?{def mkString_: ?} (expanded macros 0) (1,816 μs, 0.03%)
+
+
+
+F[((List[org.scalasteward.core.update.data.UpdateState], List[org.scalasteward.core.data.Update.ForArtifactId]), (List[org.scalasteward.core.update.data.UpdateState], List[org.scalasteward.core.data.Update.ForArtifactId]))] => ?{def flatMap: ?} (expanded macros 0) (721 μs, 0.01%)
+
+
+
+eu.timepit.refined.api.Validate[String,eu.timepit.refined.collection.Forall[eu.timepit.refined.boolean.Or[eu.timepit.refined.char.Digit,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]]]{type R = RA} (expanded macros 0) (9,117 μs, 0.15%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: shapeless.HNil] (id 5312) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (1,817 μs, 0.03%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.bitbucketserver.Json.Ref] (expanded macros 0) (14,744 μs, 0.24%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.BranchOut]{type Out = K} (id 4267) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,128 μs, 0.02%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[org.scalasteward.core.repoconfig.ScalafmtConfig] :: Some[org.scalasteward.core.repoconfig.UpdatesConfig] :: Some[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Some[Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Some[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: Some[List[String]] :: Some[List[String]] :: Some[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (5,354 μs, 0.09%)
+
+
+
+io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.forge.data.PullRequestNumber] (expanded macros 0) (4,235 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("newerArtifactId")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,131 μs, 0.07%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (1,187 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.BranchOut]{type Out = K} (id 5540) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (957 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("title")]} (id 4105) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (607 μs, 0.01%)
+
+
+
+Char('0') => ?{def to: ?} (expanded macros 0) (8,051 μs, 0.13%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 4830) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,482 μs, 0.02%)
+
+
+
+F[Long] => ?{def map: ?} (expanded macros 0) (2,829 μs, 0.05%)
+
+
+
+ValueOf[org.scalasteward.core.data.Update] (expanded macros 0) (558 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.data.Resolver] (expanded macros 0) (1,607 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = R} (expanded macros 0) (7,159 μs, 0.12%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")]} (id 7196) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (645 μs, 0.01%)
+
+
+
+eu.timepit.refined.api.Validate[String,eu.timepit.refined.collection.Size[eu.timepit.refined.generic.Equal[40]]]{type R = RB} (expanded macros 0) (4,371 μs, 0.07%)
+
+
+
+F[Unit] => ?{def voidError: ?} (expanded macros 0) (1,614 μs, 0.03%)
+
+
+
+((com.monovore.decline.Opts[List[String]], com.monovore.decline.Opts[List[String]], com.monovore.decline.Opts[Boolean])) => ?{def mapN: ?} (expanded macros 0) (1,532 μs, 0.02%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (563 μs, 0.01%)
+
+
+
+io.circe.Encoder[Option[List[String]]] (expanded macros 0) (1,254 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("allow")]} (id 8343) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,169 μs, 0.02%)
+
+
+
+F[Process] => ?{def flatMap: ?} (expanded macros 0) (838 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: shapeless.HNil] (id 4476) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (3,362 μs, 0.05%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.EditPullRequestOption] (expanded macros 0) (18,076 μs, 0.29%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.ArtifactId]{type Repr = V} (expanded macros 3) (5,516 μs, 0.09%)
+
+
+
+cats.kernel.Eq[Option[org.http4s.Uri.Scheme]] (expanded macros 0) (2,535 μs, 0.04%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (697 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.GitHubAssignees]{type Out = K} (id 5257) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (740 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (1,617 μs, 0.03%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("location")],Symbol with shapeless.tag.Tagged[_ >: String("headers") with String("credentials") <: String],Lub0] (expanded macros 0) (3,292 μs, 0.05%)
+
+
+
+shapeless.Default[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = Options} (id 1875) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (1,965 μs, 0.03%)
+
+
+
+scala.reflect.ClassTag[java.util.regex.PatternSyntaxException] (expanded macros 1) (7,875 μs, 0.13%)
+
+
+
+cats.Functor[F] (expanded macros 0) (1,554 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("parent")] :: Symbol with shapeless.tag.Tagged[String("clone_url")] :: Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("archived")] :: shapeless.HNil,Option[org.scalasteward.core.forge.data.RepoOut] :: org.http4s.Uri :: org.scalasteward.core.git.Branch :: Boolean :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,808 μs, 0.11%)
+
+
+
+shapeless.Witness{type T = 'a'} (id 5996) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (734 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("user")]} (id 4215) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (716 μs, 0.01%)
+
+
+
+x$2.name.type => ?{def === : ?} (expanded macros 0) (826 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("head")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("milestone")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,Option[String] :: Option[Vector[Int]] :: Option[Int] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (11,941 μs, 0.19%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreatePullRequestOption]{type Out = K} (id 4720) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,907 μs, 0.05%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (2,262 μs, 0.04%)
+
+
+
+shapeless.ops.record.Keys[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdAfter")],String] :: shapeless.HNil] (expanded macros 0) (1,020 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("newerGroupId")]} (id 2361) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,605 μs, 0.03%)
+
+
+
+cats.TraverseFilter[List] (expanded macros 0) (967 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.UpdatePattern] (expanded macros 0) (1,064 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Comment]{type Repr = V} (id 3976) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,234 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (2,609 μs, 0.04%)
+
+
+
+io.circe.Decoder[List[String]] (expanded macros 0) (526 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("body")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (4,680 μs, 0.08%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.decoding.ConfiguredDecoder[org.scalasteward.core.update.artifact.ArtifactChanges]] (id 8829) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (29,101 μs, 0.47%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pattern")]} (id 1889) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,068 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")],Option[Boolean]] :: shapeless.HNil] (expanded macros 0) (1,231 μs, 0.02%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ignore")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (4,554 μs, 0.07%)
+
+
+
+Array[String] => ?{def lastOption: ?} (expanded macros 0) (1,050 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (6,404 μs, 0.10%)
+
+
+
+ValueOf[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (562 μs, 0.01%)
+
+
+
+Int(0) => ?{def days: ?} (expanded macros 0) (1,729 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("allow")] :: Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] :: Option[List[String]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (12,158 μs, 0.20%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateForkOption]{type Repr = R} (expanded macros 0) (17,508 μs, 0.28%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ReprAsObjectCodec[Option[org.scalasteward.core.repoconfig.PullRequestFrequency] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("frequency")],Option[org.scalasteward.core.repoconfig.PullRequestFrequency]] :: List[org.scalasteward.core.repoconfig.PullRequestGroup] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("grouping")],List[org.scalasteward.core.repoconfig.PullRequestGroup]] :: Option[scala.util.matching.Regex] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")],Option[scala.util.matching.Regex]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("customLabels")],List[String]] :: shapeless.HNil]] (id 7471) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (19,721 μs, 0.32%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (3,282 μs, 0.05%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.repoconfig.BuildRootConfig]] (expanded macros 0) (1,146 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,257 μs, 0.09%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Project]{type Repr = V} (id 4141) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,181 μs, 0.02%)
+
+
+
+cats.kernel.Monoid[List[org.scalasteward.core.nurture.UpdateInfoUrl]] (expanded macros 0) (1,608 μs, 0.03%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.PullRequestsConfig] (expanded macros 0) (823 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("state")]} (id 4685) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,360 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("organization")] :: shapeless.HNil,Option[String] :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (7,175 μs, 0.12%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.PullRequestResp]{type Repr = R} (expanded macros 0) (31,293 μs, 0.51%)
+
+
+
+cats.Functor[F] (expanded macros 0) (999 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("ignore")]} (id 8268) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,077 μs, 0.02%)
+
+
+
+cats.Parallel[[_]F[_]] (expanded macros 0) (1,653 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("description")] :: Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("open")] :: Symbol with shapeless.tag.Tagged[String("closed")] :: Symbol with shapeless.tag.Tagged[String("fromRef")] :: Symbol with shapeless.tag.Tagged[String("toRef")] :: Symbol with shapeless.tag.Tagged[String("locked")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: shapeless.HNil,String :: String :: org.scalasteward.core.forge.data.PullRequestState :: Boolean :: Boolean :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: Boolean :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] :: shapeless.HNil]{type Out = R} (expanded macros 0) (15,831 μs, 0.26%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("pullRequests")] :: Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,org.scalasteward.core.repoconfig.PullRequestsConfig :: org.scalasteward.core.repoconfig.ScalafmtConfig :: org.scalasteward.core.repoconfig.UpdatesConfig :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (11,599 μs, 0.19%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.DependencyInfo]] (id 1589) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (42,403 μs, 0.69%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("text")]} (id 3979) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (956 μs, 0.02%)
+
+
+
+F[List[org.scalasteward.core.forge.github.RepositoriesOut]] => ?{def map: ?} (expanded macros 0) (1,306 μs, 0.02%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.AttachLabelReq] (expanded macros 0) (22,686 μs, 0.37%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Out = K} (id 7286) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (989 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("commits")]} (id 7657) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (531 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],org.scalasteward.core.git.Sha1] :: shapeless.HNil]] (id 4593) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (7,870 μs, 0.13%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (7,306 μs, 0.12%)
+
+
+
+shapeless.ops.coproduct.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("IvyRepository")] :: Symbol with shapeless.tag.Tagged[String("MavenRepository")] :: shapeless.HNil,org.scalasteward.core.data.Resolver.IvyRepository :+: org.scalasteward.core.data.Resolver.MavenRepository :+: shapeless.CNil]{type Out = R} (expanded macros 0) (4,458 μs, 0.07%)
+
+
+
+eu.timepit.refined.internal.WitnessAs[40,Int] (expanded macros 0) (2,302 μs, 0.04%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.gitlab.ForkPayload] (expanded macros 0) (12,109 μs, 0.20%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = R} (expanded macros 0) (6,847 μs, 0.11%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.gitlab.ForkPayload]] (id 5393) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (16,403 μs, 0.27%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Some[List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Some[Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Some[Option[List[String]]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (5,164 μs, 0.08%)
+
+
+
+ValueOf[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (554 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("full_name")],String] :: shapeless.HNil]] (id 5348) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (2,168 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.ForArtifactId]{type Repr = V} (expanded macros 3) (3,036 μs, 0.05%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (18,841 μs, 0.31%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.ForArtifactId]{type Out = K} (id 2351) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,524 μs, 0.04%)
+
+
+
+F[org.scalasteward.core.coursier.DependencyMetadata] => ?{def flatMap: ?} (expanded macros 0) (598 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.RepositoriesOut]{type Out = K} (id 5319) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (623 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.NewPR]{type Repr = V} (id 4038) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,427 μs, 0.04%)
+
+
+
+h.type => ?{def show: ?} (expanded macros 0) (523 μs, 0.01%)
+
+
+
+List[(org.scalasteward.core.data.Dependency, org.scalasteward.core.coursier.DependencyMetadata)] => ?{def mapFilter: ?} (expanded macros 0) (832 μs, 0.01%)
+
+
+
+String => ?{def filterNot: ?} (expanded macros 0) (570 μs, 0.01%)
+
+
+
+cats.Functor[F] (expanded macros 0) (540 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("frequency")]} (id 7454) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,163 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (8,122 μs, 0.13%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("newerArtifactId")]} (id 2307) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (2,243 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("repositories")]} (id 5323) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (606 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.DependencyInfo]{type Repr = V} (id 1595) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,922 μs, 0.03%)
+
+
+
+F[List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]]] => ?{def map: ?} (expanded macros 0) (2,080 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.github.CreatePullRequestPayload]] (id 4961) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (23,339 μs, 0.38%)
+
+
+
+cats.FlatMap[F] (expanded macros 0) (739 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo]{type Repr = V} (id 4636) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,038 μs, 0.03%)
+
+
+
+cats.Traverse[List] (expanded macros 0) (615 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Repr = R} (expanded macros 0) (14,190 μs, 0.23%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.CommitsConfig]{type Repr = R} (expanded macros 0) (623 μs, 0.01%)
+
+
+
+F[org.http4s.Request[F]] => ?{def flatMap: ?} (expanded macros 0) (1,091 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.github.RepositoriesOut] (expanded macros 0) (1,818 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("state")]} (id 4391) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (529 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (978 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.PR] (expanded macros 0) (25,936 μs, 0.42%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (14,472 μs, 0.23%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pattern")]} (id 1833) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (958 μs, 0.02%)
+
+
+
+com.monovore.decline.Argument[org.http4s.Uri] (expanded macros 0) (2,481 μs, 0.04%)
+
+
+
+eu.timepit.refined.api.RefType[eu.timepit.refined.api.Refined] (expanded macros 0) (1,073 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.UpdatePattern]{type Repr = R} (expanded macros 0) (9,420 μs, 0.15%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.github.TokenOut]{type Repr = R} (expanded macros 0) (5,953 μs, 0.10%)
+
+
+
+cats.kernel.Eq[Option[org.scalasteward.core.repoconfig.VersionPattern]] (expanded macros 0) (1,421 μs, 0.02%)
+
+
+
+((Nothing, Nothing, Nothing)) => String (expanded macros 0) (2,851 μs, 0.05%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],List[String]] :: shapeless.HNil] (id 5293) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (4,012 μs, 0.07%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (2,037 μs, 0.03%)
+
+
+
+cats.kernel.Order[Int] (expanded macros 0) (613 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.github.GitHubLabels] (expanded macros 0) (13,683 μs, 0.22%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("sha1")] :: Symbol with shapeless.tag.Tagged[String("dependencyInfos")] :: Symbol with shapeless.tag.Tagged[String("maybeRepoConfig")] :: Symbol with shapeless.tag.Tagged[String("maybeRepoConfigParsingError")] :: shapeless.HNil,org.scalasteward.core.git.Sha1 :: List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.DependencyInfo]]] :: Option[org.scalasteward.core.repoconfig.RepoConfig] :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (7,159 μs, 0.12%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.data.Comment]] (id 4295) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (16,220 μs, 0.26%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (533 μs, 0.01%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],org.scalasteward.core.git.Sha1] :: shapeless.HNil] (id 5527) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (3,041 μs, 0.05%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.UserOut]{type Out = K} (id 4489) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (836 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("open")] :: Symbol with shapeless.tag.Tagged[String("closed")] :: Symbol with shapeless.tag.Tagged[String("fromRef")] :: Symbol with shapeless.tag.Tagged[String("toRef")] :: Symbol with shapeless.tag.Tagged[String("locked")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: shapeless.HNil,Boolean :: Boolean :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: Boolean :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (9,705 μs, 0.16%)
+
+
+
+shapeless.ops.record.Keys[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("location")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (8,303 μs, 0.13%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PullRequestGroup]{type Repr = V} (expanded macros 3) (1,035 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitlab.ProjectId]{type Repr = V} (id 5454) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,051 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("full_name")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,180 μs, 0.02%)
+
+
+
+cats.Functor[F] (expanded macros 0) (2,318 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("state")]} (id 4104) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (686 μs, 0.01%)
+
+
+
+io.circe.Encoder[Option[Vector[Int]]] (expanded macros 0) (1,382 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (804 μs, 0.01%)
+
+
+
+p1.artifactId.type => ?{def === : ?} (expanded macros 0) (979 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.github.CreatePullRequestPayload] (expanded macros 0) (1,111 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Repo] (expanded macros 0) (13,970 μs, 0.23%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.github.GitHubAssignees]] (id 5252) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (15,981 μs, 0.26%)
+
+
+
+cats.Functor[[+A]cats.effect.kernel.Resource[F,A]] (expanded macros 0) (1,839 μs, 0.03%)
+
+
+
+F[(List[org.scalasteward.core.edit.EditAttempt], List[org.scalasteward.core.git.Commit])] => ?{def flatMap: ?} (expanded macros 0) (534 μs, 0.01%)
+
+
+
+F[Int] => ?{def flatMap: ?} (expanded macros 0) (1,601 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: shapeless.HNil]] (id 5459) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (2,442 μs, 0.04%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (684 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Dependency] (expanded macros 0) (2,279 μs, 0.04%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Resolver.Header] (expanded macros 0) (5,153 μs, 0.08%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.UpdatePullRequestPayload]{type Repr = V} (expanded macros 3) (1,192 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,158 μs, 0.08%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("owner")] :: Symbol with shapeless.tag.Tagged[String("parent")] :: Symbol with shapeless.tag.Tagged[String("clone_url")] :: Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("archived")] :: shapeless.HNil,org.scalasteward.core.forge.data.UserOut :: Option[org.scalasteward.core.forge.data.RepoOut] :: org.http4s.Uri :: org.scalasteward.core.git.Branch :: Boolean :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (8,141 μs, 0.13%)
+
+
+
+F[coursier.core.Repository] => ?{def attempt: ?} (expanded macros 0) (2,136 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("assignee_ids")] :: Symbol with shapeless.tag.Tagged[String("reviewer_ids")] :: Symbol with shapeless.tag.Tagged[String("target_project_id")] :: Symbol with shapeless.tag.Tagged[String("remove_source_branch")] :: Symbol with shapeless.tag.Tagged[String("source_branch")] :: Symbol with shapeless.tag.Tagged[String("target_branch")] :: shapeless.HNil,Option[List[String]] :: Option[List[Int]] :: Option[List[Int]] :: Long :: Option[Boolean] :: String :: org.scalasteward.core.git.Branch :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (11,599 μs, 0.19%)
+
+
+
+eu.timepit.refined.api.Validate[String,eu.timepit.refined.collection.Forall[eu.timepit.refined.boolean.Or[eu.timepit.refined.char.Digit,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]]]{type R = RA} (expanded macros 0) (15,596 μs, 0.25%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("owner")]} (id 4436) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (765 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.update.artifact.ArtifactChanges] (expanded macros 0) (1,113 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 1831) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,363 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("baseSha1")],org.scalasteward.core.git.Sha1] :: org.scalasteward.core.data.Update with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("update")],org.scalasteward.core.data.Update] :: org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: org.scalasteward.core.util.Timestamp with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("entryCreatedAt")],org.scalasteward.core.util.Timestamp] :: Option[org.scalasteward.core.forge.data.PullRequestNumber] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("number")],Option[org.scalasteward.core.forge.data.PullRequestNumber]] :: Option[org.scalasteward.core.git.Branch] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updateBranch")],Option[org.scalasteward.core.git.Branch]] :: shapeless.HNil] (id 6594) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (27,653 μs, 0.45%)
+
+
+
+shapeless.Witness{type T = shapeless._0} (expanded macros 0) (805 μs, 0.01%)
+
+
+
+cats.effect.kernel.Async[[_]F[_]] (expanded macros 0) (1,840 μs, 0.03%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("login")],String] :: Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: shapeless.HNil] (id 4534) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (5,536 μs, 0.09%)
+
+
+
+StewardAlg.this.logger.type => ?{def attemptError: ?} (expanded macros 0) (612 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("commit")] :: shapeless.HNil,org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit :: shapeless.HNil]{type Out = R} (expanded macros 0) (4,403 μs, 0.07%)
+
+
+
+String("X-Attempt") => ?{def -> : ?} (expanded macros 0) (2,092 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Repr = R} (expanded macros 0) (1,148 μs, 0.02%)
+
+
+
+F[Either[Throwable,List[String]]] => ?{def map: ?} (expanded macros 0) (791 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.gitlab.ProjectId]] (id 5448) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (12,749 μs, 0.21%)
+
+
+
+cats.Reducible[cats.data.NonEmptyList] (expanded macros 0) (866 μs, 0.01%)
+
+
+
+io.circe.generic.extras.decoding.ConfiguredDecoder[org.scalasteward.core.edit.scalafix.ScalafixMigrations] (expanded macros 0) (32,451 μs, 0.53%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.data.Resolver.Credentials]] (expanded macros 0) (2,438 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (5,342 μs, 0.09%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (2,014 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (3,198 μs, 0.05%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.data.GroupId]] (expanded macros 0) (1,297 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.data.Update.ForGroupId]] (id 2434) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (34,242 μs, 0.56%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.repoconfig.PullRequestFrequency]] (expanded macros 0) (2,082 μs, 0.03%)
+
+
+
+org.scalasteward.core.util.Details => ?{def some: ?} (expanded macros 0) (941 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.decoding.ConfiguredDecoder[org.scalasteward.core.data.Resolver.IvyRepository]] (id 1819) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (93,130 μs, 1.51%)
+
+
+
+shapeless.Default[org.scalasteward.core.repoconfig.UpdatesConfig]{type Out = Options} (id 8317) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (2,023 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.BranchResp]{type Repr = R} (expanded macros 0) (14,745 μs, 0.24%)
+
+
+
+scopes.type => ?{def groupByNel: ?} (expanded macros 0) (3,586 μs, 0.06%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.repoconfig.PullRequestsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pullRequests")],org.scalasteward.core.repoconfig.PullRequestsConfig] :: org.scalasteward.core.repoconfig.UpdatePattern with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependency")],org.scalasteward.core.repoconfig.UpdatePattern] :: shapeless.HNil]] (id 7118) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (7,374 μs, 0.12%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.CreatePullRequestPayload]{type Repr = V} (id 4967) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,395 μs, 0.02%)
+
+
+
+cats.FunctorFilter[cats.parse.Parser] (expanded macros 0) (986 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.BranchOut]{type Repr = V} (expanded macros 3) (1,733 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateForkOption]{type Repr = V} (expanded macros 3) (2,431 μs, 0.04%)
+
+
+
+(=> (Nothing, Nothing, Nothing)) => String (expanded macros 0) (614 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitlab.ProjectId]{type Out = K} (id 5451) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (914 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Version] (expanded macros 0) (4,878 μs, 0.08%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (1,394 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.repoconfig.GroupRepoConfig]] (id 7105) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (18,163 μs, 0.29%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,977 μs, 0.06%)
+
+
+
+eu.timepit.refined.api.Validate[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]] (expanded macros 0) (3,921 μs, 0.06%)
+
+
+
+io.circe.generic.extras.encoding.ConfiguredAsObjectEncoder[org.scalasteward.core.data.Resolver.MavenRepository] (expanded macros 0) (76,703 μs, 1.24%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (966 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.CrossDependency] (expanded macros 0) (3,804 μs, 0.06%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[org.scalasteward.core.repoconfig.PullRequestsConfig] :: Some[org.scalasteward.core.repoconfig.ScalafmtConfig] :: Some[org.scalasteward.core.repoconfig.UpdatesConfig] :: Some[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Some[Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Some[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: Some[List[String]] :: Some[List[String]] :: Some[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("pullRequests")] :: Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (6,070 μs, 0.10%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (602 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Update] (expanded macros 0) (1,480 μs, 0.02%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.forge.data.RepoOut]] (expanded macros 0) (2,217 μs, 0.04%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]] (expanded macros 0) (974 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("displayId")]} (id 3933) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (654 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.PR]{type Repr = V} (expanded macros 3) (2,158 μs, 0.03%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (859 μs, 0.01%)
+
+
+
+cats.kernel.Order[(org.scalasteward.core.data.GroupId, String, org.scalasteward.core.data.Version)] (expanded macros 0) (980 μs, 0.02%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.repoconfig.CommitsConfig]{type Out = K} (id 7100) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (626 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 4273) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (667 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commitMessage")],String] :: Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")],Option[Boolean]] :: shapeless.HNil] (expanded macros 0) (2,235 μs, 0.04%)
+
+
+
+F[Int] => ?{def map: ?} (expanded macros 0) (1,107 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.VersionPattern]{type Repr = R} (expanded macros 0) (11,049 μs, 0.18%)
+
+
+
+cats.kernel.Order[cats.data.NonEmptyList[org.scalasteward.core.data.CrossDependency]] (expanded macros 0) (1,183 μs, 0.02%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.repoconfig.UpdatesConfig]{type Out = K} (id 8382) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (1,707 μs, 0.03%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.nurture.PullRequestRepository.Entry] (expanded macros 0) (54,709 μs, 0.89%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("key")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,730 μs, 0.03%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[List[org.scalasteward.core.forge.bitbucket.Reviewer] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("values")],List[org.scalasteward.core.forge.bitbucket.Reviewer]] :: shapeless.HNil] (id 3693) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (7,126 μs, 0.12%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.data.RepoOut]{type Repr = R} (expanded macros 0) (18,915 μs, 0.31%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.EditPullRequestOption]] (id 4702) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (21,995 μs, 0.36%)
+
+
+
+cats.kernel.Semigroup[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] (expanded macros 0) (982 μs, 0.02%)
+
+
+
+eu.timepit.refined.api.Validate[String,eu.timepit.refined.collection.Size[eu.timepit.refined.generic.Equal[40]]]{type R = RB} (expanded macros 0) (3,567 μs, 0.06%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("forArtifactIds")],cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil]] (id 2409) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (5,499 μs, 0.09%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repocache.RefreshErrorAlg.Entry]{type Repr = R} (expanded macros 0) (8,679 μs, 0.14%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.PR]{type Out = K} (id 4093) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,608 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 1832) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (977 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("links")] :: shapeless.HNil,scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,403 μs, 0.02%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target]] (expanded macros 0) (1,867 μs, 0.03%)
+
+
+
+F[org.scalasteward.core.update.artifact.ArtifactMigrationsFinder] => ?{def map: ?} (expanded macros 0) (4,468 μs, 0.07%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.RepoOut]{type Out = K} (id 4421) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,792 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (11,285 μs, 0.18%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.RepoOut]] (id 4418) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (36,569 μs, 0.59%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (7,832 μs, 0.13%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.data.PullRequestOut]{type Repr = R} (expanded macros 0) (14,154 μs, 0.23%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repocache.RepoCache]{type Out = K} (id 6848) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,249 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("groupId")] :: Symbol with shapeless.tag.Tagged[String("artifactIds")] :: Symbol with shapeless.tag.Tagged[String("newVersion")] :: Symbol with shapeless.tag.Tagged[String("rewriteRules")] :: Symbol with shapeless.tag.Tagged[String("doc")] :: Symbol with shapeless.tag.Tagged[String("scalacOptions")] :: Symbol with shapeless.tag.Tagged[String("authors")] :: Symbol with shapeless.tag.Tagged[String("target")] :: Symbol with shapeless.tag.Tagged[String("executionOrder")] :: shapeless.HNil,org.scalasteward.core.data.GroupId :: cats.data.NonEmptyList[String] :: org.scalasteward.core.data.Version :: cats.data.NonEmptyList[String] :: Option[String] :: Option[cats.data.NonEmptyList[String]] :: Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] :: shapeless.HNil]{type Out = R} (expanded macros 0) (20,331 μs, 0.33%)
+
+
+
+Option[String] => Iterable[String] (expanded macros 0) (542 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Update.ForGroupId]{type Repr = R} (expanded macros 0) (20,645 μs, 0.33%)
+
+
+
+String => ?{def r: ?} (expanded macros 0) (1,322 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Condition]{type Repr = V} (expanded macros 3) (1,997 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("labels")] :: shapeless.HNil,List[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,021 μs, 0.03%)
+
+
+
+shapeless.ops.record.Keys[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("customLabels")],List[String]] :: shapeless.HNil] (expanded macros 0) (2,220 μs, 0.04%)
+
+
+
+cats.Foldable[List] (expanded macros 0) (4,679 μs, 0.08%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.bitbucketserver.Json.NewPR] (expanded macros 0) (38,423 μs, 0.62%)
+
+
+
+cats.effect.kernel.GenConcurrent[F,Throwable] (expanded macros 0) (1,655 μs, 0.03%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]] (expanded macros 0) (986 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (3,633 μs, 0.06%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (1,065 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("fileExtensions")]} (id 8351) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,077 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = R} (expanded macros 0) (7,347 μs, 0.12%)
+
+
+
+cats.kernel.Order[List[org.scalasteward.core.data.Resolver]] (expanded macros 0) (3,343 μs, 0.05%)
+
+
+
+fs2.Stream[[_]F[_],String] => ?{def mapFilter: ?} (expanded macros 0) (3,422 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.Grouped]{type Repr = V} (expanded macros 3) (3,435 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateLabelReq]{type Repr = V} (expanded macros 3) (2,643 μs, 0.04%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = K} (id 2059) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,773 μs, 0.03%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.CommentResp] (expanded macros 0) (30,342 μs, 0.49%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,027 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pattern")]} (id 2070) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (895 μs, 0.01%)
+
+
+
+cats.Functor[F] (expanded macros 0) (671 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitlab.CommitId]{type Out = K} (id 5518) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (886 μs, 0.01%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.Label] (expanded macros 0) (30,728 μs, 0.50%)
+
+
+
+cats.Foldable[cats.data.NonEmptyList] (expanded macros 0) (1,783 μs, 0.03%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.forge.github.InstallationOut]] (expanded macros 0) (2,787 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("customLabels")]} (id 7536) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,048 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (4,435 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("description")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("assignee_ids")] :: Symbol with shapeless.tag.Tagged[String("reviewer_ids")] :: Symbol with shapeless.tag.Tagged[String("target_project_id")] :: Symbol with shapeless.tag.Tagged[String("remove_source_branch")] :: Symbol with shapeless.tag.Tagged[String("source_branch")] :: Symbol with shapeless.tag.Tagged[String("target_branch")] :: shapeless.HNil,String :: String :: String :: Option[List[String]] :: Option[List[Int]] :: Option[List[Int]] :: Long :: Option[Boolean] :: String :: org.scalasteward.core.git.Branch :: shapeless.HNil]{type Out = R} (expanded macros 0) (16,655 μs, 0.27%)
+
+
+
+F[org.scalasteward.core.persistence.KeyValueStore[[_]F[_],org.scalasteward.core.data.Repo,Map[org.http4s.Uri,org.scalasteward.core.nurture.PullRequestRepository.Entry]]] => ?{def flatMap: ?} (expanded macros 0) (5,433 μs, 0.09%)
+
+
+
+List[org.scalasteward.core.data.Version.Component] => scala.collection.IterableOnce[B] (expanded macros 0) (626 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.github.GitHubLabels]{type Repr = R} (expanded macros 0) (8,096 μs, 0.13%)
+
+
+
+cats.Bifoldable[Either] (expanded macros 0) (1,073 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.repoconfig.PullRequestGroup]] (id 7328) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (18,000 μs, 0.29%)
+
+
+
+io.circe.Decoder[Option[Int]] (expanded macros 0) (828 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.edit.scalafix.ScalafixMigration]{type Out = K} (id 2763) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,576 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.azurerepos.ClosePullRequestPayload]] (id 3408) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (14,709 μs, 0.24%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.update.artifact.ArtifactChange]{type Out = K} (id 8731) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (761 μs, 0.01%)
+
+
+
+F[(better.files.File, List[(String, List[org.scalasteward.core.edit.update.data.Substring.Replacement])])] => ?{def flatMap: ?} (expanded macros 0) (1,007 μs, 0.02%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreatePullRequestOption] (expanded macros 0) (62,096 μs, 1.01%)
+
+
+
+cats.effect.Ref.Make[F] (expanded macros 0) (1,043 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("location")]} (id 1709) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (949 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("filter")],cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter]] :: shapeless.HNil]] (id 7343) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,946 μs, 0.08%)
+
+
+
+x$1.groupId.type => ?{def === : ?} (expanded macros 0) (2,017 μs, 0.03%)
+
+
+
+F[org.scalasteward.core.forge.gitea.GiteaApiAlg.BranchResp] => ?{def map: ?} (expanded macros 0) (1,475 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (2,249 μs, 0.04%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.azurerepos.ClosePullRequestPayload] (expanded macros 0) (11,472 μs, 0.19%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo]{type Out = K} (id 4635) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,884 μs, 0.03%)
+
+
+
+F[Option[scala.concurrent.duration.FiniteDuration]] => ?{def flatMap: ?} (expanded macros 0) (785 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.GitHubLabels]{type Out = K} (id 5284) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (974 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("sourceRefName")] :: Symbol with shapeless.tag.Tagged[String("targetRefName")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("description")] :: shapeless.HNil,String :: String :: String :: Option[List[String]] :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (9,663 μs, 0.16%)
+
+
+
+F[(Vector[Int], org.scalasteward.core.forge.gitea.GiteaApiAlg.CreatePullRequestOption)] => ?{def flatMap: ?} (expanded macros 0) (1,559 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.repoconfig.UpdatePattern]] (id 8174) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (22,424 μs, 0.36%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (1,903 μs, 0.03%)
+
+
+
+shapeless.ops.nat.ToInt[shapeless._0] (expanded macros 3) (699 μs, 0.01%)
+
+
+
+scala.util.Either[io.circe.DecodingFailure,org.scalasteward.core.util.Timestamp] => io.circe.Json (expanded macros 0) (1,047 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]{type Out = K} (id 4542) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,795 μs, 0.05%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("head")],String] :: org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("base")],org.scalasteward.core.git.Branch] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("draft")],Boolean] :: shapeless.HNil]] (id 4980) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (5,398 μs, 0.09%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ReprAsObjectCodec[Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],Option[org.scalasteward.core.data.GroupId]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactId")],Option[String]] :: cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("command")],cats.data.NonEmptyList[String]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commitMessage")],String] :: Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")],Option[Boolean]] :: shapeless.HNil]] (id 7202) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (13,027 μs, 0.21%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.RepoOut] (expanded macros 0) (3,314 μs, 0.05%)
+
+
+
+shapeless.ops.record.Keys[org.scalasteward.core.repoconfig.UpdatesConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],org.scalasteward.core.repoconfig.UpdatesConfig] :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (10,104 μs, 0.16%)
+
+
+
+ValueOf[org.scalasteward.core.coursier.VersionsCache.Value] (expanded macros 0) (549 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("slug")]} (id 4178) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (546 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.Scope[A]]] (id 2188) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (64,110 μs, 1.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("title")]} (id 4057) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (791 μs, 0.01%)
+
+
+
+org.scalasteward.core.data.Update.ForArtifactIdDecoder.type => ?{def widen: ?} (expanded macros 0) (1,594 μs, 0.03%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[org.scalasteward.core.repoconfig.PullRequestGroup] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("grouping")],List[org.scalasteward.core.repoconfig.PullRequestGroup]] :: Option[scala.util.matching.Regex] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")],Option[scala.util.matching.Regex]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("customLabels")],List[String]] :: shapeless.HNil] (expanded macros 0) (4,419 μs, 0.07%)
+
+
+
+eu.timepit.refined.internal.WitnessAs[shapeless._0,Int] (expanded macros 0) (10,759 μs, 0.17%)
+
+
+
+cats.Traverse[Seq] (expanded macros 0) (719 μs, 0.01%)
+
+
+
+io.circe.Encoder[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] (expanded macros 0) (1,540 μs, 0.02%)
+
+
+
+cats.ApplicativeError[F,E] (expanded macros 0) (1,098 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.RepoConfig]{type Repr = V} (id 7636) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,822 μs, 0.03%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.data.Resolver]] (expanded macros 0) (4,536 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("assignees")] :: shapeless.HNil,List[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,059 μs, 0.03%)
+
+
+
+ValueOf[org.scalasteward.core.git.Sha1] (expanded macros 0) (540 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("state")]} (id 6589) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,098 μs, 0.02%)
+
+
+
+cats.kernel.Order[org.scalasteward.core.data.Version.Component] (expanded macros 0) (633 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("color")],String] :: shapeless.HNil]] (id 4832) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (5,350 μs, 0.09%)
+
+
+
+io.circe.Decoder[Option[Boolean]] (expanded macros 0) (863 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (2,181 μs, 0.04%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.update.artifact.ArtifactChanges]{type Out = K} (id 8841) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (851 μs, 0.01%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.repoconfig.PullRequestGroup]] (expanded macros 0) (2,713 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("ignore")]} (id 8347) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,146 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("update")]} (id 6590) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,134 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: List[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],List[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil]] (id 2464) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (7,081 μs, 0.11%)
+
+
+
+cats.kernel.Order[org.scalasteward.core.data.Resolver] (expanded macros 0) (751 μs, 0.01%)
+
+
+
+io.circe.Decoder[Map[org.http4s.Uri,org.scalasteward.core.nurture.PullRequestRepository.Entry]] (expanded macros 0) (45,004 μs, 0.73%)
+
+
+
+Either[String,eu.timepit.refined.api.Refined[String,eu.timepit.refined.boolean.And[eu.timepit.refined.collection.Forall[eu.timepit.refined.boolean.Or[eu.timepit.refined.char.Digit,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]],eu.timepit.refined.collection.Size[eu.timepit.refined.generic.Equal[40]]]]] => ?{def bimap: ?} (expanded macros 0) (634 μs, 0.01%)
+
+
+
+cats.UnorderedFoldable[Option] (expanded macros 0) (531 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo]{type Repr = R} (expanded macros 0) (19,544 μs, 0.32%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("credentials")],Symbol with shapeless.tag.Tagged[String("headers")],Lub0] (expanded macros 0) (2,491 μs, 0.04%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (769 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Branch]{type Repr = V} (id 3928) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,502 μs, 0.02%)
+
+
+
+ValueOf[org.scalasteward.core.data.Version] (expanded macros 0) (965 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = 'a'} (id 6026) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (751 μs, 0.01%)
+
+
+
+F[(org.scalasteward.core.update.artifact.ArtifactMigrationsFinder, org.scalasteward.core.edit.scalafix.ScalafixMigrationsLoader[F])] => ?{def flatMap: ?} (expanded macros 0) (4,289 μs, 0.07%)
+
+
+
+List[String] => ?{def mkString_: ?} (expanded macros 0) (1,980 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucket.CommentContent]{type Out = K} (id 3644) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,026 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("due_date")]} (id 4738) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,339 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("remove_source_branch")]} (id 5482) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (900 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.data.Resolver] (expanded macros 0) (1,090 μs, 0.02%)
+
+
+
+F[org.scalasteward.core.repoconfig.RepoConfigAlg.ConfigParsingResult] => ?{def map: ?} (expanded macros 0) (551 μs, 0.01%)
+
+
+
+F[org.http4s.Uri] => ?{def flatMap: ?} (expanded macros 0) (738 μs, 0.01%)
+
+
+
+String("| ____ _ ____ _ _\n | / ___| ___ __ _| | __ _ / ___|| |_ _____ ____ _ _ __ __| |\n | \\___ \\ / __/ _` | |/ _` | \\___ \\| __/ _ \\ \\ /\\ / / _` | \'__/ _` |\n | ___) | (_| (_| | | (_| | ___) | || __/\\ V V / (_| | | | (_| |\n | |____/ \\___\\__,_|_|\\__,_| |____/ \\__\\___| \\_/\\_/ \\__,_|_| \\__,_|") => ?{def stripMargin: ?} (expanded macros 0) (3,150 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 1392) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,237 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.git.Branch] (expanded macros 0) (1,494 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Branch] (expanded macros 0) (1,404 μs, 0.02%)
+
+
+
+org.http4s.Header.Select[org.http4s.headers.Link] (expanded macros 0) (2,899 μs, 0.05%)
+
+
+
+cats.kernel.Monoid[Unit] (expanded macros 0) (652 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,114 μs, 0.07%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.bitbucketserver.Json.Ref]] (id 4150) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (18,169 μs, 0.29%)
+
+
+
+F[java.net.http.HttpClient] => ?{def map: ?} (expanded macros 0) (3,903 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,431 μs, 0.04%)
+
+
+
+eu.timepit.refined.internal.WitnessAs['a',Char] (expanded macros 0) (6,510 μs, 0.11%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.CommitsConfig]{type Repr = V} (id 7073) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (700 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("allowPreReleases")]} (id 8250) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,117 μs, 0.02%)
+
+
+
+Either[java.util.regex.PatternSyntaxException,scala.util.matching.Regex] => ?{def leftMap: ?} (expanded macros 0) (629 μs, 0.01%)
+
+
+
+eu.timepit.refined.api.Validate[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[N]]]{type R = RP} (expanded macros 0) (2,815 μs, 0.05%)
+
+
+
+cats.kernel.Semigroup[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] (expanded macros 0) (754 μs, 0.01%)
+
+
+
+cats.kernel.Eq[String] (expanded macros 0) (891 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.CommitsConfig]{type Out = K} (id 7072) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (553 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("sha")]} (id 4319) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,013 μs, 0.02%)
+
+
+
+io.circe.Encoder[Option[Boolean]] (expanded macros 0) (662 μs, 0.01%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.repoconfig.RepoConfig]] (expanded macros 0) (1,235 μs, 0.02%)
+
+
+
+F[Option[org.scalasteward.core.data.Version]] => ?{def flatMap: ?} (expanded macros 0) (1,964 μs, 0.03%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[org.scalasteward.core.repoconfig.PullRequestsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pullRequests")],org.scalasteward.core.repoconfig.PullRequestsConfig] :: org.scalasteward.core.repoconfig.ScalafmtConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalafmt")],org.scalasteward.core.repoconfig.ScalafmtConfig] :: org.scalasteward.core.repoconfig.UpdatesConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],org.scalasteward.core.repoconfig.UpdatesConfig] :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (9,257 μs, 0.15%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.ForArtifactId]{type Out = K} (id 2298) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (3,125 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("allowPreReleases")]} (id 8331) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,093 μs, 0.02%)
+
+
+
+strings.type => ?{def mkString_(x$1: ? >: String("("), x$2: ? >: String("|"), x$3: ? >: String(")")): ?} (expanded macros 0) (836 μs, 0.01%)
+
+
+
+((Nothing, Nothing)) => Throwable (expanded macros 0) (1,086 μs, 0.02%)
+
+
+
+cats.Traverse[org.scalasteward.core.util.Nel] (expanded macros 0) (716 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateIssueCommentOption]{type Out = K} (id 4769) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,905 μs, 0.03%)
+
+
+
+mr.mergeStatus.type => ?{def =!= : ?} (expanded macros 0) (1,156 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Repr = R} (expanded macros 0) (8,455 μs, 0.14%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucketserver.Json.Repo] (expanded macros 0) (1,746 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[List[org.scalasteward.core.forge.azurerepos.AzureComment] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("comments")],List[org.scalasteward.core.forge.azurerepos.AzureComment]] :: Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("status")],Int] :: shapeless.HNil]] (id 3449) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,641 μs, 0.08%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.GroupRepoConfig] (expanded macros 0) (1,031 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.data.Update.ForGroupId]] (id 2398) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (40,538 μs, 0.66%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,321 μs, 0.04%)
+
+
+
+((com.monovore.decline.Opts[Long], com.monovore.decline.Opts[better.files.File])) => ?{def mapN: ?} (expanded macros 0) (1,050 μs, 0.02%)
+
+
+
+Map[org.http4s.Uri,org.scalasteward.core.nurture.PullRequestRepository.Entry] => Iterable[(org.http4s.Uri, org.scalasteward.core.nurture.PullRequestRepository.Entry)] (expanded macros 0) (1,383 μs, 0.02%)
+
+
+
+all (6,167,184 μs, 100%)
+
+
+
+io.circe.Decoder[Option[Vector[String]]] (expanded macros 0) (1,469 μs, 0.02%)
+
+
+
+io.circe.generic.extras.decoding.ConfiguredDecoder[org.scalasteward.core.update.artifact.ArtifactChanges] (expanded macros 0) (25,607 μs, 0.42%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("changes")] :: shapeless.HNil,List[org.scalasteward.core.update.artifact.ArtifactChange] :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,796 μs, 0.03%)
+
+
+
+F[org.scalasteward.core.forge.bitbucket.DefaultReviewers] => ?{def map: ?} (expanded macros 0) (1,290 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (844 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.EditPullRequestOption]{type Repr = V} (id 4708) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,694 μs, 0.03%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Symbol with shapeless.tag.Tagged[_ >: String("dependencyOverrides") with String("reviewers") with String("assignees") with String("buildRoots") with String("updatePullRequests") <: String],Lub0] (expanded macros 0) (1,001 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("sourceRefName")]} (id 3400) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (690 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,String :: Option[org.scalasteward.core.data.Resolver.Credentials] :: List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,494 μs, 0.09%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Resolver.Credentials] (expanded macros 0) (5,660 μs, 0.09%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,Option[scala.util.matching.Regex] :: List[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,664 μs, 0.09%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("ref")]} (id 4642) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,314 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 1956) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,045 μs, 0.02%)
+
+
+
+eu.timepit.refined.api.Validate[A,eu.timepit.refined.boolean.Or[eu.timepit.refined.char.Digit,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]]{type R = R} (expanded macros 0) (13,557 μs, 0.22%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (11,901 μs, 0.19%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("pin")] :: Symbol with shapeless.tag.Tagged[String("allow")] :: Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: List[org.scalasteward.core.repoconfig.UpdatePattern] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] :: Option[List[String]] :: shapeless.HNil]{type Out = R} (expanded macros 0) (14,587 μs, 0.24%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,436 μs, 0.07%)
+
+
+
+shapeless.Default.AsRecord[org.scalasteward.core.update.artifact.ArtifactChanges]{type Out = D} (expanded macros 0) (2,832 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,Option[List[String]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,244 μs, 0.05%)
+
+
+
+cats.ApplicativeError[F,Throwable] (expanded macros 0) (5,049 μs, 0.08%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (1,128 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("newerGroupId")]} (id 2308) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (2,227 μs, 0.04%)
+
+
+
+x$1.name.type => ?{def === : ?} (expanded macros 0) (1,424 μs, 0.02%)
+
+
+
+x.dependencyOverrides.type => ?{def |+| : ?} (expanded macros 0) (565 μs, 0.01%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.GroupId] (expanded macros 0) (577 μs, 0.01%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.Version.Component] (expanded macros 0) (1,517 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Dependency]{type Repr = V} (id 1460) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,109 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = V} (id 1701) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,200 μs, 0.04%)
+
+
+
+user.type => ?{def map: ?} (expanded macros 0) (9,179 μs, 0.15%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.Label]{type Repr = V} (id 4806) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,207 μs, 0.04%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Out = Labels} (id 7523) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,992 μs, 0.03%)
+
+
+
+EditAlg.this.logger.type => ?{def attemptWarn: ?} (expanded macros 0) (777 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.RepoConfig]{type Repr = R} (expanded macros 0) (30,031 μs, 0.49%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: None.type :: None.type :: Some[List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil]{type Out = Rec} (expanded macros 0) (2,865 μs, 0.05%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = K} (id 1824) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,005 μs, 0.03%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] (expanded macros 0) (582 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Ref]{type Repr = V} (id 4156) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,345 μs, 0.02%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ignore")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (5,892 μs, 0.10%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.gitlab.CommitId]{type Repr = R} (expanded macros 0) (6,584 μs, 0.11%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = R} (expanded macros 0) (18,803 μs, 0.30%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.Grouped]{type Out = K} (id 2475) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,146 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Repr = V} (expanded macros 3) (1,881 μs, 0.03%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("filter")],cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter]] :: shapeless.HNil] (id 7344) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (4,379 μs, 0.07%)
+
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (1,114 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.azurerepos.AzureComment]{type Repr = R} (expanded macros 0) (7,952 μs, 0.13%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Link]{type Out = K} (id 4017) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,439 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.Header]{type Repr = V} (id 1660) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,274 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")]} (id 7179) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (740 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.repocache.RefreshErrorAlg.Entry] (expanded macros 0) (546 μs, 0.01%)
+
+
+
+cats.FunctorFilter[[+O]fs2.Stream[[_]F[_],O]] (expanded macros 0) (2,630 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: shapeless.HNil,org.scalasteward.core.git.Sha1 :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,689 μs, 0.03%)
+
+
+
+pr.baseSha1.type => ?{def === : ?} (expanded macros 0) (1,000 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("maybeCrossName")] :: shapeless.HNil,String :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (5,025 μs, 0.08%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.InstallationOut]{type Out = K} (id 5305) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (611 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]{type Repr = V} (expanded macros 3) (1,207 μs, 0.02%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (1,123 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucket.Reviewer]{type Out = K} (id 3719) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,037 μs, 0.02%)
+
+
+
+eu.timepit.refined.api.Validate[String,eu.timepit.refined.collection.Size[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[N]]]] (expanded macros 0) (4,297 μs, 0.07%)
+
+
+
+shapeless.ops.record.Keys[org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupIdAfter")],org.scalasteward.core.data.GroupId] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdBefore")],Option[String]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIdAfter")],String] :: shapeless.HNil] (expanded macros 0) (2,566 μs, 0.04%)
+
+
+
+shapeless.ops.record.Keys[Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (3,841 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,Option[List[String]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,295 μs, 0.05%)
+
+
+
+Ordering[Int] (expanded macros 0) (2,348 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,023 μs, 0.02%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.data.GroupId]] (expanded macros 0) (4,424 μs, 0.07%)
+
+
+
+Either[io.circe.Error,org.scalasteward.core.buildtool.mill.Modules] => ?{def leftMap: ?} (expanded macros 0) (824 μs, 0.01%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.data.Resolver.Header]] (expanded macros 0) (2,768 μs, 0.04%)
+
+
+
+String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("description")],String] :: org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("open")],Boolean] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("closed")],Boolean] :: org.scalasteward.core.forge.bitbucketserver.Json.Ref with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fromRef")],org.scalasteward.core.forge.bitbucketserver.Json.Ref] :: org.scalasteward.core.forge.bitbucketserver.Json.Ref with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("toRef")],org.scalasteward.core.forge.bitbucketserver.Json.Ref] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("locked")],Boolean] :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]] :: shapeless.HNil <:< (String :: String :: org.scalasteward.core.forge.data.PullRequestState :: Boolean :: Boolean :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: org.scalasteward.core.forge.bitbucketserver.Json.Ref :: Boolean :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] :: shapeless.HNil) (expanded macros 0) (568 μs, 0.01%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.repoconfig.VersionPattern] (expanded macros 0) (15,354 μs, 0.25%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],String] :: shapeless.HNil]] (id 5378) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (2,474 μs, 0.04%)
+
+
+
+x$7.type => ?{def unwrap: ?} (expanded macros 0) (1,380 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer] (expanded macros 0) (14,469 μs, 0.23%)
+
+
+
+cats.kernel.Eq[Int] (expanded macros 0) (580 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("state")] :: shapeless.HNil,org.scalasteward.core.forge.data.PullRequestState :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,965 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 5489) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (587 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("location")]} (id 2002) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,111 μs, 0.02%)
+
+
+
+String("\\p{javaLowerCase}\\p{javaUpperCase}") => ?{def r: ?} (expanded macros 0) (616 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.PullRequestResp]{type Repr = V} (expanded macros 3) (3,511 μs, 0.06%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (5,386 μs, 0.09%)
+
+
+
+cats.kernel.PartialOrder[org.scalasteward.core.data.Version] (expanded macros 0) (3,300 μs, 0.05%)
+
+
+
+cats.Functor[F] (expanded macros 0) (700 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.PullRequestsConfig]] (id 7439) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (122,865 μs, 1.99%)
+s..
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("newerVersions")]} (id 2309) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (2,494 μs, 0.04%)
+
+
+
+F[Unit] => ?{def adaptErr: ?} (expanded macros 0) (631 μs, 0.01%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.update.artifact.ArtifactChange]] (expanded macros 0) (1,592 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,Option[String] :: String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,780 μs, 0.03%)
+
+
+
+ValueOf[org.scalasteward.core.data.GroupId] (expanded macros 0) (1,248 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (4,347 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("value")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,476 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Repr = V} (id 2858) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,187 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("due_date")] :: Symbol with shapeless.tag.Tagged[String("head")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("milestone")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,Option[String] :: Option[String] :: Option[Vector[Int]] :: Option[Int] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (14,585 μs, 0.24%)
+
+
+
+create.type => ?{def map: ?} (expanded macros 0) (2,676 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("slug")]} (id 4198) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (538 μs, 0.01%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.bitbucketserver.Json.Page[A]] (expanded macros 0) (11,999 μs, 0.19%)
+
+
+
+dependencies.type => ?{def traverse: ?} (expanded macros 0) (618 μs, 0.01%)
+
+
+
+cats.kernel.Order[(org.scalasteward.core.data.GroupId, org.scalasteward.core.data.ArtifactId, org.scalasteward.core.data.Version, Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion], Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion], Option[String])] (expanded macros 0) (2,419 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("links")] :: shapeless.HNil,org.scalasteward.core.forge.data.PullRequestState :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,981 μs, 0.05%)
+
+
+
+x.postUpdateHooks.type => ?{def |+| : ?} (expanded macros 0) (1,163 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Out = K} (id 2857) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (818 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.UpdatesConfig]{type Repr = R} (expanded macros 0) (1,841 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.PullRequestsConfig]{type Out = K} (id 7457) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,484 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("allowPreReleases")]} (id 8269) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,026 μs, 0.02%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.data.Update.ForArtifactId] (expanded macros 0) (59,701 μs, 0.97%)
+
+
+
+cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("forArtifactIds")],cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil <:< (cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil) (expanded macros 0) (870 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("maybeRepoConfigParsingError")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,711 μs, 0.03%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],String] :: shapeless.HNil] (id 5379) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (2,050 μs, 0.03%)
+
+
+
+String("organization: %s, version: %s, scalaVersion: %s, scalaBinaryVersion: %s, sbtVersion: %s, gitHubUrl: %s, gitHubUserContent: %s, mainBranch: %s, gitHeadCommit: %s, millPluginArtifactName: %s, millPluginVersion: %s") => ?{def format: ?} (expanded macros 0) (69,948 μs, 1.13%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (738 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("values")]} (id 4084) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (748 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pattern")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil]{type Out = F} (expanded macros 0) (8,072 μs, 0.13%)
+
+
+
+org.scalasteward.core.git.GenGitAlg[F,org.scalasteward.core.data.Repo] (expanded macros 0) (2,071 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("commit")] :: shapeless.HNil,org.scalasteward.core.forge.data.CommitOut :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,502 μs, 0.02%)
+
+
+
+coursier.util.Sync[F] (expanded macros 0) (9,568 μs, 0.16%)
+
+
+
+cats.kernel.Order[org.scalasteward.core.data.Version] (expanded macros 0) (535 μs, 0.01%)
+
+
+
+io.circe.generic.extras.decoding.ReprDecoder[List[org.scalasteward.core.edit.scalafix.ScalafixMigration] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("migrations")],List[org.scalasteward.core.edit.scalafix.ScalafixMigration]] :: shapeless.HNil] (id 2864) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredDecoder`) (5,220 μs, 0.08%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.data.Resolver.MavenRepository]{type Out = K} (id 1790) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (8,060 μs, 0.13%)
+
+
+
+cats.kernel.Semigroup[org.http4s.headers.Link] (expanded macros 0) (1,918 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("value")]} (id 2199) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (2,553 μs, 0.04%)
+
+
+
+F[List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]] => ?{def flatMap: ?} (expanded macros 0) (1,113 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (5,563 μs, 0.09%)
+
+
+
+Seq[java.nio.file.LinkOption] (expanded macros 0) (2,019 μs, 0.03%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (1,683 μs, 0.03%)
+
+
+
+F[Option[Map[org.http4s.Uri,org.scalasteward.core.nurture.PullRequestRepository.Entry]]] => ?{def map: ?} (expanded macros 0) (1,776 μs, 0.03%)
+
+
+
+Seq[java.nio.file.attribute.FileAttribute[_]] (expanded macros 0) (697 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.data.Resolver.Credentials] (expanded macros 0) (573 μs, 0.01%)
+
+
+
+org.scalasteward.core.application.Config.ForgeCfg (expanded macros 0) (970 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.PullRequestNumber] (expanded macros 0) (4,738 μs, 0.08%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.data.Repo]] (expanded macros 0) (752 μs, 0.01%)
+
+
+
+StewardAlg.this.logger.type => ?{def infoTotalTime: ?} (expanded macros 0) (1,442 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("head")]} (id 4681) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,737 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pin")]} (id 8252) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,072 μs, 0.02%)
+
+
+
+ValueOf[org.scalasteward.core.data.Version] (expanded macros 0) (3,202 μs, 0.05%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (644 μs, 0.01%)
+
+
+
+cats.effect.kernel.Async[[_]F[_]] (expanded macros 0) (1,213 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: shapeless.HNil,Long :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,842 μs, 0.03%)
+
+
+
+io.circe.Encoder[cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId]] (expanded macros 0) (1,505 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.azurerepos.ClosePullRequestPayload]{type Out = K} (id 3411) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (962 μs, 0.02%)
+
+
+
+F[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] => ?{def map: ?} (expanded macros 0) (3,310 μs, 0.05%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("buildRoots")],Symbol with shapeless.tag.Tagged[_ >: String("dependencyOverrides") with String("reviewers") with String("assignees") <: String],Lub0] (expanded macros 0) (864 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,org.scalasteward.core.forge.data.PullRequestState :: org.scalasteward.core.forge.data.PullRequestNumber :: String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,551 μs, 0.06%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.User]{type Repr = V} (id 4526) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,967 μs, 0.03%)
+
+
+
+names.type => ?{def mkString_(x$1: ? >: String("("), x$2: ? >: String(", "), x$3: ? >: String(")")): ?} (expanded macros 0) (1,050 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("full_name")],String] :: shapeless.HNil] (id 5349) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (1,755 μs, 0.03%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.util.Timestamp] (expanded macros 0) (4,226 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("head")] :: shapeless.HNil,Int :: String :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (11,666 μs, 0.19%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (4,300 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] :: Option[List[String]] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,375 μs, 0.09%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("number")]} (id 4684) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,475 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.data.Update.Grouped]] (id 2472) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (39,372 μs, 0.64%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (881 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (10,009 μs, 0.16%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (2,133 μs, 0.03%)
+
+
+
+dependenciesWithNextVersion.type => ?{def flatTraverse: ?} (expanded macros 0) (573 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Resolver.Header] (expanded macros 0) (1,754 μs, 0.03%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (615 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.forge.data.PullRequestNumber]] (id 4370) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (6,632 μs, 0.11%)
+
+
+
+cats.kernel.Order[(Int, org.http4s.Uri)] (expanded macros 0) (868 μs, 0.01%)
+
+
+
+io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.data.Version] (expanded macros 0) (116,032 μs, 1.88%)
+i..
+
+
+io.circe.Decoder[Option[org.scalasteward.core.forge.data.RepoOut]] (expanded macros 0) (905 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.NewPR]{type Out = K} (id 4037) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,185 μs, 0.04%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignee")],Option[String]] :: Option[Vector[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],Option[Vector[String]]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("base")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("due_date")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("head")],Option[String]] :: Option[Vector[Int]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],Option[Vector[Int]]] :: Option[Int] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("milestone")],Option[Int]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: shapeless.HNil] (id 4745) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (17,767 μs, 0.29%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.CommitOut] (expanded macros 0) (19,304 μs, 0.31%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.github.Repository] (expanded macros 0) (8,127 μs, 0.13%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("location")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil]] (id 1727) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (15,006 μs, 0.24%)
+
+
+
+F[org.scalasteward.core.forge.data.NewPullRequestData] => ?{def flatMap: ?} (expanded macros 0) (1,002 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.DependencyInfo] (expanded macros 0) (841 μs, 0.01%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("ignore")],Symbol with shapeless.tag.Tagged[_ >: String("fileExtensions") with String("limit") <: String],Lub0] (expanded macros 0) (1,008 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pin")]} (id 8271) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,015 μs, 0.02%)
+
+
+
+com.monovore.decline.Argument[better.files.File] (expanded macros 0) (1,381 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Ref]{type Repr = V} (expanded macros 3) (2,994 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,157 μs, 0.02%)
+
+
+
+((Boolean, String)) => ?{def pure: ?} (expanded macros 0) (587 μs, 0.01%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Symbol with shapeless.tag.Tagged[_ >: String("dependencyOverrides") with String("reviewers") with String("assignees") with String("buildRoots") <: String],Lub0] (expanded macros 0) (982 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.User]{type Out = K} (id 4525) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,686 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("token")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,486 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.ReprAsObjectCodec[org.scalasteward.core.data.Resolver.IvyRepository with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("IvyRepository")],org.scalasteward.core.data.Resolver.IvyRepository] :+: org.scalasteward.core.data.Resolver.MavenRepository with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("MavenRepository")],org.scalasteward.core.data.Resolver.MavenRepository] :+: shapeless.CNil] (id 1685) (expanded macros 3) (tree from `io.circe.generic.extras.ConfigurableDeriver.deriveConfiguredCodec`) (383,681 μs, 6.22%)
+io.circe..
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("updateBranch")] :: shapeless.HNil,Option[org.scalasteward.core.forge.data.PullRequestNumber] :: Option[org.scalasteward.core.git.Branch] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,596 μs, 0.09%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fork")],Boolean] :: Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Long] :: org.scalasteward.core.forge.gitea.GiteaApiAlg.User with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("owner")],org.scalasteward.core.forge.gitea.GiteaApiAlg.User] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("archived")],Boolean] :: org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("clone_url")],org.http4s.Uri] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("default_branch")],String] :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("parent")],Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository]] :: shapeless.HNil] (id 4565) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (13,924 μs, 0.23%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (12,892 μs, 0.21%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("assignee")]} (id 4742) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,303 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,904 μs, 0.06%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucket.RepositoryResponse] (expanded macros 0) (14,196 μs, 0.23%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.CrossDependency] (expanded macros 0) (2,656 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.UpdatePattern]{type Repr = V} (expanded macros 3) (1,349 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("assignees")]} (id 7650) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (583 μs, 0.01%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("prefix")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("suffix")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("exact")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("contains")],Option[String]] :: shapeless.HNil] (id 8482) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (2,725 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.UpdatesConfig]{type Repr = V} (id 8239) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,885 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("scalafmt")]} (id 7655) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (552 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.repoconfig.RepoConfig]] (expanded macros 0) (1,407 μs, 0.02%)
+
+
+
+d.groupId.value.type => ?{def === : ?} (expanded macros 0) (615 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 2071) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (868 μs, 0.01%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Int] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: shapeless.HNil] (id 4814) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (7,165 μs, 0.12%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (8,299 μs, 0.13%)
+
+
+
+ValueOf[org.scalasteward.core.repocache.RepoCache] (expanded macros 0) (589 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("content")]} (id 3431) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (864 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.buildtool.sbt.data.SbtVersion]] (id 994) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (47,442 μs, 0.77%)
+
+
+
+io.circe.Decoder[eu.timepit.refined.api.Refined[String,eu.timepit.refined.boolean.And[eu.timepit.refined.collection.Forall[eu.timepit.refined.boolean.Or[eu.timepit.refined.char.Digit,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]],eu.timepit.refined.collection.Size[eu.timepit.refined.generic.Equal[40]]]]] (expanded macros 0) (14,065 μs, 0.23%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = R} (expanded macros 0) (1,427 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.VersionPattern]{type Repr = V} (expanded macros 3) (1,859 μs, 0.03%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (580 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucket.CreateComment]{type Out = K} (id 3629) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (960 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],String] :: shapeless.HNil]] (id 4777) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,673 μs, 0.08%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (10,798 μs, 0.18%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pattern")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil]] (id 2088) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (10,599 μs, 0.17%)
+
+
+
+x.commits.type => ?{def |+| : ?} (expanded macros 0) (1,781 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.PostUpdateHookConfig]{type Repr = V} (id 7189) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,224 μs, 0.02%)
+
+
+
+cats.kernel.Order[cats.data.NonEmptyList[org.scalasteward.core.data.Version]] (expanded macros 0) (779 μs, 0.01%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.data.Update.ForGroupId] (expanded macros 0) (28,790 μs, 0.47%)
+
+
+
+shapeless.ops.record.Keys[Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (4,183 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,984 μs, 0.03%)
+
+
+
+header.head.value.type => ?{def toIntOption: ?} (expanded macros 0) (2,035 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,736 μs, 0.03%)
+
+
+
+Ordering[org.scalasteward.core.data.Scope[org.scalasteward.core.data.Dependency]] (expanded macros 0) (1,153 μs, 0.02%)
+
+
+
+cats.kernel.Monoid[List[org.scalasteward.core.forge.github.InstallationOut]] (expanded macros 0) (1,955 μs, 0.03%)
+
+
+
+configFileCandidates.type => ?{def flatMap: ?} (expanded macros 0) (545 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[List[org.scalasteward.core.forge.azurerepos.AzureComment] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("comments")],List[org.scalasteward.core.forge.azurerepos.AzureComment]] :: Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("status")],Int] :: shapeless.HNil] (id 3450) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (3,861 μs, 0.06%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("postUpdateHooks")]} (id 7626) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (622 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,org.scalasteward.core.repoconfig.UpdatesConfig :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (9,061 μs, 0.15%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (2,510 μs, 0.04%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (526 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucketserver.Json.Project]] (id 4135) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (15,722 μs, 0.25%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("crossDependency")]} (id 2310) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (2,775 μs, 0.04%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.Resolver.Credentials] (expanded macros 0) (20,983 μs, 0.34%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Repository]{type Repr = V} (expanded macros 3) (1,447 μs, 0.02%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.data.Version]] (expanded macros 0) (9,147 μs, 0.15%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.PullRequestOut] (expanded macros 0) (22,542 μs, 0.37%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("fileExtensions")]} (id 8266) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,371 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: shapeless.HNil,String :: Option[String] :: List[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil]{type Out = R} (expanded macros 0) (10,631 μs, 0.17%)
+
+
+
+cats.kernel.Semigroup[org.scalasteward.core.repoconfig.CommitsConfig] (expanded macros 0) (1,602 μs, 0.03%)
+
+
+
+F[org.scalasteward.core.util.UrlChecker[F]] => ?{def map: ?} (expanded macros 0) (4,985 μs, 0.08%)
+
+
+
+ValueOf[org.scalasteward.core.repocache.RepoCache] (expanded macros 0) (608 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.ScalafmtConfig]{type Repr = V} (expanded macros 3) (690 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.azurerepos.PullRequestCommentPayload] (expanded macros 0) (16,375 μs, 0.27%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.Label]] (id 4800) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (35,606 μs, 0.58%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("exact")] :: Symbol with shapeless.tag.Tagged[String("contains")] :: shapeless.HNil,Option[String] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,565 μs, 0.04%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion]] (expanded macros 0) (2,648 μs, 0.04%)
+
+
+
+cats.Traverse[List] (expanded macros 0) (562 μs, 0.01%)
+
+
+
+x$3.type => ?{def =!= : ?} (expanded macros 0) (762 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.CommentResp]{type Repr = V} (expanded macros 3) (3,143 μs, 0.05%)
+
+
+
+F[org.scalasteward.core.forge.data.PullRequestOut] => ?{def adaptErr: ?} (expanded macros 0) (1,005 μs, 0.02%)
+
+
+
+expr.datePart.type => ?{def allOf: ?} (expanded macros 0) (3,235 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucket.CreateComment]{type Repr = V} (id 3630) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,286 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("maybeRepoConfig")] :: Symbol with shapeless.tag.Tagged[String("maybeRepoConfigParsingError")] :: shapeless.HNil,Option[org.scalasteward.core.repoconfig.RepoConfig] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,054 μs, 0.05%)
+
+
+
+shapeless.ops.record.Keys[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pattern")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (6,851 μs, 0.11%)
+
+
+
+shapeless.Witness{type T = 3} (id 2275) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (2,503 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("ref")] :: Symbol with shapeless.tag.Tagged[String("sha")] :: shapeless.HNil,String :: org.scalasteward.core.git.Sha1 :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,007 μs, 0.10%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.util.Timestamp with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("failedAt")],org.scalasteward.core.util.Timestamp] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("message")],String] :: shapeless.HNil]] (id 6813) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (6,736 μs, 0.11%)
+
+
+
+cats.Functor[org.scalasteward.core.data.Scope] (expanded macros 0) (1,504 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("target_branch")] :: shapeless.HNil,org.scalasteward.core.git.Branch :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,228 μs, 0.04%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] (expanded macros 0) (1,359 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("color")],String] :: shapeless.HNil] (id 4833) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (4,639 μs, 0.08%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("exact")]} (id 8477) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (526 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Some[Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Some[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: Some[List[String]] :: Some[List[String]] :: Some[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (3,957 μs, 0.06%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.data.CrossDependency with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("crossDependency")],org.scalasteward.core.data.CrossDependency] :: cats.data.NonEmptyList[org.scalasteward.core.data.Version] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerVersions")],cats.data.NonEmptyList[org.scalasteward.core.data.Version]] :: Option[org.scalasteward.core.data.GroupId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerGroupId")],Option[org.scalasteward.core.data.GroupId]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newerArtifactId")],Option[String]] :: shapeless.HNil]] (id 2365) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (17,910 μs, 0.29%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("body")]} (id 4775) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,644 μs, 0.03%)
+
+
+
+F[Unit] => ?{def onError: ?} (expanded macros 0) (2,039 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateIssueCommentOption]] (id 4766) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (23,972 μs, 0.39%)
+
+
+
+org.scalasteward.core.util.uri.authorityWithUserInfo.type => ?{def compose: ?} (expanded macros 0) (1,145 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,324 μs, 0.09%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucket.DefaultReviewers]] (id 3681) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (23,002 μs, 0.37%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (6,159 μs, 0.10%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (4,585 μs, 0.07%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.forge.bitbucketserver.Json.Condition]] (expanded macros 0) (3,076 μs, 0.05%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.ScalafmtConfig] (expanded macros 0) (818 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Repr = R} (expanded macros 0) (5,801 μs, 0.09%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.UserOut]{type Repr = V} (expanded macros 3) (1,159 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("groupId")]} (id 2783) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (904 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: Some[List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (1,420 μs, 0.02%)
+
+
+
+cats.data.NonEmptyList[String] => ?{def mkString_(x$1: ? >: String("{"), x$2: ? >: String(", "), x$3: ? >: String("}")): ?} (expanded macros 0) (1,299 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (3,727 μs, 0.06%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucket.CreateComment] (expanded macros 0) (1,672 μs, 0.03%)
+
+
+
+org.scalasteward.core.data.Version => ?{def === : ?} (expanded macros 0) (1,983 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.Grouped]{type Out = K} (id 2454) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,476 μs, 0.04%)
+
+
+
+shapeless.ops.record.Keys[List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("allowPreReleases")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: List[org.scalasteward.core.repoconfig.UpdatePattern] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ignore")],List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (7,759 μs, 0.13%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.gitlab.ProjectId] (expanded macros 0) (9,933 μs, 0.16%)
+
+
+
+F[(org.scalasteward.core.data.RepoData, org.scalasteward.core.forge.data.RepoOut)] => ?{def flatMap: ?} (expanded macros 0) (1,469 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateLabelReq]{type Out = K} (id 4824) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,928 μs, 0.03%)
+
+
+
+(=> (Nothing, Nothing)) => org.http4s.QueryParam[?T] (expanded macros 0) (1,204 μs, 0.02%)
+
+
+
+x.buildRoots.type => ?{def |+| : ?} (expanded macros 0) (971 μs, 0.02%)
+
+
+
+cats.MonadError[[_]F[_],Throwable] (expanded macros 0) (3,171 μs, 0.05%)
+
+
+
+String => ?{def apply: ?} (expanded macros 0) (614 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.ForGroupId]{type Out = K} (id 2401) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,078 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.update.artifact.ArtifactChanges]{type Repr = V} (expanded macros 3) (1,146 μs, 0.02%)
+
+
+
+scala.collection.Factory[Symbol with shapeless.tag.Tagged[_ >: String("headers") with String("credentials") with String("location") <: String],List[Symbol with shapeless.tag.Tagged[_ >: String("headers") with String("credentials") with String("location") <: String]]] (expanded macros 0) (2,283 μs, 0.04%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Branch] (expanded macros 0) (1,326 μs, 0.02%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("namespace")],String] :: shapeless.HNil] (id 5407) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (2,415 μs, 0.04%)
+
+
+
+expr.type => ?{def next: ?} (expanded macros 0) (1,454 μs, 0.02%)
+
+
+
+eu.timepit.refined.api.Validate[Char,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']]]{type R = RA} (expanded macros 0) (3,190 μs, 0.05%)
+
+
+
+List[org.scalasteward.core.forge.github.Repository] => ?{def flatTraverse: ?} (expanded macros 0) (1,204 μs, 0.02%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (1,060 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("label")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("ref")],String] :: org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sha")],org.scalasteward.core.git.Sha1] :: shapeless.HNil] (id 4646) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (9,781 μs, 0.16%)
+
+
+
+F[List[org.scalasteward.core.buildtool.mill.MillModule]] => ?{def map: ?} (expanded macros 0) (2,116 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("label")] :: Symbol with shapeless.tag.Tagged[String("ref")] :: Symbol with shapeless.tag.Tagged[String("sha")] :: shapeless.HNil,String :: String :: org.scalasteward.core.git.Sha1 :: shapeless.HNil]{type Out = R} (expanded macros 0) (8,874 μs, 0.14%)
+
+
+
+org.scalasteward.core.data.Version => ?{def < : ?} (expanded macros 0) (2,136 μs, 0.03%)
+
+
+
+io.circe.Decoder[Option[org.scalasteward.core.data.Resolver.Credentials]] (expanded macros 0) (5,360 μs, 0.09%)
+
+
+
+io.circe.Encoder[Vector[String]] (expanded macros 0) (899 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.UpdateState]{type Out = K} (id 4469) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (771 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (843 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.GroupRepoConfig]{type Out = K} (id 7108) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (880 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Version] (expanded macros 0) (2,057 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignee")],Option[String]] :: Option[Vector[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],Option[Vector[String]]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("base")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("due_date")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("head")],Option[String]] :: Option[Vector[Int]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],Option[Vector[Int]]] :: Option[Int] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("milestone")],Option[Int]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: shapeless.HNil]] (id 4744) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (18,725 μs, 0.30%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[org.scalasteward.core.data.Version]] (expanded macros 0) (4,364 μs, 0.07%)
+
+
+
+F[List[org.scalasteward.core.edit.EditAttempt]] => ?{def flatMap: ?} (expanded macros 0) (2,289 μs, 0.04%)
+
+
+
+cats.FlatMap[F] (expanded macros 0) (3,853 μs, 0.06%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[List[org.scalasteward.core.forge.github.Repository] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("repositories")],List[org.scalasteward.core.forge.github.Repository]] :: shapeless.HNil]] (id 5325) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,378 μs, 0.07%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] (expanded macros 0) (1,100 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.VersionPattern]{type Repr = V} (id 8470) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,344 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.User]] (id 4520) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (28,891 μs, 0.47%)
+
+
+
+groupId.type => ?{def === : ?} (expanded macros 0) (1,334 μs, 0.02%)
+
+
+
+preCommit.type => ?{def map: ?} (expanded macros 0) (1,302 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("color")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,985 μs, 0.06%)
+
+
+
+cats.kernel.Order[Int] (expanded macros 0) (1,113 μs, 0.02%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: Some[Option[Boolean]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (796 μs, 0.01%)
+
+
+
+F[List[org.scalasteward.core.data.Update.ForArtifactId]] => ?{def map: ?} (expanded macros 0) (2,638 μs, 0.04%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.data.Dependency]] (expanded macros 0) (3,555 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Update.Grouped]{type Out = K} (id 2477) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (3,076 μs, 0.05%)
+
+
+
+io.circe.Decoder[Long] (expanded macros 0) (616 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = V} (expanded macros 3) (2,336 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],Int] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: shapeless.HNil]] (id 4813) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (7,922 μs, 0.13%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pullRequests")]} (id 7656) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (529 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Dependency] (expanded macros 0) (2,563 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (848 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.RepositoriesOut]{type Out = K} (id 5317) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (728 μs, 0.01%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] (expanded macros 0) (1,378 μs, 0.02%)
+
+
+
+F[org.scalasteward.core.repoconfig.RepoConfigAlg.ConfigParsingResult] => ?{def flatMap: ?} (expanded macros 0) (1,369 μs, 0.02%)
+
+
+
+dependency.version.type => ?{def <= : ?} (expanded macros 0) (601 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.buildtool.mill.Modules] (expanded macros 0) (3,498 μs, 0.06%)
+
+
+
+ValueOf[org.scalasteward.core.repoconfig.PullRequestFrequency] (expanded macros 0) (684 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("reviewers")] :: shapeless.HNil,List[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer] :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,999 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateLabelReq]{type Repr = V} (id 4825) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,295 μs, 0.04%)
+
+
+
+((com.monovore.decline.Opts[org.scalasteward.core.git.Author], com.monovore.decline.Opts[better.files.File], com.monovore.decline.Opts[Boolean])) => ?{def mapN: ?} (expanded macros 0) (1,933 μs, 0.03%)
+
+
+
+org.scalasteward.core.util.HttpJsonClient[F] (expanded macros 0) (1,229 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: shapeless.HNil]] (id 5263) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,364 μs, 0.05%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("key")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("value")],String] :: shapeless.HNil]] (id 1667) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (6,638 μs, 0.11%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = K} (id 1946) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,819 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("updatedAt")] :: Symbol with shapeless.tag.Tagged[String("versions")] :: Symbol with shapeless.tag.Tagged[String("maybeError")] :: shapeless.HNil,org.scalasteward.core.util.Timestamp :: List[org.scalasteward.core.data.Version] :: Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (30,848 μs, 0.50%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (645 μs, 0.01%)
+
+
+
+((Nothing, Nothing)) => Int (expanded macros 0) (1,656 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.forge.data.PullRequestNumber with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],org.scalasteward.core.forge.data.PullRequestNumber] :: Int with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("version")],Int] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("links")],scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]]] :: shapeless.HNil]] (id 4109) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (9,233 μs, 0.15%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (1,182 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("baseSha1")]} (id 6591) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,043 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.ArtifactId] (expanded macros 0) (1,827 μs, 0.03%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.github.GitHubAssignees] (expanded macros 0) (1,393 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("buildRoots")]} (id 7856) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (655 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("location")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (17,104 μs, 0.28%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer]{type Repr = V} (id 4006) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,452 μs, 0.02%)
+
+
+
+F[String] => ?{def map: ?} (expanded macros 0) (2,246 μs, 0.04%)
+
+
+
+io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("content")],String] :: shapeless.HNil] (id 3434) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveEncoder`) (2,919 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.Header]{type Repr = V} (expanded macros 3) (2,284 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("labels")]} (id 5290) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (846 μs, 0.01%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] (expanded macros 0) (53,435 μs, 0.87%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.Branch]{type Repr = V} (expanded macros 3) (3,288 μs, 0.05%)
+
+
+
+cats.kernel.Eq[String] (expanded macros 0) (1,646 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateForkOption]{type Repr = V} (id 4507) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,012 μs, 0.03%)
+
+
+
+cats.Functor[org.scalasteward.core.data.Scope] (expanded macros 0) (651 μs, 0.01%)
+
+
+
+com.monovore.decline.Argument[String] (expanded macros 0) (6,014 μs, 0.10%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("organization")]} (id 4511) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,775 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.coursier.VersionsCache.Value]] (id 1315) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (142,915 μs, 2.32%)
+s..
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("commits")] :: Symbol with shapeless.tag.Tagged[String("pullRequests")] :: Symbol with shapeless.tag.Tagged[String("scalafmt")] :: Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,org.scalasteward.core.repoconfig.CommitsConfig :: org.scalasteward.core.repoconfig.PullRequestsConfig :: org.scalasteward.core.repoconfig.ScalafmtConfig :: org.scalasteward.core.repoconfig.UpdatesConfig :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = R} (expanded macros 0) (13,129 μs, 0.21%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = V} (id 2077) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,206 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("newVersion")]} (id 2781) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (840 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.util.Timestamp]{type Repr = R :: shapeless.HNil} (expanded macros 3) (908 μs, 0.01%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.data.DependencyInfo]] (expanded macros 0) (2,489 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("value")] :: Symbol with shapeless.tag.Tagged[String("resolvers")] :: shapeless.HNil,A :: List[org.scalasteward.core.data.Resolver] :: shapeless.HNil]{type Out = R} (expanded macros 0) (13,548 μs, 0.22%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repocache.RefreshErrorAlg.Entry] (expanded macros 0) (4,122 μs, 0.07%)
+
+
+
+shapeless.Generic[org.scalasteward.core.buildtool.sbt.data.SbtVersion] (id 998) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,211 μs, 0.04%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.ScalafmtConfig]{type Repr = R} (expanded macros 0) (600 μs, 0.01%)
+
+
+
+x$13.value.type => ?{def === : ?} (expanded macros 0) (741 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.forge.bitbucketserver.Json.User with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("user")],org.scalasteward.core.forge.bitbucketserver.Json.User] :: shapeless.HNil]] (id 4217) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,619 μs, 0.06%)
+
+
+
+cats.kernel.Eq[Option[String]] (expanded macros 0) (627 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ReprAsObjectCodec[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("message")],Option[String]] :: shapeless.HNil]] (id 7078) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,567 μs, 0.07%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.github.GitHubLabels]] (id 5281) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (17,131 μs, 0.28%)
+
+
+
+F[org.scalasteward.core.forge.bitbucketserver.Json.Comment] => ?{def map: ?} (expanded macros 0) (1,309 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("token")],String] :: shapeless.HNil] (id 5363) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (2,301 μs, 0.04%)
+
+
+
+List[org.scalasteward.core.nurture.UpdateInfoUrl] => ?{def filterA: ?} (expanded macros 0) (761 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("archived")] :: shapeless.HNil,Boolean :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,753 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.IvyRepository]{type Out = K} (id 2074) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,685 μs, 0.03%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (901 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("namespace")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,609 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.bitbucketserver.Json.PR]{type Repr = V} (id 4096) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,674 μs, 0.03%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] (expanded macros 0) (1,233 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("contains")]} (id 8498) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (721 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pattern")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil]] (id 1851) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (17,069 μs, 0.28%)
+
+
+
+io.circe.Encoder[Option[List[String]]] (expanded macros 0) (947 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.DependencyInfo] (expanded macros 0) (1,923 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("href")],org.http4s.Uri] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],Option[String]] :: shapeless.HNil]] (id 4027) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (5,598 μs, 0.09%)
+
+
+
+cats.Foldable[org.scalasteward.core.util.Nel] (expanded macros 0) (2,317 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repocache.RefreshErrorAlg.Entry]{type Repr = V} (id 6806) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,115 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.util.Timestamp] (expanded macros 0) (958 μs, 0.02%)
+
+
+
+ValueOf[org.scalasteward.core.repoconfig.PullRequestGroup] (expanded macros 0) (700 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.coursier.VersionsCache.Value]{type Repr = V} (expanded macros 3) (5,095 μs, 0.08%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.SemVer.Change] (expanded macros 0) (1,043 μs, 0.02%)
+
+
+
+cats.FlatMap[F] (expanded macros 0) (883 μs, 0.01%)
+
+
+
+F[org.scalasteward.core.edit.scalafix.ScalafixMigrationsFinder] => ?{def map: ?} (expanded macros 0) (3,956 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Branches]{type Out = K} (id 3960) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (933 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.github.InstallationOut]{type Repr = R} (expanded macros 0) (5,783 μs, 0.09%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.decoding.ReprDecoder[List[org.scalasteward.core.update.artifact.ArtifactChange] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("changes")],List[org.scalasteward.core.update.artifact.ArtifactChange]] :: shapeless.HNil]] (id 8849) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,979 μs, 0.06%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.bitbucketserver.Json.Branches] (expanded macros 0) (1,802 μs, 0.03%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.DependencyInfo] (expanded macros 0) (907 μs, 0.01%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.repoconfig.PullRequestsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pullRequests")],org.scalasteward.core.repoconfig.PullRequestsConfig] :: org.scalasteward.core.repoconfig.UpdatePattern with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependency")],org.scalasteward.core.repoconfig.UpdatePattern] :: shapeless.HNil] (id 7119) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (6,888 μs, 0.11%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("buildRoots")]} (id 7651) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (598 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("exact")] :: Symbol with shapeless.tag.Tagged[String("contains")] :: shapeless.HNil,Option[String] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,567 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.PullRequestResp]{type Repr = V} (id 4673) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,556 μs, 0.04%)
+
+
+
+F[Either[String,(coursier.core.Versions, String)]] => ?{def flatMap: ?} (expanded macros 0) (2,035 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("reviewers")]} (id 7860) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (627 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Some[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: Some[List[String]] :: Some[List[String]] :: Some[List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (3,326 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("uuid")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,623 μs, 0.03%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver]{type Repr = R} (expanded macros 0) (1,735 μs, 0.03%)
+
+
+
+F[_1] => ?{def flatMap: ?} (expanded macros 0) (1,248 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.PullRequestNumber] (expanded macros 0) (1,619 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("base")]} (id 4975) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (605 μs, 0.01%)
+
+
+
+cats.FunctorFilter[[+O]fs2.Stream[[_]F[_],O]] (expanded macros 0) (556 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("description")],String] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],Option[List[String]]] :: Option[List[Int]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignee_ids")],Option[List[Int]]] :: Option[List[Int]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewer_ids")],Option[List[Int]]] :: Long with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("target_project_id")],Long] :: Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("remove_source_branch")],Option[Boolean]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("source_branch")],String] :: org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("target_branch")],org.scalasteward.core.git.Branch] :: shapeless.HNil]] (id 5491) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (9,266 μs, 0.15%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.util.Timestamp]] (id 9041) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,476 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("owner")] :: Symbol with shapeless.tag.Tagged[String("parent")] :: Symbol with shapeless.tag.Tagged[String("clone_url")] :: Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("archived")] :: shapeless.HNil,String :: org.scalasteward.core.forge.data.UserOut :: Option[org.scalasteward.core.forge.data.RepoOut] :: org.http4s.Uri :: org.scalasteward.core.git.Branch :: Boolean :: shapeless.HNil]{type Out = R} (expanded macros 0) (9,791 μs, 0.16%)
+
+
+
+io.circe.Encoder[Vector[Int]] (expanded macros 0) (1,137 μs, 0.02%)
+
+
+
+cats.MonadError[F,Throwable] (expanded macros 0) (4,670 μs, 0.08%)
+
+
+
+io.circe.generic.extras.decoding.ConfiguredDecoder[org.scalasteward.core.data.Resolver.MavenRepository] (expanded macros 0) (106,468 μs, 1.73%)
+
+
+
+shapeless.Generic[org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Repr = V} (expanded macros 3) (1,563 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = shapeless._0} (expanded macros 0) (3,286 μs, 0.05%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucket.Reviewer] (expanded macros 0) (12,726 μs, 0.21%)
+
+
+
+F[Option[org.scalasteward.core.coursier.VersionsCache.Value]] => ?{def flatMap: ?} (expanded macros 0) (1,551 μs, 0.03%)
+
+
+
+shapeless.ops.coproduct.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("MavenRepository")] :: shapeless.HNil,org.scalasteward.core.data.Resolver.MavenRepository :+: shapeless.CNil] (expanded macros 0) (2,260 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("groupIdBefore")] :: Symbol with shapeless.tag.Tagged[String("groupIdAfter")] :: Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,Option[org.scalasteward.core.data.GroupId] :: org.scalasteward.core.data.GroupId :: Option[String] :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (3,443 μs, 0.06%)
+
+
+
+io.circe.Decoder[List[org.scalasteward.core.forge.data.PullRequestOut]] (expanded macros 0) (3,110 μs, 0.05%)
+
+
+
+String("Grouped") => ?{def -> : ?} (expanded macros 0) (936 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("body")] :: Symbol with shapeless.tag.Tagged[String("due_date")] :: Symbol with shapeless.tag.Tagged[String("head")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("milestone")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,Option[String] :: Option[String] :: Option[String] :: Option[Vector[Int]] :: Option[Int] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (17,260 μs, 0.28%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("frequency")] :: Symbol with shapeless.tag.Tagged[String("grouping")] :: Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")] :: Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,Option[org.scalasteward.core.repoconfig.PullRequestFrequency] :: List[org.scalasteward.core.repoconfig.PullRequestGroup] :: Option[scala.util.matching.Regex] :: List[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (11,207 μs, 0.18%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (1,036 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitlab.ForkPayload]{type Out = K} (id 5398) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (908 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.azurerepos.AzureComment] (expanded macros 0) (11,969 μs, 0.19%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("location")]} (id 1972) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (865 μs, 0.01%)
+
+
+
+org.http4s.Header[org.http4s.headers.User-Agent, _] (expanded macros 0) (709 μs, 0.01%)
+
+
+
+io.circe.Decoder[A] (expanded macros 0) (578 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.azurerepos.ClosePullRequestPayload]{type Repr = V} (expanded macros 3) (1,455 μs, 0.02%)
+
+
+
+F[List[org.scalasteward.core.data.Update.ForArtifactId]] => ?{def flatMap: ?} (expanded macros 0) (1,515 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("pin")] :: Symbol with shapeless.tag.Tagged[String("allow")] :: Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (16,718 μs, 0.27%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.CommentResp]] (id 4781) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (34,989 μs, 0.57%)
+
+
+
+cats.Semigroupal[com.monovore.decline.Opts] (expanded macros 0) (7,328 μs, 0.12%)
+
+
+
+shapeless.Default[org.scalasteward.core.repoconfig.RepoConfig]{type Out = Options} (id 7830) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (2,133 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("title")]} (id 4734) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,626 μs, 0.03%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.data.GroupId] (expanded macros 0) (4,073 μs, 0.07%)
+
+
+
+F[Option[org.scalasteward.core.nurture.PullRequestData[Option]]] => ?{def map: ?} (expanded macros 0) (882 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Branch]{type Out = K} (id 3927) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,144 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (887 μs, 0.01%)
+
+
+
+F[(List[String], List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]], List[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.Dependency]]])] => ?{def map: ?} (expanded macros 0) (1,768 μs, 0.03%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("allow")],Symbol with shapeless.tag.Tagged[_ >: String("fileExtensions") with String("limit") with String("ignore") with String("allowPreReleases") <: String],Lub0] (expanded macros 0) (975 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.IvyRepository]{type Repr = V} (id 1825) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,729 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.data.PullRequestNumber]{type Repr = R :: shapeless.HNil} (expanded macros 3) (1,376 μs, 0.02%)
+
+
+
+ex.exitValue.type => ?{def === : ?} (expanded macros 0) (1,106 μs, 0.02%)
+
+
+
+io.circe.Encoder[List[String]] (expanded macros 0) (596 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitlab.CommitId]{type Out = K} (id 5520) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (730 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 4232) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,213 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Resolver.Header] (expanded macros 0) (1,771 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("frequency")]} (id 7540) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,047 μs, 0.02%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.repoconfig.UpdatePattern]] (expanded macros 0) (2,042 μs, 0.03%)
+
+
+
+x$2.type => ?{def === : ?} (expanded macros 0) (4,893 μs, 0.08%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Resolver] (expanded macros 0) (3,303 μs, 0.05%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("description")]} (id 5487) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (701 μs, 0.01%)
+
+
+
+shapeless.Default[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = Options} (id 1751) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (5,640 μs, 0.09%)
+
+
+
+io.circe.Decoder[Vector[org.scalasteward.core.forge.gitea.GiteaApiAlg.Label]] (expanded macros 0) (797 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ReprAsObjectCodec[org.scalasteward.core.repoconfig.CommitsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commits")],org.scalasteward.core.repoconfig.CommitsConfig] :: org.scalasteward.core.repoconfig.PullRequestsConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("pullRequests")],org.scalasteward.core.repoconfig.PullRequestsConfig] :: org.scalasteward.core.repoconfig.ScalafmtConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalafmt")],org.scalasteward.core.repoconfig.ScalafmtConfig] :: org.scalasteward.core.repoconfig.UpdatesConfig with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],org.scalasteward.core.repoconfig.UpdatesConfig] :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("postUpdateHooks")],Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil]] (id 7659) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (30,102 μs, 0.49%)
+
+
+
+shapeless.Generic[org.scalasteward.core.update.artifact.ArtifactChange]{type Repr = V} (expanded macros 3) (1,322 μs, 0.02%)
+
+
+
+F[org.scalasteward.core.forge.gitlab.ProjectId] => ?{def flatMap: ?} (expanded macros 0) (2,715 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sha")],org.scalasteward.core.git.Sha1] :: shapeless.HNil]] (id 4321) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (8,076 μs, 0.13%)
+
+
+
+cats.kernel.Order[cats.data.NonEmptyList[org.scalasteward.core.data.Dependency]] (expanded macros 0) (1,080 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("newerArtifactId")]} (id 2360) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,879 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.buildtool.sbt.data.ScalaVersion]] (id 1005) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (13,070 μs, 0.21%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.BranchOut] (expanded macros 0) (1,616 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("version")]} (id 1471) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,061 μs, 0.02%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Some[List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Some[List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Some[List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Some[Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Some[Option[List[String]]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("pin")] :: Symbol with shapeless.tag.Tagged[String("allow")] :: Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil]{type Out = Rec} (expanded macros 0) (7,928 μs, 0.13%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 4530) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,592 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("prefix")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("suffix")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("exact")],Option[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("contains")],Option[String]] :: shapeless.HNil]] (id 8503) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (2,857 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver]{type Repr = V} (id 1675) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (3,755 μs, 0.06%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (1,843 μs, 0.03%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] (expanded macros 0) (1,691 μs, 0.03%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucketserver.Json.Comment]] (id 3970) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (19,517 μs, 0.32%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,Option[Boolean] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,313 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil,List[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (3,257 μs, 0.05%)
+
+
+
+F[Repo] => ?{def flatMap: ?} (expanded macros 0) (12,157 μs, 0.20%)
+
+
+
+eu.timepit.refined.api.RefinedType[eu.timepit.refined.api.Refined[String,eu.timepit.refined.boolean.And[eu.timepit.refined.collection.Forall[eu.timepit.refined.boolean.Or[eu.timepit.refined.char.Digit,eu.timepit.refined.boolean.And[eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less['a']],eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Greater['f']]]]],eu.timepit.refined.collection.Size[eu.timepit.refined.generic.Equal[40]]]]]{type T = String} (expanded macros 0) (22,914 μs, 0.37%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("key")],String] :: shapeless.HNil]] (id 4146) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,244 μs, 0.07%)
+
+
+
+cats.UnorderedFoldable[List] (expanded macros 0) (865 μs, 0.01%)
+
+
+
+eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Less[shapeless._0]]{type R = R} (expanded macros 0) (3,514 μs, 0.06%)
+
+
+
+cats.kernel.Eq[Int] (expanded macros 0) (1,338 μs, 0.02%)
+
+
+
+F[org.scalasteward.core.forge.data.RepoOut] => ?{def flatMap: ?} (expanded macros 0) (2,024 μs, 0.03%)
+
+
+
+cats.data.NonEmptyList[String] => ?{def mkString_(x$1: ? >: String("\n"), x$2: ? >: String(""), x$3: ? >: String("\n")): ?} (expanded macros 0) (733 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("newerVersions")] :: Symbol with shapeless.tag.Tagged[String("newerGroupId")] :: Symbol with shapeless.tag.Tagged[String("newerArtifactId")] :: shapeless.HNil,cats.data.NonEmptyList[org.scalasteward.core.data.Version] :: Option[org.scalasteward.core.data.GroupId] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (13,389 μs, 0.22%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[String]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("customLabels")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (2,008 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitlab.CommitId]{type Repr = V} (id 5521) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (938 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.UpdatesConfig]{type Repr = V} (expanded macros 3) (2,230 μs, 0.04%)
+
+
+
+cats.Foldable[[+T2](String, T2)] (expanded macros 0) (712 μs, 0.01%)
+
+
+
+shapeless.Default.AsRecord.Helper[Some[List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Some[List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Some[List[org.scalasteward.core.repoconfig.UpdatePattern]] :: Some[Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Some[Option[List[String]]] :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("allow")] :: Symbol with shapeless.tag.Tagged[String("allowPreReleases")] :: Symbol with shapeless.tag.Tagged[String("ignore")] :: Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil]{type Out = OutT} (expanded macros 0) (6,309 μs, 0.10%)
+
+
+
+org.http4s.Header[org.http4s.headers.Authorization, _] (expanded macros 0) (624 μs, 0.01%)
+
+
+
+failuresSummaryOpt.type => ?{def toSeq: ?} (expanded macros 0) (1,321 μs, 0.02%)
+
+
+
+F[Option[Map[org.http4s.Uri,org.scalasteward.core.nurture.PullRequestRepository.Entry]]] => ?{def void: ?} (expanded macros 0) (1,656 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.User]{type Repr = V} (expanded macros 3) (2,364 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,295 μs, 0.04%)
+
+
+
+cats.FlatMap[F] (expanded macros 0) (62,617 μs, 1.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.azurerepos.ClosePullRequestPayload]{type Repr = R} (expanded macros 0) (7,313 μs, 0.12%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.CommitsConfig] (expanded macros 0) (801 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("baseSha1")] :: Symbol with shapeless.tag.Tagged[String("update")] :: Symbol with shapeless.tag.Tagged[String("state")] :: Symbol with shapeless.tag.Tagged[String("entryCreatedAt")] :: Symbol with shapeless.tag.Tagged[String("number")] :: Symbol with shapeless.tag.Tagged[String("updateBranch")] :: shapeless.HNil,org.scalasteward.core.git.Sha1 :: org.scalasteward.core.data.Update :: org.scalasteward.core.forge.data.PullRequestState :: org.scalasteward.core.util.Timestamp :: Option[org.scalasteward.core.forge.data.PullRequestNumber] :: Option[org.scalasteward.core.git.Branch] :: shapeless.HNil]{type Out = R} (expanded macros 0) (14,760 μs, 0.24%)
+
+
+
+author.signingKey.type => ?{def traverse_: ?} (expanded macros 0) (613 μs, 0.01%)
+
+
+
+((Option[org.scalasteward.core.data.SemVer], Option[org.scalasteward.core.data.SemVer])) => ?{def tupled: ?} (expanded macros 0) (1,506 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("archived")]} (id 4558) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,433 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.ForGroupId]{type Repr = V} (expanded macros 3) (3,098 μs, 0.05%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.nurture.PullRequestRepository.Entry]{type Out = K} (id 6575) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,745 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("targetRefName")] :: Symbol with shapeless.tag.Tagged[String("title")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("description")] :: shapeless.HNil,String :: String :: Option[List[String]] :: String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,108 μs, 0.10%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucket.Reviewer]] (id 3714) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (16,688 μs, 0.27%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.CommentResp]{type Out = K} (id 4784) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,622 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("values")]} (id 3690) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (752 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.MavenRepository]{type Repr = V} (expanded macros 3) (2,538 μs, 0.04%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Dependency] (expanded macros 0) (1,911 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit]{type Repr = V} (expanded macros 3) (2,112 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.ForGroupId]{type Repr = V} (id 2440) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,664 μs, 0.04%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.data.Dependency] (expanded macros 0) (68,330 μs, 1.11%)
+
+
+
+org.http4s.EntityDecoder[[_]F[_],Unit] (expanded macros 0) (2,820 μs, 0.05%)
+
+
+
+eu.timepit.refined.internal.WitnessAs['f',Char] (expanded macros 0) (1,704 μs, 0.03%)
+
+
+
+io.circe.Decoder[List[A]] (expanded macros 0) (847 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,654 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.update.artifact.ArtifactChanges]{type Repr = V} (id 8835) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,418 μs, 0.02%)
+
+
+
+resolvers.type => ?{def traverseFilter: ?} (expanded macros 0) (2,834 μs, 0.05%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.Resolver]{type Repr = R} (expanded macros 0) (18,585 μs, 0.30%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.repoconfig.PullRequestGroup]] (id 7358) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (16,017 μs, 0.26%)
+
+
+
+cats.Foldable[org.scalasteward.core.util.Nel] (expanded macros 0) (1,717 μs, 0.03%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Dependency]{type Repr = V} (expanded macros 3) (3,888 μs, 0.06%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.repoconfig.VersionPattern]] (expanded macros 0) (1,319 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("filter")]} (id 7369) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (591 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.nurture.PullRequestRepository.Entry]{type Repr = R} (expanded macros 0) (25,777 μs, 0.42%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("runAfterUpgrading")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (1,112 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("credentials")]} (id 2069) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (943 μs, 0.02%)
+
+
+
+F[org.typelevel.log4cats.SelfAwareStructuredLogger[F]] => ?{def map: ?} (expanded macros 0) (1,806 μs, 0.03%)
+
+
+
+repo.type => ?{def -> : ?} (expanded macros 0) (598 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (1,064 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver]{type Out = K} (id 2170) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,724 μs, 0.03%)
+
+
+
+mr.mergeStatus.type => ?{def === : ?} (expanded macros 0) (568 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.data.Dependency with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependency")],org.scalasteward.core.data.Dependency] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("filesContainingVersion")],List[String]] :: shapeless.HNil]] (id 1602) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (18,642 μs, 0.30%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Ref]{type Out = K} (id 4155) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,131 μs, 0.02%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (1,008 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("id")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("namespace")],String] :: shapeless.HNil]] (id 5406) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (2,893 μs, 0.05%)
+
+
+
+io.circe.generic.extras.decoding.ConfiguredDecoder[org.scalasteward.core.update.artifact.ArtifactChange] (expanded macros 0) (55,901 μs, 0.91%)
+
+
+
+shapeless.Witness{type T = 40} (id 6041) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (641 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("base")]} (id 4740) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,255 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.CommitOut]{type Out = K} (id 4313) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,207 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.RepoConfig] (expanded macros 0) (158,306 μs, 2.57%)
+io..
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.PullRequestsConfig] (expanded macros 0) (871 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.update.artifact.ArtifactChanges]{type Out = Labels} (id 8863) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (604 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver.Credentials]{type Repr = V} (id 1643) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,482 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 1759) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,327 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("assignee_ids")] :: Symbol with shapeless.tag.Tagged[String("reviewer_ids")] :: Symbol with shapeless.tag.Tagged[String("target_project_id")] :: Symbol with shapeless.tag.Tagged[String("remove_source_branch")] :: Symbol with shapeless.tag.Tagged[String("source_branch")] :: Symbol with shapeless.tag.Tagged[String("target_branch")] :: shapeless.HNil,Option[List[Int]] :: Option[List[Int]] :: Long :: Option[Boolean] :: String :: org.scalasteward.core.git.Branch :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (10,098 μs, 0.16%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Repository]{type Repr = R} (expanded macros 0) (8,525 μs, 0.14%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.github.RepositoriesOut]{type Repr = R} (expanded macros 0) (95,854 μs, 1.55%)
+
+
+
+x.reviewers.type => ?{def |+| : ?} (expanded macros 0) (540 μs, 0.01%)
+
+
+
+F[(Unit, F[org.scalasteward.core.forge.data.AuthenticatedUser], org.scalasteward.core.update.artifact.ArtifactMigrationsLoader[F])] => ?{def flatMap: ?} (expanded macros 0) (5,393 μs, 0.09%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.EditPullRequestOption]{type Out = K} (id 4705) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,548 μs, 0.03%)
+
+
+
+io.circe.Decoder[cats.data.NonEmptyList[String]] (expanded macros 0) (756 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("location")]} (id 1957) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (893 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("scalaVersion")] :: Symbol with shapeless.tag.Tagged[String("configurations")] :: shapeless.HNil,Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (5,392 μs, 0.09%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.DependencyInfo] (expanded macros 0) (1,835 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("name")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (4,036 μs, 0.07%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (702 μs, 0.01%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("allowPreReleases")],Symbol with shapeless.tag.Tagged[_ >: String("fileExtensions") with String("limit") with String("ignore") <: String],Lub0] (expanded macros 0) (924 μs, 0.01%)
+
+
+
+cats.kernel.Monoid[cats.effect.kernel.Resource[F,Unit]] (expanded macros 0) (14,512 μs, 0.24%)
+
+
+
+state.type => ?{def === : ?} (expanded macros 0) (2,810 μs, 0.05%)
+
+
+
+io.circe.Decoder[Int] (expanded macros 0) (1,157 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("commit")]} (id 5547) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (739 μs, 0.01%)
+
+
+
+ScalafixMigration.this.rewriteRules.type => ?{def mkString_(x$1: ? >: String(", ")): ?} (expanded macros 0) (651 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.PullRequestGroup] (expanded macros 0) (1,735 μs, 0.03%)
+
+
+
+(=> Long) => Int (expanded macros 0) (636 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.data.ArtifactId]{type Repr = R} (expanded macros 0) (21,737 μs, 0.35%)
+
+
+
+shapeless.ops.nat.ToInt[shapeless._0] (expanded macros 3) (4,191 μs, 0.07%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.forge.bitbucket.CommentContent with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("content")],org.scalasteward.core.forge.bitbucket.CommentContent] :: shapeless.HNil]] (id 3635) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,893 μs, 0.06%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.BuildRootConfig] (expanded macros 0) (828 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("command")],cats.data.NonEmptyList[String]] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commitMessage")],String] :: Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")],Option[Boolean]] :: shapeless.HNil] (expanded macros 0) (3,373 μs, 0.05%)
+
+
+
+F[Unit] => ?{def map: ?} (expanded macros 0) (48,373 μs, 0.78%)
+
+
+
+io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.PullRequestsConfig] (expanded macros 0) (111,260 μs, 1.80%)
+i..
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("body")] :: Symbol with shapeless.tag.Tagged[String("id")] :: shapeless.HNil,String :: Long :: shapeless.HNil]{type Out = R} (expanded macros 0) (11,101 μs, 0.18%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (2,723 μs, 0.04%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.update.artifact.ArtifactChange]{type Repr = R} (expanded macros 0) (7,064 μs, 0.11%)
+
+
+
+org.scalasteward.core.util.DateTimeAlg[F] (expanded macros 0) (1,297 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("assignees")]} (id 4741) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,278 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("commits")]} (id 7630) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (534 μs, 0.01%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.forge.bitbucket.Reviewer]] (expanded macros 0) (2,067 μs, 0.03%)
+
+
+
+io.circe.Decoder[List[String]] (expanded macros 0) (737 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.update.artifact.ArtifactChange]{type Repr = V} (id 8719) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (903 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Branch] (expanded macros 0) (1,579 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,236 μs, 0.04%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: List[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],List[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil] (id 2488) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (7,304 μs, 0.12%)
+
+
+
+F[(List[String], String, List[String], List[String], org.scalasteward.core.forge.data.NewPullRequestData)] => ?{def map: ?} (expanded macros 0) (795 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pattern")]} (id 2115) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (917 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.data.Resolver]] (id 1671) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (541,867 μs, 8.79%)
+shapeless.La..
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.github.TokenOut] (expanded macros 0) (9,207 μs, 0.15%)
+
+
+
+io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.UpdatesConfig] (expanded macros 0) (138,956 μs, 2.25%)
+i..
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("resolvers")] :: shapeless.HNil,List[org.scalasteward.core.data.Resolver] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (7,100 μs, 0.12%)
+
+
+
+F[org.scalasteward.core.persistence.JsonKeyValueStore[F,org.scalasteward.core.data.Repo,org.scalasteward.core.repocache.RepoCache]] => ?{def flatMap: ?} (expanded macros 0) (3,464 μs, 0.06%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.data.Update.ForArtifactId]] (id 2348) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (55,063 μs, 0.89%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.github.Repository]{type Repr = R} (expanded macros 0) (5,593 μs, 0.09%)
+
+
+
+ValueOf[org.scalasteward.core.nurture.PullRequestRepository.Entry] (expanded macros 0) (935 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] (expanded macros 0) (2,077 μs, 0.03%)
+
+
+
+io.circe.Decoder[Int] (expanded macros 0) (700 μs, 0.01%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.repocache.RepoCache] (expanded macros 0) (37,167 μs, 0.60%)
+
+
+
+ValueOf[org.scalasteward.core.repoconfig.UpdatePattern] (expanded macros 0) (620 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.data.Version] (expanded macros 0) (1,156 μs, 0.02%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repocache.RepoCache] (expanded macros 0) (3,994 μs, 0.06%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],org.scalasteward.core.git.Branch] :: org.scalasteward.core.forge.data.CommitOut with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commit")],org.scalasteward.core.forge.data.CommitOut] :: shapeless.HNil]] (id 5550) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,808 μs, 0.06%)
+
+
+
+cats.Contravariant[cats.kernel.Order] (expanded macros 0) (1,026 μs, 0.02%)
+
+
+
+cats.Functor[io.circe.Decoder] (expanded macros 0) (1,754 μs, 0.03%)
+
+
+
+io.circe.Encoder[cats.data.NonEmptyList[org.scalasteward.core.data.Dependency]] (expanded macros 0) (3,276 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("newerVersions")] :: Symbol with shapeless.tag.Tagged[String("newerGroupId")] :: Symbol with shapeless.tag.Tagged[String("newerArtifactId")] :: shapeless.HNil,cats.data.NonEmptyList[org.scalasteward.core.data.Version] :: Option[org.scalasteward.core.data.GroupId] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (10,136 μs, 0.16%)
+
+
+
+shapeless.Annotations[io.circe.generic.extras.JsonKey,org.scalasteward.core.edit.scalafix.ScalafixMigrations]{type Out = K} (id 2891) (expanded macros 3) (tree from `shapeless.AnnotationMacros.materializeVariableAnnotations`) (968 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("reviewers")]} (id 3994) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (934 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer]{type Out = K} (id 4003) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,136 μs, 0.02%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucket.DefaultReviewers] (expanded macros 0) (18,962 μs, 0.31%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,String :: Option[Boolean] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,990 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("allowPreReleases")]} (id 8345) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,143 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (2,898 μs, 0.05%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.data.Dependency with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependency")],org.scalasteward.core.data.Dependency] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("filesContainingVersion")],List[String]] :: shapeless.HNil] (id 1603) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (17,701 μs, 0.29%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.GroupId] (expanded macros 0) (1,762 μs, 0.03%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (1,165 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (977 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (1,266 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List[org.scalasteward.core.data.Resolver.Header] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,311 μs, 0.04%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commit")],org.scalasteward.core.forge.gitea.GiteaApiAlg.PayloadCommit] :: shapeless.HNil]] (id 4624) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (5,135 μs, 0.08%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.PullRequestFrequency] (expanded macros 0) (1,733 μs, 0.03%)
+
+
+
+io.circe.Encoder[String] (expanded macros 0) (524 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: Symbol with shapeless.tag.Tagged[String("repository")] :: shapeless.HNil,String :: org.scalasteward.core.forge.bitbucketserver.Json.Repository :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,734 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("head")] :: shapeless.HNil,org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (6,418 μs, 0.10%)
+
+
+
+Ordering[org.scalasteward.core.data.Version] (expanded macros 0) (3,465 μs, 0.06%)
+
+
+
+cats.Functor[io.circe.Decoder] (expanded macros 0) (623 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucketserver.Json.Repo]{type Repr = R} (expanded macros 0) (9,085 μs, 0.15%)
+
+
+
+F[_1] => ?{def map: ?} (expanded macros 0) (926 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (992 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.data.BranchOut]{type Repr = R} (expanded macros 0) (8,286 μs, 0.13%)
+
+
+
+F[(Unit, String, org.scalasteward.core.git.CommitMsg)] => ?{def flatMap: ?} (expanded macros 0) (1,135 μs, 0.02%)
+
+
+
+F[List[String]] => ?{def attempt: ?} (expanded macros 0) (589 μs, 0.01%)
+
+
+
+F[org.http4s.Status] => ?{def map: ?} (expanded macros 0) (572 μs, 0.01%)
+
+
+
+((com.monovore.decline.Opts[List[org.http4s.Uri]], com.monovore.decline.Opts[Boolean])) => ?{def mapN: ?} (expanded macros 0) (5,206 μs, 0.08%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("artifactIdAfter")]} (id 8740) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (740 μs, 0.01%)
+
+
+
+Float => Int (expanded macros 0) (2,249 μs, 0.04%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("key")],String] :: shapeless.HNil] (id 4147) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (3,620 μs, 0.06%)
+
+
+
+cats.kernel.Order[List[org.scalasteward.core.data.Version.Component]] (expanded macros 0) (1,395 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Resolver]{type Repr = V} (expanded macros 3) (1,649 μs, 0.03%)
+
+
+
+x$1.type => ?{def sequence: ?} (expanded macros 0) (2,805 μs, 0.05%)
+
+
+
+"), x$2: ? >: String(" (2,635 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.gitea.GiteaApiAlg.CommentResp]{type Repr = V} (id 4787) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,151 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("login")] :: Symbol with shapeless.tag.Tagged[String("id")] :: shapeless.HNil,String :: Long :: shapeless.HNil]{type Out = R} (expanded macros 0) (6,844 μs, 0.11%)
+
+
+
+org.scalasteward.core.data.GroupId with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("groupId")],org.scalasteward.core.data.GroupId] :: cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("artifactIds")],cats.data.NonEmptyList[String]] :: org.scalasteward.core.data.Version with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("newVersion")],org.scalasteward.core.data.Version] :: cats.data.NonEmptyList[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("rewriteRules")],cats.data.NonEmptyList[String]] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("doc")],Option[String]] :: Option[cats.data.NonEmptyList[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("scalacOptions")],Option[cats.data.NonEmptyList[String]]] :: Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("authors")],Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("target")],Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("executionOrder")],Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder]] :: shapeless.HNil <:< (org.scalasteward.core.data.GroupId :: cats.data.NonEmptyList[String] :: org.scalasteward.core.data.Version :: cats.data.NonEmptyList[String] :: Option[String] :: Option[cats.data.NonEmptyList[String]] :: Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] :: shapeless.HNil) (expanded macros 0) (626 μs, 0.01%)
+
+
+
+F[Map[(org.scalasteward.core.data.GroupId, String),org.scalasteward.core.util.Timestamp]] => ?{def flatMap: ?} (expanded macros 0) (658 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("name")]} (id 1887) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (972 μs, 0.02%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.repoconfig.PullRequestGroup] (expanded macros 0) (13,190 μs, 0.21%)
+
+
+
+Array[String] => ?{def toList: ?} (expanded macros 0) (19,924 μs, 0.32%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("customLabels")]} (id 7466) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,375 μs, 0.02%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: org.scalasteward.core.forge.data.UserOut with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("owner")],org.scalasteward.core.forge.data.UserOut] :: Option[org.scalasteward.core.forge.data.RepoOut] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("parent")],Option[org.scalasteward.core.forge.data.RepoOut]] :: org.http4s.Uri with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("clone_url")],org.http4s.Uri] :: org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("default_branch")],org.scalasteward.core.git.Branch] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("archived")],Boolean] :: shapeless.HNil] (id 4440) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (9,039 μs, 0.15%)
+
+
+
+cats.effect.kernel.Resource[F,Option[better.files.File]] => ?{def void: ?} (expanded macros 0) (3,393 μs, 0.06%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.repoconfig.PullRequestGroup]{type Repr = R} (expanded macros 0) (7,990 μs, 0.13%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("commit")]} (id 4622) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,564 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("maybeRepoConfig")]} (id 6856) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (794 μs, 0.01%)
+
+
+
+ValueOf[org.scalasteward.core.git.Branch] (expanded macros 0) (545 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("title")]} (id 4683) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,326 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.buildtool.mill.MillModule] (expanded macros 0) (2,777 μs, 0.05%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucketserver.Json.User] (expanded macros 0) (25,804 μs, 0.42%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitlab.MergeRequestPayload]{type Out = K} (id 5467) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,308 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("slug")] :: Symbol with shapeless.tag.Tagged[String("project")] :: shapeless.HNil,String :: org.scalasteward.core.forge.bitbucketserver.Json.Project :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,667 μs, 0.04%)
+
+
+
+String => Iterable[_] (expanded macros 0) (694 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] (expanded macros 0) (1,500 μs, 0.02%)
+
+
+
+cats.Functor[F] (expanded macros 0) (3,800 μs, 0.06%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("body")]} (id 4792) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,492 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.forge.github.GitHubLabels]{type Repr = V} (id 5287) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (1,105 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver]{type Out = K} (id 1682) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,502 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.GroupRepoConfig]{type Out = K} (id 7110) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (630 μs, 0.01%)
+
+
+
+shapeless.Default[org.scalasteward.core.update.artifact.ArtifactChanges]{type Out = Options} (id 8862) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (1,174 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("fork")] :: Symbol with shapeless.tag.Tagged[String("id")] :: Symbol with shapeless.tag.Tagged[String("owner")] :: Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("archived")] :: Symbol with shapeless.tag.Tagged[String("clone_url")] :: Symbol with shapeless.tag.Tagged[String("default_branch")] :: Symbol with shapeless.tag.Tagged[String("parent")] :: shapeless.HNil,Boolean :: Long :: org.scalasteward.core.forge.gitea.GiteaApiAlg.User :: String :: Boolean :: org.http4s.Uri :: String :: Option[org.scalasteward.core.forge.gitea.GiteaApiAlg.Repository] :: shapeless.HNil]{type Out = R} (expanded macros 0) (22,971 μs, 0.37%)
+
+
+
+cats.kernel.Order[List[org.scalasteward.core.data.Resolver]] (expanded macros 0) (1,011 μs, 0.02%)
+
+
+
+names.type => ?{def mkString_: ?} (expanded macros 0) (1,657 μs, 0.03%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Resolver.Credentials] (expanded macros 0) (1,605 μs, 0.03%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (3,130 μs, 0.05%)
+
+
+
+F[(org.scalasteward.core.git.Branch, (List[org.scalasteward.core.data.Update.Grouped], List[org.scalasteward.core.data.Update.ForArtifactId]), List[Product with org.scalasteward.core.data.Update with java.io.Serializable])] => ?{def flatMap: ?} (expanded macros 0) (682 μs, 0.01%)
+
+
+
+F[java.util.concurrent.Executor] => ?{def flatMap: ?} (expanded macros 0) (3,169 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("pullRequests")] :: Symbol with shapeless.tag.Tagged[String("dependency")] :: shapeless.HNil,org.scalasteward.core.repoconfig.PullRequestsConfig :: org.scalasteward.core.repoconfig.UpdatePattern :: shapeless.HNil]{type Out = R} (expanded macros 0) (2,794 μs, 0.05%)
+
+
+
+fs2.Compiler.Target[[x]F[x]] (expanded macros 0) (10,316 μs, 0.17%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver]{type Out = K} (id 2162) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,703 μs, 0.03%)
+
+
+
+cats.kernel.Eq[Int] (expanded macros 0) (820 μs, 0.01%)
+
+
+
+shapeless.ops.record.Keys[Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("limit")],Option[eu.timepit.refined.api.Refined[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]]]] :: Option[List[String]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fileExtensions")],Option[List[String]]] :: shapeless.HNil] (expanded macros 0) (4,028 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (1,101 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (8,921 μs, 0.14%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("filter")],cats.data.NonEmptyList[org.scalasteward.core.repoconfig.PullRequestUpdateFilter]] :: shapeless.HNil]] (id 7373) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,851 μs, 0.08%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("labels")],List[String]] :: shapeless.HNil]] (id 5292) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,619 μs, 0.07%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[List[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[org.scalasteward.core.forge.bitbucketserver.Json.DefaultReviewer]] :: shapeless.HNil]] (id 3996) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (3,498 μs, 0.06%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.BranchOut] (expanded macros 0) (15,312 μs, 0.25%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[shapeless.HNil,shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,094 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("filter")]} (id 7339) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (640 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.forge.data.PullRequestState] (expanded macros 0) (1,496 μs, 0.02%)
+
+
+
+shapeless.Generic[org.scalasteward.core.update.artifact.ArtifactChanges]{type Repr = V} (id 8844) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (955 μs, 0.02%)
+
+
+
+from.major.type => ?{def =!= : ?} (expanded macros 0) (1,853 μs, 0.03%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.git.Sha1] (expanded macros 0) (1,533 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("rewriteRules")] :: Symbol with shapeless.tag.Tagged[String("doc")] :: Symbol with shapeless.tag.Tagged[String("scalacOptions")] :: Symbol with shapeless.tag.Tagged[String("authors")] :: Symbol with shapeless.tag.Tagged[String("target")] :: Symbol with shapeless.tag.Tagged[String("executionOrder")] :: shapeless.HNil,cats.data.NonEmptyList[String] :: Option[String] :: Option[cats.data.NonEmptyList[String]] :: Option[cats.data.NonEmptyList[org.scalasteward.core.git.Author]] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.Target] :: Option[org.scalasteward.core.edit.scalafix.ScalafixMigration.ExecutionOrder] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (13,173 μs, 0.21%)
+
+
+
+from.preRelease.type => ?{def =!= : ?} (expanded macros 0) (1,180 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("dependencyOverrides")]} (id 7884) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (674 μs, 0.01%)
+
+
+
+(=> String) => Int (expanded macros 0) (703 μs, 0.01%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.Grouped]{type Repr = V} (id 2455) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (2,486 μs, 0.04%)
+
+
+
+F[List[org.scalasteward.core.edit.update.data.VersionPosition]] => ?{def flatMap: ?} (expanded macros 0) (967 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("clone_url")]} (id 4434) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,067 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.data.Resolver] (expanded macros 0) (421,771 μs, 6.84%)
+io.circe...
+
+
+io.circe.Encoder[Option[String]] (expanded macros 0) (1,694 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Repository]{type Out = K} (id 4192) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (926 μs, 0.02%)
+
+
+
+cats.Foldable[F] (expanded macros 0) (1,735 μs, 0.03%)
+
+
+
+x$1.sha1.type => ?{def === : ?} (expanded macros 0) (1,089 μs, 0.02%)
+
+
+
+io.circe.Encoder[Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion]] (expanded macros 0) (2,646 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("version")] :: Symbol with shapeless.tag.Tagged[String("sbtVersion")] :: Symbol with shapeless.tag.Tagged[String("scalaVersion")] :: Symbol with shapeless.tag.Tagged[String("configurations")] :: shapeless.HNil,org.scalasteward.core.data.Version :: Option[org.scalasteward.core.buildtool.sbt.data.SbtVersion] :: Option[org.scalasteward.core.buildtool.sbt.data.ScalaVersion] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (9,810 μs, 0.16%)
+
+
+
+String => ?{def stripMargin: ?} (expanded macros 0) (6,589 μs, 0.11%)
+
+
+
+F[Either[Throwable,List[org.scalasteward.core.data.Version]]] => ?{def flatMap: ?} (expanded macros 0) (1,550 μs, 0.03%)
+
+
+
+shapeless.Default.AsRecord.Helper[None.type :: None.type :: None.type :: None.type :: shapeless.HNil,Symbol with shapeless.tag.Tagged[String("groupIdBefore")] :: Symbol with shapeless.tag.Tagged[String("groupIdAfter")] :: Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil]{type Out = Rec} (expanded macros 0) (1,329 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.ReprAsObjectEncoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],String] :: String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("description")],String] :: org.scalasteward.core.forge.data.PullRequestState with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],org.scalasteward.core.forge.data.PullRequestState] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("open")],Boolean] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("closed")],Boolean] :: org.scalasteward.core.forge.bitbucketserver.Json.Ref with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("fromRef")],org.scalasteward.core.forge.bitbucketserver.Json.Ref] :: org.scalasteward.core.forge.bitbucketserver.Json.Ref with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("toRef")],org.scalasteward.core.forge.bitbucketserver.Json.Ref] :: Boolean with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("locked")],Boolean] :: List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]] :: shapeless.HNil]] (id 4059) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (8,874 μs, 0.14%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("includeMatchedLabels")],Symbol with shapeless.tag.Tagged[String("customLabels")],Lub0] (expanded macros 0) (754 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.repoconfig.UpdatePattern] (expanded macros 0) (1,289 μs, 0.02%)
+
+
+
+io.circe.generic.extras.codec.UnwrappedCodec[org.scalasteward.core.util.Timestamp] (expanded macros 0) (2,966 μs, 0.05%)
+
+
+
+cats.kernel.Order[(cats.data.NonEmptyList[org.scalasteward.core.data.CrossDependency], cats.data.NonEmptyList[org.scalasteward.core.data.Version])] (expanded macros 0) (2,508 μs, 0.04%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (9,104 μs, 0.15%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.git.Sha1 with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("sha")],org.scalasteward.core.git.Sha1] :: shapeless.HNil] (id 4322) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (6,447 μs, 0.10%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,261 μs, 0.02%)
+
+
+
+fa.type => ?{def attempt: ?} (expanded macros 0) (540 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("updates")] :: Symbol with shapeless.tag.Tagged[String("postUpdateHooks")] :: Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,org.scalasteward.core.repoconfig.UpdatesConfig :: Option[List[org.scalasteward.core.repoconfig.PostUpdateHookConfig]] :: Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] :: List[String] :: List[String] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (12,003 μs, 0.19%)
+
+
+
+cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("forArtifactIds")],cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil <:< (cats.data.NonEmptyList[org.scalasteward.core.data.Update.ForArtifactId] :: shapeless.HNil) (expanded macros 0) (794 μs, 0.01%)
+
+
+
+F[List[org.scalasteward.core.data.Repo]] => ?{def map: ?} (expanded macros 0) (1,316 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Resolver.MavenRepository] (expanded macros 0) (2,527 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repocache.RepoCache]{type Repr = V} (expanded macros 3) (1,924 μs, 0.03%)
+
+
+
+cats.parse.Parser[String] => ?{def filterNot: ?} (expanded macros 0) (2,284 μs, 0.04%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("body")]} (id 4739) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,354 μs, 0.02%)
+
+
+
+repoConfig.dependencyOverrides.type => ?{def collectFirstSome: ?} (expanded macros 0) (571 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("reviewers")]} (id 7622) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (973 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("postUpdateHooks")]} (id 7653) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (562 μs, 0.01%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.edit.scalafix.ScalafixMigrations] (expanded macros 0) (1,573 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pattern")]} (id 2085) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (972 μs, 0.02%)
+
+
+
+RepoConfig.this.type => ?{def asJson: ?} (expanded macros 0) (772 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = shapeless._0} (expanded macros 0) (7,287 μs, 0.12%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("description")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,963 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("body")] :: Symbol with shapeless.tag.Tagged[String("due_date")] :: Symbol with shapeless.tag.Tagged[String("head")] :: Symbol with shapeless.tag.Tagged[String("labels")] :: Symbol with shapeless.tag.Tagged[String("milestone")] :: Symbol with shapeless.tag.Tagged[String("title")] :: shapeless.HNil,Option[Vector[String]] :: Option[String] :: Option[String] :: Option[String] :: Option[String] :: Option[Vector[Int]] :: Option[Int] :: Option[String] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (22,598 μs, 0.37%)
+
+
+
+x$48.updates.type => ?{def flatTraverse: ?} (expanded macros 0) (529 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("runAfterUpgrading")]} (id 8136) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (527 μs, 0.01%)
+
+
+
+cats.effect.std.Console[cats.effect.IO] (expanded macros 0) (2,292 μs, 0.04%)
+
+
+
+ValueOf[org.scalasteward.core.git.Sha1] (expanded macros 0) (562 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("pullRequests")]} (id 7868) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (594 μs, 0.01%)
+
+
+
+F[List[String]] => ?{def flatMap: ?} (expanded macros 0) (7,294 μs, 0.12%)
+
+
+
+F[Option[org.scalasteward.core.git.Commit]] => ?{def flatMap: ?} (expanded macros 0) (967 μs, 0.02%)
+
+
+
+(=> Float) => Int (expanded macros 0) (674 μs, 0.01%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] (expanded macros 0) (809 μs, 0.01%)
+
+
+
+shapeless.Lub[Symbol with shapeless.tag.Tagged[String("grouping")],Symbol with shapeless.tag.Tagged[_ >: String("customLabels") with String("includeMatchedLabels") <: String],Lub0] (expanded macros 0) (965 μs, 0.02%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("body")],String] :: shapeless.HNil] (id 4778) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (4,026 μs, 0.07%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.edit.scalafix.ScalafixMigration] (expanded macros 0) (56,262 μs, 0.91%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("base")] :: Symbol with shapeless.tag.Tagged[String("draft")] :: shapeless.HNil,org.scalasteward.core.git.Branch :: Boolean :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,562 μs, 0.04%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Scope[A]]{type Repr = V} (id 2194) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (4,148 μs, 0.07%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("groupId")] :: Symbol with shapeless.tag.Tagged[String("artifactId")] :: Symbol with shapeless.tag.Tagged[String("command")] :: Symbol with shapeless.tag.Tagged[String("commitMessage")] :: Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")] :: shapeless.HNil,Option[org.scalasteward.core.data.GroupId] :: Option[String] :: cats.data.NonEmptyList[String] :: String :: Option[Boolean] :: shapeless.HNil]{type Out = R} (expanded macros 0) (4,700 μs, 0.08%)
+
+
+
+io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.github.RepositoriesOut] (expanded macros 0) (100,675 μs, 1.63%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("headers")]} (id 1883) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,119 μs, 0.02%)
+
+
+
+ValueOf[org.scalasteward.core.git.Sha1] (expanded macros 0) (708 μs, 0.01%)
+
+
+
+F[(better.files.File, better.files.File)] => ?{def flatMap: ?} (expanded macros 0) (1,845 μs, 0.03%)
+
+
+
+F[org.scalasteward.core.forge.data.RepoOut] => ?{def flatTap: ?} (expanded macros 0) (1,142 μs, 0.02%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.forge.bitbucket.CommentContent]{type Repr = R} (expanded macros 0) (7,193 μs, 0.12%)
+
+
+
+cats.kernel.Eq[org.scalasteward.core.git.Sha1] (expanded macros 0) (669 μs, 0.01%)
+
+
+
+org.http4s.QueryParamEncoder[Int] (expanded macros 0) (887 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ReprAsObjectCodec[org.scalasteward.core.data.Resolver.IvyRepository with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("IvyRepository")],org.scalasteward.core.data.Resolver.IvyRepository] :+: org.scalasteward.core.data.Resolver.MavenRepository with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("MavenRepository")],org.scalasteward.core.data.Resolver.MavenRepository] :+: shapeless.CNil]] (id 1684) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (386,046 μs, 6.26%)
+shapeles..
+
+
+F[org.scalasteward.core.forge.gitlab.MergeRequestApprovalsOut] => ?{def map: ?} (expanded macros 0) (750 μs, 0.01%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.github.UpdatePullRequestPayload]] (id 5365) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (12,543 μs, 0.20%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.github.UpdatePullRequestPayload]{type Out = K} (id 5370) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (769 μs, 0.01%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.data.Resolver.MavenRepository]{type Out = Labels} (id 1752) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,796 μs, 0.03%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.RepoConfig]{type Out = K} (id 7606) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,993 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("commit")] :: shapeless.HNil,org.scalasteward.core.forge.data.CommitOut :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,558 μs, 0.03%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("state")]} (id 4055) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (988 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (5,641 μs, 0.09%)
+
+
+
+F[Option[cats.data.NonEmptyList[org.scalasteward.core.update.data.UpdateState.WithUpdate]]] => ?{def map: ?} (expanded macros 0) (799 μs, 0.01%)
+
+
+
+io.circe.Decoder[Option[String]] (expanded macros 0) (2,887 μs, 0.05%)
+
+
+
+shapeless.Generic[org.scalasteward.core.data.Update.ForGroupId]{type Repr = V} (expanded macros 3) (2,398 μs, 0.04%)
+
+
+
+List[org.scalasteward.core.coursier.DependencyMetadata] => ?{def traverse: ?} (expanded macros 0) (579 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (5,103 μs, 0.08%)
+
+
+
+F[List[org.scalasteward.core.forge.bitbucketserver.Json.Condition]] => ?{def map: ?} (expanded macros 0) (1,378 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.bitbucketserver.Json.Reviewer]{type Out = K} (id 4211) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (677 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("comments")]} (id 3447) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (664 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("pass")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (2,108 μs, 0.03%)
+
+
+
+F[(better.files.File, String, cats.data.NonEmptyList[String], scala.collection.immutable.Set[org.scalasteward.core.io.process.SlurpOption])] => ?{def flatMap: ?} (expanded macros 0) (1,223 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("reviewers")]} (id 7882) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (661 μs, 0.01%)
+
+
+
+eu.timepit.refined.api.Validate[Int,eu.timepit.refined.boolean.Not[eu.timepit.refined.numeric.Less[shapeless._0]]] (expanded macros 0) (3,975 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.VersionPattern]{type Out = K} (id 8467) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,206 μs, 0.02%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("id")]} (id 5457) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (783 μs, 0.01%)
+
+
+
+shapeless.Default[org.scalasteward.core.repoconfig.CommitsConfig]{type Out = Options} (id 7085) (expanded macros 3) (tree from `shapeless.DefaultMacros.materialize`) (816 μs, 0.01%)
+
+
+
+io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.github.CreatePullRequestPayload] (expanded macros 0) (18,961 μs, 0.31%)
+
+
+
+io.circe.Encoder[org.scalasteward.core.data.Scope[List[org.scalasteward.core.data.DependencyInfo]]] (expanded macros 0) (5,069 μs, 0.08%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("state")],String] :: shapeless.HNil]] (id 4713) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,689 μs, 0.08%)
+
+
+
+shapeless.Generic[org.scalasteward.core.repoconfig.UpdatePattern]{type Repr = V} (id 8180) (expanded macros 3) (tree from `shapeless.GenericMacros.materialize`) (960 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.extras.codec.ConfiguredAsObjectCodec[org.scalasteward.core.repoconfig.UpdatesConfig]] (id 8233) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (151,038 μs, 2.45%)
+sh..
+
+
+io.circe.generic.extras.util.RecordToMap[Option[Boolean] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("addToGitBlameIgnoreRevs")],Option[Boolean]] :: shapeless.HNil] (expanded macros 0) (948 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.update.artifact.ArtifactChange]{type Out = Labels} (id 8771) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (677 μs, 0.01%)
+
+
+
+dependencies.type => ?{def parTraverseFilter: ?} (expanded macros 0) (579 μs, 0.01%)
+
+
+
+shapeless.Lazy[shapeless.Generic[org.scalasteward.core.data.CrossDependency]{type Repr = R :: shapeless.HNil}] (id 1421) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (5,939 μs, 0.10%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("slug")],String] :: scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("links")],scala.collection.immutable.Map[String,cats.data.NonEmptyList[org.scalasteward.core.forge.bitbucketserver.Json.Link]]] :: shapeless.HNil]] (id 4180) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (4,439 μs, 0.07%)
+
+
+
+shapeless.ops.record.Keys[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("location")],String] :: Option[org.scalasteward.core.data.Resolver.Credentials] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("credentials")],Option[org.scalasteward.core.data.Resolver.Credentials]] :: List[org.scalasteward.core.data.Resolver.Header] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("headers")],List[org.scalasteward.core.data.Resolver.Header]] :: shapeless.HNil] (expanded macros 0) (5,734 μs, 0.09%)
+
+
+
+F[Option[org.scalasteward.core.repocache.RefreshErrorAlg.Entry]] => ?{def flatMap: ?} (expanded macros 0) (544 μs, 0.01%)
+
+
+
+Array[String] => ?{def last: ?} (expanded macros 0) (1,598 μs, 0.03%)
+
+
+
+cats.Functor[F] (expanded macros 0) (736 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("body")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,094 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("groupIdBefore")] :: Symbol with shapeless.tag.Tagged[String("groupIdAfter")] :: Symbol with shapeless.tag.Tagged[String("artifactIdBefore")] :: Symbol with shapeless.tag.Tagged[String("artifactIdAfter")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (5,702 μs, 0.09%)
+
+
+
+String => Int (expanded macros 0) (1,935 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("project")] :: shapeless.HNil,org.scalasteward.core.forge.bitbucketserver.Json.Project :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,479 μs, 0.02%)
+
+
+
+F[List[(org.scalasteward.core.data.Dependency, org.scalasteward.core.coursier.DependencyMetadata)]] => ?{def map: ?} (expanded macros 0) (995 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: shapeless.HNil,List]{type Lub = Option[io.circe.generic.extras.JsonKey]} (expanded macros 0) (6,725 μs, 0.11%)
+
+
+
+io.circe.Decoder[String] (expanded macros 0) (1,438 μs, 0.02%)
+
+
+
+shapeless.ops.hlist.ToTraversable[None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: None.type :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (7,534 μs, 0.12%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("limit")] :: Symbol with shapeless.tag.Tagged[String("fileExtensions")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (5,251 μs, 0.09%)
+
+
+
+F[org.scalasteward.core.forge.bitbucket.RepositoryResponse] => ?{def recoverWith: ?} (expanded macros 0) (788 μs, 0.01%)
+
+
+
+io.circe.Encoder[List[org.scalasteward.core.data.Resolver]] (expanded macros 0) (4,377 μs, 0.07%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("sha1")]} (id 6858) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (866 μs, 0.01%)
+
+
+
+shapeless.LabelledGeneric[org.scalasteward.core.edit.scalafix.ScalafixMigration]{type Repr = R} (expanded macros 0) (35,943 μs, 0.58%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.data.RepoOut]{type Out = K} (id 4423) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,437 μs, 0.02%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.gitea.GiteaApiAlg.PRBranchInfo]] (id 4630) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (36,846 μs, 0.60%)
+
+
+
+eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Less[shapeless._0]]{type R = R} (expanded macros 0) (3,462 μs, 0.06%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.VersionPattern]{type Out = K} (id 8469) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (1,028 μs, 0.02%)
+
+
+
+cats.data.NonEmptyList[String] => ?{def contains_: ?} (expanded macros 0) (726 μs, 0.01%)
+
+
+
+eu.timepit.refined.api.Validate[Int,eu.timepit.refined.numeric.Greater[shapeless._0]] (expanded macros 0) (13,499 μs, 0.22%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],org.scalasteward.core.git.Branch] :: org.scalasteward.core.forge.data.CommitOut with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commit")],org.scalasteward.core.forge.data.CommitOut] :: shapeless.HNil]] (id 4275) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (5,475 μs, 0.09%)
+
+
+
+F[(Unit, String, F[Option[org.scalasteward.core.git.Commit]])] => ?{def flatMap: ?} (expanded macros 0) (1,123 μs, 0.02%)
+
+
+
+io.circe.Decoder[org.scalasteward.core.data.Version] (expanded macros 0) (3,715 μs, 0.06%)
+
+
+
+io.circe.generic.codec.ReprAsObjectCodec[A with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("value")],A] :: List[org.scalasteward.core.data.Resolver] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("resolvers")],List[org.scalasteward.core.data.Resolver]] :: shapeless.HNil] (id 2202) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveCodec`) (15,106 μs, 0.24%)
+
+
+
+F[io.circe.Json] => ?{def flatMap: ?} (expanded macros 0) (730 μs, 0.01%)
+
+
+
+io.circe.generic.decoding.ReprDecoder[org.scalasteward.core.git.Branch with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],org.scalasteward.core.git.Branch] :: org.scalasteward.core.forge.data.CommitOut with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("commit")],org.scalasteward.core.forge.data.CommitOut] :: shapeless.HNil] (id 5551) (expanded macros 3) (tree from `io.circe.generic.Deriver.deriveDecoder`) (3,281 μs, 0.05%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("id")] :: Symbol with shapeless.tag.Tagged[String("name")] :: shapeless.HNil,Int :: String :: shapeless.HNil]{type Out = R} (expanded macros 0) (7,549 μs, 0.12%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("crossDependency")]} (id 2363) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,821 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("login")] :: shapeless.HNil,String :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,537 μs, 0.02%)
+
+
+
+io.circe.generic.codec.DerivedAsObjectCodec[org.scalasteward.core.forge.bitbucket.CommentContent] (expanded macros 0) (12,169 μs, 0.20%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.DerivedDecoder[org.scalasteward.core.forge.data.BranchOut]] (id 4262) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (19,194 μs, 0.31%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("updatePullRequests")] :: Symbol with shapeless.tag.Tagged[String("buildRoots")] :: Symbol with shapeless.tag.Tagged[String("assignees")] :: Symbol with shapeless.tag.Tagged[String("reviewers")] :: Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,[+A]List[A]]{type Lub = LubT} (expanded macros 0) (10,538 μs, 0.17%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.forge.gitea.GiteaApiAlg.CreateForkOption]{type Out = K} (id 4506) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (2,033 μs, 0.03%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")] :: shapeless.HNil,List[org.scalasteward.core.repoconfig.GroupRepoConfig] :: shapeless.HNil]{type Out = ZwkOut} (expanded macros 0) (1,789 μs, 0.03%)
+
+
+
+F[List[coursier.core.Repository]] => ?{def flatMap: ?} (expanded macros 0) (1,930 μs, 0.03%)
+
+
+
+F[(Map[String,Int], org.scalasteward.core.forge.gitlab.MergeRequestPayload)] => ?{def flatMap: ?} (expanded macros 0) (596 μs, 0.01%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("content")]} (id 3633) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (1,173 μs, 0.02%)
+
+
+
+scala.collection.immutable.Vector[String] => ?{def traverse: ?} (expanded macros 0) (706 μs, 0.01%)
+
+
+
+shapeless.ops.hlist.ZipWithKeys[Symbol with shapeless.tag.Tagged[String("message")] :: shapeless.HNil,Option[String] :: shapeless.HNil]{type Out = R} (expanded macros 0) (1,030 μs, 0.02%)
+
+
+
+shapeless.DefaultSymbolicLabelling[org.scalasteward.core.repoconfig.CommitsConfig]{type Out = K} (id 7061) (expanded macros 3) (tree from `shapeless.LabelledMacros.mkDefaultSymbolicLabellingImpl`) (780 μs, 0.01%)
+
+
+
+io.circe.Encoder[Option[Vector[String]]] (expanded macros 0) (1,400 μs, 0.02%)
+
+
+
+io.circe.generic.extras.util.RecordToMap[Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updatePullRequests")],Option[org.scalasteward.core.repoconfig.PullRequestUpdateStrategy]] :: Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("buildRoots")],Option[List[org.scalasteward.core.repoconfig.BuildRootConfig]]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("assignees")],List[String]] :: List[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("reviewers")],List[String]] :: List[org.scalasteward.core.repoconfig.GroupRepoConfig] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("dependencyOverrides")],List[org.scalasteward.core.repoconfig.GroupRepoConfig]] :: shapeless.HNil] (expanded macros 0) (5,155 μs, 0.08%)
+
+
+
+shapeless.Lazy[io.circe.generic.decoding.ReprDecoder[String with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("name")],String] :: Option[String] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("title")],Option[String]] :: List[org.scalasteward.core.data.Update.ForArtifactId] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("updates")],List[org.scalasteward.core.data.Update.ForArtifactId]] :: shapeless.HNil]] (id 2487) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (8,228 μs, 0.13%)
+
+
+
+shapeless.Lazy[io.circe.generic.encoding.DerivedAsObjectEncoder[org.scalasteward.core.forge.azurerepos.PullRequestCommentPayload]] (id 3436) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (20,102 μs, 0.33%)
+
+
+
+shapeless.Lazy[io.circe.generic.codec.ReprAsObjectCodec[A with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("value")],A] :: List[org.scalasteward.core.data.Resolver] with shapeless.labelled.KeyTag[Symbol with shapeless.tag.Tagged[String("resolvers")],List[org.scalasteward.core.data.Resolver]] :: shapeless.HNil]] (id 2201) (expanded macros 3) (tree from `shapeless.LazyMacros.mkLazyImpl`) (16,293 μs, 0.26%)
+
+
+
+shapeless.ops.hlist.ToTraversable[Symbol with shapeless.tag.Tagged[String("name")] :: Symbol with shapeless.tag.Tagged[String("pattern")] :: Symbol with shapeless.tag.Tagged[String("credentials")] :: Symbol with shapeless.tag.Tagged[String("headers")] :: shapeless.HNil,List]{type Lub = Symbol} (expanded macros 0) (10,927 μs, 0.18%)
+
+
+
+scala.util.Either[org.http4s.ParseFailure,org.http4s.Uri] => ?{def leftMap: ?} (expanded macros 0) (7,273 μs, 0.12%)
+
+
+
+shapeless.Witness{type T = Symbol with shapeless.tag.Tagged[String("scalafmt")]} (id 7870) (expanded macros 3) (tree from `shapeless.SingletonTypeMacros.materializeImpl`) (613 μs, 0.01%)
+
+
+
+
diff --git a/website/static/img/scalac-profiling-logo-footer.png b/website/static/img/scalac-profiling-logo-footer.png
new file mode 100644
index 0000000..64cc772
Binary files /dev/null and b/website/static/img/scalac-profiling-logo-footer.png differ
diff --git a/website/static/img/scalac-profiling-logo.png b/website/static/img/scalac-profiling-logo.png
new file mode 100644
index 0000000..4244b55
Binary files /dev/null and b/website/static/img/scalac-profiling-logo.png differ
diff --git a/website/static/img/scalacenter.png b/website/static/img/scalacenter.png
new file mode 100644
index 0000000..8ffe2d3
Binary files /dev/null and b/website/static/img/scalacenter.png differ
diff --git a/website/static/img/scalacenter2x.png b/website/static/img/scalacenter2x.png
new file mode 100644
index 0000000..85f2844
Binary files /dev/null and b/website/static/img/scalacenter2x.png differ
diff --git a/website/static/img/speed-up-compilation.png b/website/static/img/speed-up-compilation.png
new file mode 100644
index 0000000..d6d9f06
Binary files /dev/null and b/website/static/img/speed-up-compilation.png differ