Time.fromFortnights constructor

Time.fromFortnights(
  1. Rational fortnights
)

Creates a Time representing the specified number of fortnights.

Implementation

factory Time.fromFortnights(Rational fortnights) =>
    Time.fromUnits(TimeUnit.fortnight, fortnights);