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 e1eeb09 commit b0553cfCopy full SHA for b0553cf
.vscode/settings.json
@@ -0,0 +1,6 @@
1
+{
2
+ "cSpell.words": [
3
+ "clippy",
4
+ "thiserror"
5
+ ]
6
+}
src/decoder.rs
@@ -97,7 +97,7 @@ where
97
/// Return an iterator over the decoded symbols.
98
///
99
/// The iterator will continue returning symbols until EOF is reached
100
- pub fn decode_all(&mut self) -> DecodeIter<M, R> {
+ pub const fn decode_all(&mut self) -> DecodeIter<M, R> {
101
DecodeIter { decoder: self }
102
}
103
0 commit comments