|
Scala example source code file (CompositionTest.scala)
The CompositionTest.scala Scala example source codepackage scalaz import std.AllInstances._ import scalaz.scalacheck.ScalazProperties._ import scalaz.scalacheck.ScalazArbitrary._ object CompositionTest extends SpecLite { type OptionList[α] = Option[List[α]] implicit val optionListApplicative = ApplicativePlus[Option].compose[List] implicit val optionListTraverse = Traverse[Option].compose[List] implicit val oneAndOptNelTraverse = Traverse1[OneAnd[Option, ?]].compose[NonEmptyList] checkAll(applicative.laws[OptionList]) checkAll(plusEmpty.laws[OptionList]) checkAll(traverse.laws[OptionList]) checkAll(traverse1.laws[λ[α => OneAnd[Option, NonEmptyList[α]]]]) implicit val eitherTuple2 = Bitraverse[Either].compose[Tuple2] checkAll(bitraverse.laws[λ[(α, β) => Either[(α, β), (α, β)]]]) implicit val listEitherBitraverse = Traverse[List].bicompose[Either] checkAll(bitraverse.laws[λ[(α, β) => List[Either[α, β]]]]) } Other Scala examples (source code examples)Here is a short list of links related to this Scala CompositionTest.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.