Skip to content

Commit 285d494

Browse files
committed
Prefer using core to std for the same reason as previous commit
1 parent 39f1fc9 commit 285d494

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/groupbylazy.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
use alloc::vec::{self, Vec};
2-
use std::cell::{Cell, RefCell};
3-
use std::ops::Deref;
41
use alloc::rc::Rc;
2+
use alloc::vec::{self, Vec};
3+
use core::cell::{Cell, RefCell};
4+
use core::ops::Deref;
55

66
/// A trait to unify `FnMut` for `ChunkBy` with the chunk key in `IntoChunks`
77
trait KeyFunction<A> {

0 commit comments

Comments
 (0)