|
Scala example source code file (typealiases.scala)
The Scala typealiases.scala source codepackage foo trait Test[T] { type Check[T] = Array[T] => Unit; type MyPair[S] = (T, S) val pair1: (T, Int) val pair: MyPair[Int] = pair1 def check(xs: Array[T], c: Check[T]) = c(xs) def check2[S](xs: Array[S], c: Check[S]) = c(xs) } object main extends Test[Int] { val pair1 = (1,1) implicit def topair(x: Int): Pair[Int, Int] = (x,x) val pair2: MyPair[Int] = 1 val x: Short = 1 } Other Scala examples (source code examples)Here is a short list of links related to this Scala typealiases.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.