<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/4.2.2">
</HEAD>
<BODY>
Whoops I tried typeof(T) == null :)<BR>
<BR>
<BR>
<BR>
Il giorno mer, 11/07/2012 alle 01.02 -0700, Jonathan M Davis ha scritto:
<BLOCKQUOTE TYPE=CITE>
<PRE>
On Wednesday, July 11, 2012 09:59:44 Andrea Fontana wrote:
> Is there a (compile time) way to check if a template param is null?

> static if ( is (T:int) ) ....
> else static if ( is(T:long) ) ....
> // how to check if T == null ?

Check if its type is typeof(null):

is(T == typeof(null))

- Jonathan M Davis
</PRE>
</BLOCKQUOTE>
<BR>
</BODY>
</HTML>