* @brief Find the first occurrence of a character from a @p `set`. * @param[in] skip Number of characters to skip before the search. * @warning The behavior is @b undefined if `skip > size()`. */
| 3256 | * @warning The behavior is @b undefined if `skip > size()`. |
| 3257 | */ |
| 3258 | size_type find_first_of(byteset set, size_type skip = 0) const noexcept { return view().find_first_of(set, skip); } |
| 3259 | |
| 3260 | /** |
| 3261 | * @brief Find the first occurrence of a character outside a @p `set`. |
no outgoing calls