Returns true if the argument is a closing character.
| 820 | |
| 821 | // Returns true if the argument is a closing character. |
| 822 | bool IsClosing(char c) const { |
| 823 | return valid_closing_[static_cast<unsigned char>(c)]; |
| 824 | } |
| 825 | |
| 826 | private: |
| 827 | // Maps an opening character to its closing. If the entry contains 0, |
no outgoing calls
no test coverage detected