|
Scala example source code file (EndoTest.scala)
The EndoTest.scala Scala example source codepackage scalaz import scalaz.scalacheck.ScalazProperties._ import scalaz.scalacheck.ScalaCheckBinding._ import org.scalacheck.Arbitrary object EndoTest extends SpecLite { implicit def endoArb[A](implicit A: Arbitrary[A => A]): Arbitrary[Endo[A]] = Functor[Arbitrary].map(A)(Endo.endo) implicit val endoIntEqual: Equal[Endo[Int]] = Equal.equal( (a, b) => Iterator.fill(20)(util.Random.nextInt).forall(n => a(n) == b(n)) ) checkAll(invariantFunctor.laws[Endo]) } Other Scala examples (source code examples)Here is a short list of links related to this Scala EndoTest.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.