Introduce string-based mono expr tests

This commit is contained in:
Richard Feldman 2024-11-16 18:31:32 -05:00
parent 03370da6d6
commit 219a0398a2
No known key found for this signature in database
GPG key ID: DAC334802F365236
7 changed files with 207 additions and 24 deletions

View file

@ -247,6 +247,10 @@ impl<T> NonEmptySlice<T> {
},
}
}
pub fn as_slice(&self) -> Slice<T> {
self.inner
}
}
impl<T> IntoIterator for NonEmptySlice<T> {