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

Scala example source code file (bug2800.scala)

This example Scala source code file (bug2800.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

any, any, array, array, list, list, nil, nil, test, unit

The Scala bug2800.scala source code

object Test {
  def f1 = ("": Any) match { case List(x @ _*) => x ; case _ => false }
  def f2 = (5: Any) match { case List(x @ _*) => x ; case _ => false }
  def f3 = (Nil: Any) match { case List(x @ _*) => x ; case _ => false }
  def f4 = (Array(1): Any) match { case List(x @ _*) => x ; case _ => false }
  
  def f5 = ("": Any) match { case Array(x @ _*) => x ; case _ => false }
  def f6 = (5: Any) match { case Array(x @ _*) => x ; case _ => false }
  def f7 = (Nil: Any) match { case Array(x @ _*) => x ; case _ => false }
  def f8 = (Array(1): Any) match { case Array(x @ _*) => x ; case _ => false }
  
  def f9 = ("": Any) match { case x @ List(_*) => x ; case _ => false }
  def f10 = ("": Any) match { case List(_*) => true ; case _ => false }
  def f11 = (Nil: Any) match { case List(_*) => true ; case _ => false }
  def f12 = ("": Any) match { case x @ Array(_*) => x ; case _ => false }
  def f13 = ("": Any) match { case Array(_*) => true ; case _ => false }
  def f14 = (Nil: Any) match { case Array(_*) => true ; case _ => false }
  
  
  def main(args: Array[String]): Unit = {
    println(f1)
    println(f2)
    println(f3)
    println(f4)
    println(f5)
    println(f6)
    println(f7)
    println(f8)
    println(f9)
    println(f10)
    println(f11)
    println(f12)
    println(f13)
    println(f14)
  }
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala bug2800.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.