On 2016-01-15 11:16, Warwick wrote: > I though C style casts were not supported? But when I accidentaly did > > int i; > if (uint(i) < length) .... > > it compiled and worked fine. Whys that? Wouldn't a C style cast be: int i; if ((uint)i < length) ? -- /Jacob Carlborg