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

Scala example source code file (typealiases.scala)

This example Scala source code file (typealiases.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, check, check, int, int, mypair, mypair, pair, s, short, t, test, unit

The Scala typealiases.scala source code

package 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

 

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.