calculate duration.
immutable t1 = Timestamp(1000); immutable t2 = Timestamp(500); assert(t1 - t2 == hnsecs(500)); assert(t2 - t1 == hnsecs(-500));
See Implementation
calculate duration.