* @brief Obtain the character at the given index * @param index * @retval char * @note If index is invalid, returns NUL \0 */
| 560 | * @note If index is invalid, returns NUL \0 |
| 561 | */ |
| 562 | char charAt(size_t index) const |
| 563 | { |
| 564 | return operator[](index); |
| 565 | } |
| 566 | |
| 567 | /** |
| 568 | * @brief Sets the character at a given index |
no outgoing calls
no test coverage detected