Example #1
0
int main()
{
    DList<int> list;
    int array[BUFF] = {1,3,2,4,7,5,6,9,0,8};

    for(const auto &i : array)
		list.push_back(i);
    list.print();
    return 0;
}
Example #2
0
    // helper to print the cache
	void print(){
        entries->print();
	}