view dmd/Complex.d @ 94:3a0b150c9841

Objects -> Vector!Object iteration 1
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Mon, 30 Aug 2010 23:00:34 +0100
parents 10317f0c89a5
children 9e39c7de8438
line wrap: on
line source

module dmd.Complex;

struct Complex(T)
{
	T re;
	T im;
}