You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Compare two measurements of the same `Dimension`.
115
-
///
116
-
/// If `lhs.unit == rhs.unit`, returns `lhs.value == rhs.value`. Otherwise, converts `rhs` to the same unit as `lhs` and then compares the resulting values.
117
-
/// - returns: `true` if the measurements are equal.
/// Compare two measurements of the same `Dimension`.
128
-
///
129
-
/// If `lhs.unit == rhs.unit`, returns `lhs.value < rhs.value`. Otherwise, converts `rhs` to the same unit as `lhs` and then compares the resulting values.
130
-
/// - returns: `true` if `lhs` is less than `rhs`.
/// Compare two measurements of the same `Dimension`.
141
-
///
142
-
/// If `lhs.unit == rhs.unit`, returns `lhs.value > rhs.value`. Otherwise, converts `rhs` to the same unit as `lhs` and then compares the resulting values.
143
-
/// - returns: `true` if `lhs` is greater than `rhs`.
/// Compare two measurements of the same `Dimension`.
154
-
///
155
-
/// If `lhs.unit == rhs.unit`, returns `lhs.value < rhs.value`. Otherwise, converts `rhs` to the same unit as `lhs` and then compares the resulting values.
156
-
/// - returns: `true` if `lhs` is less than or equal to `rhs`.
/// Compare two measurements of the same `Dimension`.
167
-
///
168
-
/// If `lhs.unit == rhs.unit`, returns `lhs.value >= rhs.value`. Otherwise, converts `rhs` to the same unit as `lhs` and then compares the resulting values.
169
-
/// - returns: `true` if `lhs` is greater or equal to `rhs`.
/// Compare two measurements of the same `Dimension`.
164
+
///
165
+
/// If `lhs.unit == rhs.unit`, returns `lhs.value == rhs.value`. Otherwise, converts `rhs` to the same unit as `lhs` and then compares the resulting values.
166
+
/// - returns: `true` if the measurements are equal.
0 commit comments