* Tries to split string in two parts using given delimiter character. * Searches for the delimiter, scanning string from the beginning. * The delimiter is excluded from the result. Both out parameters are * left unmodified if there was no delimiter character in string. * * @param[in] delim Delimiter character. * @param[out] l The fir
| 205 | * @returns Whether the split was actually performed. |
| 206 | */ |
| 207 | inline bool TrySplit(TCharType delim, TdSelf& l, TdSelf& r) const noexcept { |
| 208 | return TrySplitOn(TBase::find(delim), l, r); |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * Tries to split string in two parts using given delimiter character. |
no test coverage detected