From ab477e33c3d389a34361e9474848da3d1e57a9fe Mon Sep 17 00:00:00 2001 From: michelou Date: Thu, 11 Oct 2007 12:17:55 +0000 Subject: added method partition to Iterable (#171) --- test/files/run/iterables.check | 3 +++ test/files/run/iterables.scala | 18 +++++++++++++++--- 2 files changed, 18 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/files/run/iterables.check b/test/files/run/iterables.check index 2660f51aa5..aac90b70a9 100644 --- a/test/files/run/iterables.check +++ b/test/files/run/iterables.check @@ -1,2 +1,5 @@ false 0,1,2,3,4,5,6,7,8,9 +5,6,7,8,9 +0,2,4,6,8 +1,3,5,7,9 diff --git a/test/files/run/iterables.scala b/test/files/run/iterables.scala index 7a29b80e8d..5fb587a323 100644 --- a/test/files/run/iterables.scala +++ b/test/files/run/iterables.scala @@ -8,7 +8,19 @@ object Test extends Application { else throw new IndexOutOfBoundsException("empty iterator") } } - val x = new Test(10) - println(x.isEmpty) - println(x.mkString(",")) + { + val x = new Test(10) + println(x.isEmpty) + println(x.mkString(",")) + } + { + val x = new Test(10) + println(x.filter(_ > 4).mkString(",")) + } + { + val x = new Test(10) + val y = x.partition(_ % 2 == 0) + println(y._1.mkString(",")) + println(y._2.mkString(",")) + } } -- cgit v1.2.3