mirror of
https://github.com/taglib/taglib.git
synced 2025-11-17 07:02:53 -05:00
Add some notes about ByteVector::isNull() and ByteVector::null.
This commit is contained in:
@ -261,7 +261,9 @@ namespace TagLib {
|
||||
/*!
|
||||
* Returns true if the vector is null.
|
||||
*
|
||||
* \note A vector may be empty without being null.
|
||||
* \note A vector may be empty without being null. So do not use this
|
||||
* method to check if the vector is empty.
|
||||
*
|
||||
* \see isEmpty()
|
||||
*/
|
||||
bool isNull() const;
|
||||
@ -565,6 +567,9 @@ namespace TagLib {
|
||||
/*!
|
||||
* A static, empty ByteVector which is convenient and fast (since returning
|
||||
* an empty or "null" value does not require instantiating a new ByteVector).
|
||||
*
|
||||
* \warning Do not modify this variable. It will mess up the internal state
|
||||
* of TagLib.
|
||||
*/
|
||||
static ByteVector null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user