view dmd/Complex.d @ 157:b7b61140701d

* added all missing default cases in switch statements + Lexer.getDocComment + Lexer.combineComments
author trass3r
date Thu, 16 Sep 2010 01:34:10 +0200
parents 9e39c7de8438
children
line wrap: on
line source

module dmd.Complex;

struct Complex(T)
{
	T re;
	T im;
	
	public static const Complex zero = Complex(0, 0);
}