|
Scala example source code file (bug3518.scala)
The Scala bug3518.scala source codeobject Test { val r1 = 1.0 to 10.0 by 0.5 val r2 = 1.0 to 1.0 by 1.0 val r3 = 10.0 to 1.0 by -0.5 val r4 = 1.0 until 1.0 by 1.0 val r5 = 1 to 100 by 2 def main(args: Array[String]): Unit = { assert(r3 forall (r1 contains _)) assert(r1 forall (r3 contains _)) assert(r2.size == 1) assert(r4.isEmpty) assert(List(1,3,5,97,99) forall (r5 contains _)) assert(List(2,4,6,98,100) forall (x => !r5.contains(x))) } } Other Scala examples (source code examples)Here is a short list of links related to this Scala bug3518.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.