On Thursday, 17 October 2013 at 22:50:22 UTC, ProgrammingGhost wrote:
How do I find out if null was passed in?

try if(v is null) { use default }

if all you care about is if there's contents, I like to use if(v.length) {}

Reply via email to