Fix formatting: ./x.py fmt

This commit is contained in:
Phoebe Bell 2020-01-16 18:50:53 -08:00
parent c103c284b9
commit 0f2ee495e9

View File

@ -3829,9 +3829,7 @@ pub fn trim_matches<'a, P>(&'a self, pat: P) -> &'a str
j = b;
}
// SAFETY: `Searcher` is known to return valid indices.
unsafe {
self.get_unchecked(i..j)
}
unsafe { self.get_unchecked(i..j) }
}
/// Returns a string slice with all prefixes that match a pattern
@ -3868,9 +3866,7 @@ pub fn trim_start_matches<'a, P: Pattern<'a>>(&'a self, pat: P) -> &'a str {
i = a;
}
// SAFETY: `Searcher` is known to return valid indices.
unsafe {
self.get_unchecked(i..self.len())
}
unsafe { self.get_unchecked(i..self.len()) }
}
/// Returns a string slice with the prefix removed.
@ -3902,9 +3898,7 @@ pub fn strip_prefix<'a, P: Pattern<'a>>(&'a self, prefix: P) -> Option<&'a str>
must include the first character"
);
// SAFETY: `Searcher` is known to return valid indices.
unsafe {
Some(self.get_unchecked(len..))
}
unsafe { Some(self.get_unchecked(len..)) }
} else {
None
}
@ -3943,9 +3937,7 @@ pub fn strip_suffix<'a, P>(&'a self, suffix: P) -> Option<&'a str>
must include the last character"
);
// SAFETY: `Searcher` is known to return valid indices.
unsafe {
Some(self.get_unchecked(..start))
}
unsafe { Some(self.get_unchecked(..start)) }
} else {
None
}
@ -3994,9 +3986,7 @@ pub fn trim_end_matches<'a, P>(&'a self, pat: P) -> &'a str
j = b;
}
// SAFETY: `Searcher` is known to return valid indices.
unsafe {
self.get_unchecked(0..j)
}
unsafe { self.get_unchecked(0..j) }
}
/// Returns a string slice with all prefixes that match a pattern