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

scalaz.syntax.StrictTreeOps.scala Maven / Gradle / Ivy

The newest version!
package scalaz
package syntax

final class StrictTreeOps[A](private val self: A) extends AnyVal {
  def strictNode(subForest: StrictTree[A]*): StrictTree[A] = StrictTree(self, subForest.toVector)

  def strictLeaf: StrictTree[A] = StrictTree.Leaf(self)
}

trait ToStrictTreeOps {
  implicit def ToStrictTreeOps[A](a: A): StrictTreeOps[A] = new StrictTreeOps(a)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy