(slice: &'a [T], sep: &'static str)
| 53 | } |
| 54 | |
| 55 | pub fn separated<'a, T>(slice: &'a [T], sep: &'static str) -> DisplaySeparated<'a, T> |
| 56 | where |
| 57 | T: AstDisplay, |
| 58 | { |
| 59 | DisplaySeparated { slice, sep } |
| 60 | } |
| 61 | |
| 62 | pub fn comma_separated<T>(slice: &[T]) -> DisplaySeparated<'_, T> |
| 63 | where |
no outgoing calls
no test coverage detected