On Thursday, 20 February 2014 at 19:11:55 UTC, Cooler wrote: > The code: > > string s = "..."; > if(s.isNumeric){ > auto x = parse!int(s); // Can I be sure here that parse will > not throw? > } No. s may still contain data that is not convertible to int. For example, "nan".