TypeScript/tests/cases/compiler/genericClasses4.ts

17 lines
480 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// once caused stack overflow
class Vec2_T<A>
{
constructor(public x: A, public y: A) { }
fmap<B>(f: (a: A) => B): Vec2_T<B> {
var x:B = f(this.x);
var y:B = f(this.y);
var retval: Vec2_T<B> = new Vec2_T(x, y);
return retval;
}
apply<B>(f: Vec2_T<(a: A) => B>): Vec2_T<B> {
var x:B = f.x(this.x);
var y:B = f.y(this.y);
var retval: Vec2_T<B> = new Vec2_T(x, y);
return retval;
}
}