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
We have several decode_as methods which currently take a reader: &mut impl Reader, algorithm: Algorithm in that order. Most of these are unreleased outside of prereleases (KeypairData::decode_as is the only one in the stable public API).
I'm wondering if this ordering should be reversed so the algorithm comes first, and it reads as decode_as(algorithm, ... rather than decode_as(reader, ...
We have several
decode_as
methods which currently take areader: &mut impl Reader, algorithm: Algorithm
in that order. Most of these are unreleased outside of prereleases (KeypairData::decode_as
is the only one in the stable public API).I'm wondering if this ordering should be reversed so the algorithm comes first, and it reads as
decode_as(algorithm, ...
rather thandecode_as(reader, ...
cc @baloo
The text was updated successfully, but these errors were encountered: