|
Scala example source code file (unapplySeq.scala)
The Scala unapplySeq.scala source codeobject FooSeq { def unapplySeq(x:Any): Option[Product2[Int,Seq[String]]] = { if(x.isInstanceOf[Bar]) { val y = x.asInstanceOf[Bar] Some(y.size, y.name) } else None } def main(args:Array[String]) = { val b = new Bar b match { case FooSeq(s:Int,_,n:String) => Console.println("size "+s+" name "+n) } b.size = 54 b.name = List("large","L") b match { case FooSeq(s:Int,_,n:String) => Console.println("size "+s+" name "+n) } } } class Bar { var size: Int = 50 var name: Seq[String] = List("medium","M") } Other Scala examples (source code examples)Here is a short list of links related to this Scala unapplySeq.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.