Skip to content

Commit

Permalink
Prefer using core to std for the same reason as previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ten0 committed Jun 2, 2024
1 parent 39f1fc9 commit 285d494
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/groupbylazy.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use alloc::vec::{self, Vec};
use std::cell::{Cell, RefCell};
use std::ops::Deref;
use alloc::rc::Rc;
use alloc::vec::{self, Vec};
use core::cell::{Cell, RefCell};
use core::ops::Deref;

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

0 comments on commit 285d494

Please sign in to comment.