alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (slice-strings.scala)

This example Scala source code file (slice-strings.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

array, array, string, string, test, test, unit, unit

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

 

new blog posts

 

Copyright 1998-2021 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.