|
Scala example source code file (ProductTest.scala)
The ProductTest.scala Scala example source codepackage scalaz import std.AllInstances._ import scalaz.scalacheck.ScalazProperties._ import scalaz.scalacheck.ScalazArbitrary._ object ProductTest extends SpecLite { type OptionList[α] = (Option[α], List[α]) type OneAndOption[α] = OneAnd[Option, α] type OneAndOptionPair[α] = (OneAndOption[α], OneAndOption[α]) implicit val optionListMonadPlus = MonadPlus[Option].product[List] implicit val optionListZip = Zip[Option].product[List] implicit val oneAndOptionPairTraverse1 = Traverse1[OneAndOption].product[OneAndOption] { implicit val optionListBindRec = BindRec[Option].product[List] checkAll(bindRec.laws[OptionList]) } checkAll(monadPlus.strongLaws[OptionList]) checkAll(zip.laws[OptionList]) checkAll(traverse1.laws[OneAndOptionPair]) implicit val eitherTuple2 = Bitraverse[Either].product[Tuple2] checkAll(bitraverse.laws[λ[(α, β) => (Either[α, β], (α, β))]]) } Other Scala examples (source code examples)Here is a short list of links related to this Scala ProductTest.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.