We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db009fa commit 40dd300Copy full SHA for 40dd300
.vscode/settings.json
@@ -0,0 +1,6 @@
1
+{
2
+ "cSpell.words": [
3
+ "clippy",
4
+ "thiserror"
5
+ ]
6
+}
src/decoder.rs
@@ -102,7 +102,7 @@ where
102
/// Return an iterator over the decoded symbols.
103
///
104
/// The iterator will continue returning symbols until EOF is reached
105
- pub fn decode_all(&mut self) -> DecodeIter<M, R> {
+ pub const fn decode_all(&mut self) -> DecodeIter<M, R> {
106
DecodeIter { decoder: self }
107
}
108
0 commit comments