summaryrefslogtreecommitdiff
path: root/test/files/run/scan.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/scan.scala')
-rw-r--r--test/files/run/scan.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/run/scan.scala b/test/files/run/scan.scala
index f056c77ba1..47e0a7d976 100644
--- a/test/files/run/scan.scala
+++ b/test/files/run/scan.scala
@@ -6,17 +6,17 @@ object Test {
def main(args: Array[String]) {
val lst = List(1, 2, 3, 4, 5)
-
+
assert(lst.scanLeft(0)(_ + _) == List(0, 1, 3, 6, 10, 15))
assert(lst.scanRight(0)(_ + _) == List(15, 14, 12, 9, 5, 0))
-
+
val emp = List[Int]()
assert(emp.scanLeft(0)(_ + _) == List(0))
assert(emp.scanRight(0)(_ + _) == List(0))
-
+
val stream = Stream(1, 2, 3, 4, 5)
assert(stream.scanLeft(0)(_ + _) == Stream(0, 1, 3, 6, 10, 15))
-
+
assert(Stream.from(1).scanLeft(0)(_ + _).take(5) == Stream(0, 1, 3, 6, 10))
}