secondFractions property

List<int> secondFractions
final

The fractions of the second as numbers from 0 to 999.

The first entry are is the millisecond, the second entry is the microsecond, the third entry is the nanosecond and so on. There are no getters for more than nanosecond precision but a TomlPartialTime can represent fractions of a second of arbitrary precision.

Two otherwise equal TomlPartialTime values are not considered equal if their secondFractions differ in the number of trailing zeros. For example, the time TomlPartialTime(20, 17, 40) is not equal to the value TomlPartialTime(20, 17, 40, [0]),

Implementation

final List<int> secondFractions;