Check if the separator is empty.
(&self)
| 103 | |
| 104 | /// Check if the separator is empty. |
| 105 | pub fn is_empty(&self) -> bool { |
| 106 | matches!(self, Separator::Custom(v) if v.is_empty()) |
| 107 | } |
| 108 | |
| 109 | /// Find the next occurrence of this separator in the given bytes. |
| 110 | /// |