| 
Scala example source code file (slice-strings.scala)
 The Scala slice-strings.scala source code
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")
  }
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala slice-strings.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.