add split_once_infallible string util

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-03 23:12:43 +00:00
parent 4f5c6de853
commit 177c9e8bfa

View file

@ -1,5 +1,13 @@
use crate::Result;
pub const EMPTY: &str = "";
#[inline]
#[must_use]
pub fn split_once_infallible<'a>(input: &'a str, delim: &'_ str) -> (&'a str, &'a str) {
input.split_once(delim).unwrap_or((input, EMPTY))
}
/// Parses the bytes into a string.
#[inline]
pub fn string_from_bytes(bytes: &[u8]) -> Result<String> {