
-----------------------------------
wtd
Fri Feb 13, 2004 10:21 pm

advcmp.h - Advanced Comparisons of lists and vectors
-----------------------------------
The attached library works like so:

#include 
#include 
#include 
#include "advcmp.h"

int main()
{
    using namespace advcmp;
    using namespace std;

    list l;
    l.push_back(1);
    l.push_back(1);
    l.push_back(1);

    vector j;
    j.push_back(1);
    j.push_back(2);

    int a[] = { 0, 1, 2, 3, 4 };

    if (all(l) != all(j) && all(l) == one(5, a))
        cout 