Skip to content

Commit 51a94c5

Browse files
Speedy37cuviper
authored andcommitted
replace std::slice::x to core::slice::x
1 parent a00278b commit 51a94c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/biguint.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2352,7 +2352,7 @@ impl<'a> ExactSizeIterator for IterU32Digits<'a> {
23522352

23532353
#[cfg(not(u64_digit))]
23542354
pub struct IterU32Digits<'a> {
2355-
it: std::slice::Iter<'a, u32>,
2355+
it: core::slice::Iter<'a, u32>,
23562356
}
23572357
#[cfg(not(u64_digit))]
23582358
impl<'a> IterU32Digits<'a> {
@@ -2394,7 +2394,7 @@ impl<'a> FusedIterator for IterU32Digits<'a> {}
23942394

23952395
#[cfg(not(u64_digit))]
23962396
pub struct IterU64Digits<'a> {
2397-
it: std::slice::Chunks<'a, u32>,
2397+
it: core::slice::Chunks<'a, u32>,
23982398
}
23992399
#[cfg(not(u64_digit))]
24002400
impl<'a> IterU64Digits<'a> {
@@ -2443,7 +2443,7 @@ impl<'a> ExactSizeIterator for IterU64Digits<'a> {
24432443

24442444
#[cfg(u64_digit)]
24452445
pub struct IterU64Digits<'a> {
2446-
it: std::slice::Iter<'a, u64>,
2446+
it: core::slice::Iter<'a, u64>,
24472447
}
24482448
#[cfg(u64_digit)]
24492449
impl<'a> IterU64Digits<'a> {

0 commit comments

Comments
 (0)