summaryrefslogtreecommitdiff
path: root/test/files/run/slice-strings.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-07-14 08:00:03 +0000
committerPaul Phillips <paulp@improving.org>2010-07-14 08:00:03 +0000
commit0661398cebda25f3a775e1b2e356125859e2b37c (patch)
tree2e7ff114db3b0573fff5cf0340aa058e4100ff6a /test/files/run/slice-strings.scala
parent78d96afa56e51c7ef2ed317ca96b4c4e345ba105 (diff)
downloadscala-0661398cebda25f3a775e1b2e356125859e2b37c.tar.gz
scala-0661398cebda25f3a775e1b2e356125859e2b37c.tar.bz2
scala-0661398cebda25f3a775e1b2e356125859e2b37c.zip
Moved the burden of forgivingness for string sl...
Moved the burden of forgivingness for string slices into StringOps where it belongs. Review by odersky.
Diffstat (limited to 'test/files/run/slice-strings.scala')
-rw-r--r--test/files/run/slice-strings.scala19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/files/run/slice-strings.scala b/test/files/run/slice-strings.scala
new file mode 100644
index 0000000000..129314387a
--- /dev/null
+++ b/test/files/run/slice-strings.scala
@@ -0,0 +1,19 @@
+object Test {
+ def cmp(x1: String) = {
+ val x2 = x1.toList
+
+ -10 to 10 foreach { i =>
+ assert(x1.take(i) == x2.take(i).mkString)
+ assert(x1.drop(i) == x2.drop(i).mkString)
+ assert(x1.takeRight(i) == x2.takeRight(i).mkString)
+ assert(x1.dropRight(i) == x2.dropRight(i).mkString)
+ }
+ for (idx1 <- -3 to 3 ; idx2 <- -3 to 3) {
+ assert(x1.slice(idx1, idx2) == x2.slice(idx1, idx2).mkString)
+ }
+ }
+
+ def main(args: Array[String]): Unit = {
+ cmp("abcde")
+ }
+}