Began implementing a block-allocating Deque class similar to C++'s std::deque - insertion and removal at both ends already working

git-svn-id: file:///srv/devel/repo-conversion/nusu@158 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2009-07-10 18:42:23 +00:00
parent 74bf351727
commit ff44edcdf1
6 changed files with 356 additions and 4 deletions

View file

@ -18,11 +18,11 @@ License along with this library
*/
#endregion
#if UNITTEST
using System;
using System.Collections.Generic;
#if UNITTEST
using NUnit.Framework;
using NMock2;