/// True/False, based on whether OTNumLists MATCH in COUNT and CONTENT (NOT ORDER.)
///
bool OTNumList::Verify(const OTNumList & rhs) const
{
    // Verify they have the same number of elements.
    //
    if (this->Count() != rhs.Count())
        return false;
    // -------------------

    // Verify each value on *this is also found on rhs.
    //
    FOR_EACH(std::set<int64_t>, m_setData)
    {
        const int64_t lValue = *it;
        // ----------
        if (false == rhs.Verify(lValue))
            return false;
    }

    return true;
}