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
`SwitchSources` is a hashmap containing `SmallVec<[Option<u128>; 1]>`
elements. Each `SmallVec` has a predictable form: N `Some` elements
followed by a single `None` element.
This commit removes the trailing `None` element, changes the
`Option<u128>` to `u128`, and adjusts the single `switch_sources`
callsite to account for this (by adding a single unrolled loop iteration
for the elided `None` element, which simplifies down to a single
`propagate` call).
0 commit comments