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
Declare Data.period property is a way compatitible with + operator (#6149)
Cannot use `extension Data` if `period` is going to be used with
`+` operator via leading-dot syntax, for example: `Data(...) + .period`
because `+` is declared as `(Self, Other) -> Self` where
`Other: RangeReplaceableCollection, Other.Element == Self.Element`
which means that `.period` couldn't get `Data` inferred from the first argument.
0 commit comments