|
Scala example source code file (bug3529.scala)
The Scala bug3529.scala source codeobject Test { def main(args: Array[String]): Unit = { assert(1 to 10 drop 10 isEmpty) assert(1 until 10 drop 9 isEmpty) assert(1 to 10 by 2 drop 5 isEmpty) assert(10 to 1 by -1 drop 10 isEmpty) assert((10 to 1 by -1 drop 9) == Seq(1)) assert((1 to 10 drop 9) == Seq(10)) assert((1 until 10 drop 9) == Nil) assert(Stream(1 to 10).flatten.toList == Stream(1 until 11).flatten.toList) } } Other Scala examples (source code examples)Here is a short list of links related to this Scala bug3529.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.