annotate dmd/Complex.d @ 137:09c858522d55

merge
author Trass3r
date Mon, 13 Sep 2010 23:29:00 +0200
parents 9e39c7de8438
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
1 module dmd.Complex;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
2
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
3 struct Complex(T)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
4 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
5 T re;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
6 T im;
123
9e39c7de8438 Make dmd test suite compile
korDen
parents: 0
diff changeset
7
9e39c7de8438 Make dmd test suite compile
korDen
parents: 0
diff changeset
8 public static const Complex zero = Complex(0, 0);
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
9 }