The OpenD Programming Language

Timestamp.fractionExponent

Fraction

The fractionExponent and fractionCoefficient denote the fractional seconds of the timestamp as a decimal value The fractional seconds’ value is coefficient * 10 ^ exponent. It must be greater than or equal to zero and less than 1. A missing coefficient defaults to zero. Fractions whose coefficient is zero and exponent is greater than -1 are ignored.

'fractionCoefficient' allowed values are [0 ... 10^12-1]. 'fractionExponent' allowed values are [-12 ... 0].

Note: the fields are implemented as property.

struct Timestamp
version(D_Ddoc)
byte fractionExponent;

Meta