alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (NonEmptyListTestJVM.scala)

This example Scala source code file (NonEmptyListTestJVM.scala) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Scala by Example" TM.

Learn more about this Scala project at its project page.

Java - Scala tags/keywords

nonemptylisttestjvm, speclite

The NonEmptyListTestJVM.scala Scala example source code

package 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

 

new blog posts

 

Copyright 1998-2021 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.