true if the value is a time of day, false otherwise.bool isTime() @property const nothrow @nogc pure @safeCheck if this var holds a TimeOfDay value.
More readable alternative to v.type == var.Type.TIME.
true if the value is a time of day, false otherwise.var t = TimeOfDay(14, 30, 0);
assert(t.isTime);
var i = 143000;
assert(!i.isTime);