Skip to content

Instantly share code, notes, and snippets.

@hadronized
Created September 18, 2011 14:57
Show Gist options
  • Save hadronized/1225141 to your computer and use it in GitHub Desktop.
Save hadronized/1225141 to your computer and use it in GitHub Desktop.
class foo(T, uint N) if (N <= 4) {
private T[N] _co; /* coordinates */
this(A...)(A args) {
writefln("GOSH");
}
}
void main() {
alias foo!(float, 3) foo3;
auto v = new foo3(8, 9, 9, 3, "test");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment