libcore => 2018

This commit is contained in:
Taiki Endo
2019-04-15 11:23:21 +09:00
parent 9387927ae2
commit 360432f1e8
79 changed files with 342 additions and 332 deletions

View File

@@ -9,13 +9,13 @@
integer constants",
issue = "27778")]
use borrow::{Borrow, BorrowMut};
use cmp::Ordering;
use convert::TryFrom;
use fmt;
use hash::{Hash, self};
use marker::Unsize;
use slice::{Iter, IterMut};
use crate::borrow::{Borrow, BorrowMut};
use crate::cmp::Ordering;
use crate::convert::TryFrom;
use crate::fmt;
use crate::hash::{Hash, self};
use crate::marker::Unsize;
use crate::slice::{Iter, IterMut};
/// Utility trait implemented only on arrays of fixed size
///