Returns the closing character corresponding to an opening one, or 0 if the argument is not an opening character.
| 43 | // Returns the closing character corresponding to an opening one, |
| 44 | // or 0 if the argument is not an opening character. |
| 45 | char GetClosingChar(char opening) const { |
| 46 | return closing_[static_cast<unsigned char>(opening)]; |
| 47 | } |
| 48 | |
| 49 | // Returns true if the argument is a closing character. |
| 50 | bool IsClosing(char c) const { |
no outgoing calls
no test coverage detected