|
Scala example source code file (t3225.scala)
The Scala t3225.scala source code// $Id$ import scala.util.continuations._ object Test { class Bla { val x = 8 def y[T] = 9 } /* def bla[A] = shift { k:(Bla=>A) => k(new Bla) } */ def bla1 = shift { k:(Bla=>Bla) => k(new Bla) } def bla2 = shift { k:(Bla=>Int) => k(new Bla) } def fooA = bla2.x def fooB[T] = bla2.y[T] def testMono() = { println(reset(bla1).x) println(reset(bla2.x)) println(reset(bla2.y[Int])) println(reset(bla2.y)) println(reset(fooA)) println(reset(fooB)) 0 } def blaX[A] = shift { k:(Bla=>A) => k(new Bla) } def fooX[A] = blaX[A].x def fooY[A] = blaX[A].y[A] def testPoly() = { println(reset(blaX[Bla]).x) println(reset(blaX[Int].x)) println(reset(blaX[Int].y[Int])) println(reset(blaX[Int].y)) println(reset(fooX[Int])) println(reset(fooY[Int])) 0 } // TODO: check whether this also applies to a::shift { k => ... } def main(args: Array[String]) = { testMono() testPoly() } } Other Scala examples (source code examples)Here is a short list of links related to this Scala t3225.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.