Measurement

extension Measurement
extension Measurement where UnitType: Dimension
  • tt

    Returns a decorator that provides additional methods

    Declaration

    Swift

    public var tt: MeasurementDecorator<UnitType> { get }
  • tt

    Returns the type of decorator that provides additional static methods

    Declaration

    Swift

    public static var tt: MeasurementDecorator<UnitType>.Type { get }

Available where UnitType: Dimension

  • It should not conflict with other libs extensions since the right part is a decorator.

    Declaration

    Swift

    public static func += (left: inout Measurement<UnitType>, right: MeasurementDecorator<UnitType>)
  • It should not conflict with other libs extensions since the right part is a decorator.

    Declaration

    Swift

    public static func -= (left: inout Measurement<UnitType>, right: MeasurementDecorator<UnitType>)