fractionalSecondOfMinute

Parse a fractional second of the minute.

The number of whole seconds will be associated with DateTimeField.SECOND_OF_MINUTE while any fractional part will be associated with DateTimeField.NANOSECOND_OF_SECOND. The decimal separator character will be determined by the DateTimeParserSettings.

inline fun DateTimeParserBuilder.fractionalSecondOfMinute(wholeLength: IntRange, fractionLength: IntRange, fractionScale: Int, crossinline builder: DecimalNumberParserBuilder.() -> Unit)

Parse a fractional second of the minute with a fixed number of characters representing the whole second.

The number of whole seconds will be associated with DateTimeField.SECOND_OF_MINUTE while any fractional part will be associated with DateTimeField.NANOSECOND_OF_SECOND. The decimal separator character will be determined by the DateTimeParserSettings.

inline fun DateTimeParserBuilder.fractionalSecondOfMinute(wholeLength: Int, fractionLength: IntRange, fractionScale: Int, crossinline builder: DecimalNumberParserBuilder.() -> Unit)