* Tries to split string in two parts using given delimiter character. * Searches for the delimiter, scanning string from the end. * 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 first par
| 220 | * @returns Whether the split was actually performed. |
| 221 | */ |
| 222 | inline bool TryRSplit(TCharType delim, TdSelf& l, TdSelf& r) const noexcept { |
| 223 | return TrySplitOn(TBase::rfind(delim), l, r); |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | * Tries to split string in two parts using given delimiter sequence. |
no test coverage detected