Skip to content

Commit 9d83b01

Browse files
committed
Use chunks_exact()
This is a small code optimisation that doesn't really make much of a difference. Signed-off-by: Uli Schlachter <psychon@znc.in>
1 parent 971f926 commit 9d83b01

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/parser.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,7 @@ fn parse_img(i: &mut impl Read) -> IoResult<Image> {
124124
fn rgba_to_argb(i: &[u8]) -> Vec<u8> {
125125
let mut res = Vec::with_capacity(i.len());
126126

127-
for rgba in i.chunks(4) {
128-
if rgba.len() < 4 {
129-
break;
130-
}
131-
127+
for rgba in i.chunks_exact(4) {
132128
res.push(rgba[3]);
133129
res.push(rgba[0]);
134130
res.push(rgba[1]);

0 commit comments

Comments
 (0)