|
Scala example source code file (FunctorTest.scala)
The FunctorTest.scala Scala example source code
package scalaz
import std.AllInstances._
import std.option.some
import syntax.functor._
import org.scalacheck.Prop.forAll
object FunctorTest extends SpecLite {
"mapply" in {
1.mapply(some((a: Int) => a)) must_===(some(1))
}
"map" in {
(some(1) ∘ (1+)) must_===(some(2))
}
"strength" in {
some(1).strengthL(2) must_===(some((2, 1)))
some(1).strengthR(2) must_===(some((1, 2)))
}
"fpair" in {
some(1).fpair must_===(some((1, 1)))
}
"widen" ! forAll { ola: Option[List[Int]] =>
import std.iterable._
val oia: Option[Iterable[Int]] = ola
ola.widen[Iterable[Int]] must_===(oia)
}
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala FunctorTest.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.