Minute

public struct Minute : NumericType, CustomStringConvertible

The Minute is a number representing an Earth minute.

  • The Minute value

    Declaration

    Swift

    public let value: Double
  • Returns a Minute struct initialized to contain the given value.

    Declaration

    Swift

    public init(_ value: Double)

    Parameters

    value

    The value for the new Minute.

  • Transform the current Minute value into Days.

    Declaration

    Swift

    public var inDays: Day { get }
  • Transform the current Minute value into Hours.

    Declaration

    Swift

    public var inHours: Hour { get }
  • Transform the current Minute value into Seconds.

    Declaration

    Swift

    public var inSeconds: Second { get }
  • Transform the current Minute value into Julian Days (convenient for easily making operations with Julian Day fractions).

    Declaration

    Swift

    public var inJulianDays: JulianDay { get }
  • Returns a Minute whose value is reduced to the 0..<60 range.

    Declaration

    Swift

    public var reduced: Minute { get }
  • The standard description of the Hour

    Declaration

    Swift

    public var description: String { get }