Time.fromCenturies constructor

Time.fromCenturies(
  1. Rational centuries
)

Creates a Time representing the specified number of centuries.

Implementation

factory Time.fromCenturies(Rational centuries) =>
    Time.fromUnits(TimeUnit.century, centuries);