Use slice::split_first instead of manuall slicing

This commit is contained in:
Lzu Tao 2021-01-20 01:33:38 +00:00
parent c5a96fb797
commit 6b66749e17
1 changed files with 2 additions and 2 deletions

View File

@ -1610,9 +1610,9 @@ impl fmt::Display for Ipv6Addr {
/// Write a colon-separated part of the address
#[inline]
fn fmt_subslice(f: &mut fmt::Formatter<'_>, chunk: &[u16]) -> fmt::Result {
if let Some(first) = chunk.first() {
if let Some((first, tail)) = chunk.split_first() {
fmt::LowerHex::fmt(first, f)?;
for segment in &chunk[1..] {
for segment in tail {
f.write_char(':')?;
fmt::LowerHex::fmt(segment, f)?;
}