Gets size of node value, not including terminator character. This function works correctly irrespective of whether value is or is not zero terminated. \return Size of node value, in characters.
| 698 | //! This function works correctly irrespective of whether value is or is not zero terminated. |
| 699 | //! \return Size of node value, in characters. |
| 700 | std::size_t value_size() const |
| 701 | { |
| 702 | return m_value ? m_value_size : 0; |
| 703 | } |
| 704 | |
| 705 | /////////////////////////////////////////////////////////////////////////// |
| 706 | // Node modification |
no outgoing calls
no test coverage detected