|
Scala example source code file (NonEmptyListTestJVM.scala)
The NonEmptyListTestJVM.scala Scala example source codepackage scalaz import std.AllInstances._ object NonEmptyListTestJVM extends SpecLite { "NonEmptyList.foldRight1 large list" in { import NonEmptyList._ import syntax.foldable1._ nel(0, IList.fromList(List.fill(100000)(1))).foldRight1(_ + _) must_== 100000 } "no stack overflow large list traverse" in { import syntax.traverse._ val largeNel = NonEmptyList.nel(0, IList.fromList((1 to 100000).toList)) (largeNel map Option.apply).sequence must_===(Option(largeNel)) } "stack-safety of tails" in { val largeNel = NonEmptyList.nel(0, IList.fill(100000)(0)) largeNel.tails.size must_== 100001 } } Other Scala examples (source code examples)Here is a short list of links related to this Scala NonEmptyListTestJVM.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.