├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DONATIONS.md ├── LICENSE.md ├── README.md └── src ├── AutomatedTest.All ├── AutomatedTest.All.csproj └── Program.cs ├── AutomatedTest.PersistentDictionary ├── AutomatedTest.PersistentDictionary.csproj └── Program.cs ├── AutomatedTest.PersistentList ├── AutomatedTest.PersistentList.csproj └── Program.cs ├── AutomatedTest.PersistentQueue ├── AutomatedTest.PersistentQueue.csproj └── Program.cs ├── AutomatedTest.PersistentStack ├── AutomatedTest.PersistentStack.csproj └── Program.cs ├── PersistentCollection.sln ├── PersistentCollection ├── Assets │ ├── icon.ico │ └── icon.png ├── PersistentCollection.csproj ├── PersistentDictionary.cs ├── PersistentList.cs ├── PersistentQueue.cs ├── PersistentQueue.xml └── PersistentStack.cs ├── Test.Dictionary ├── Program.cs └── Test.Dictionary.csproj ├── Test.List ├── Program.cs └── Test.List.csproj ├── Test.Queue ├── Program.cs └── Test.Queue.csproj └── Test.Stack ├── Program.cs └── Test.Stack.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DONATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/DONATIONS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/README.md -------------------------------------------------------------------------------- /src/AutomatedTest.All/AutomatedTest.All.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/AutomatedTest.All/AutomatedTest.All.csproj -------------------------------------------------------------------------------- /src/AutomatedTest.All/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/AutomatedTest.All/Program.cs -------------------------------------------------------------------------------- /src/AutomatedTest.PersistentDictionary/AutomatedTest.PersistentDictionary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/AutomatedTest.PersistentDictionary/AutomatedTest.PersistentDictionary.csproj -------------------------------------------------------------------------------- /src/AutomatedTest.PersistentDictionary/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/AutomatedTest.PersistentDictionary/Program.cs -------------------------------------------------------------------------------- /src/AutomatedTest.PersistentList/AutomatedTest.PersistentList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/AutomatedTest.PersistentList/AutomatedTest.PersistentList.csproj -------------------------------------------------------------------------------- /src/AutomatedTest.PersistentList/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/AutomatedTest.PersistentList/Program.cs -------------------------------------------------------------------------------- /src/AutomatedTest.PersistentQueue/AutomatedTest.PersistentQueue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/AutomatedTest.PersistentQueue/AutomatedTest.PersistentQueue.csproj -------------------------------------------------------------------------------- /src/AutomatedTest.PersistentQueue/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/AutomatedTest.PersistentQueue/Program.cs -------------------------------------------------------------------------------- /src/AutomatedTest.PersistentStack/AutomatedTest.PersistentStack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/AutomatedTest.PersistentStack/AutomatedTest.PersistentStack.csproj -------------------------------------------------------------------------------- /src/AutomatedTest.PersistentStack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/AutomatedTest.PersistentStack/Program.cs -------------------------------------------------------------------------------- /src/PersistentCollection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/PersistentCollection.sln -------------------------------------------------------------------------------- /src/PersistentCollection/Assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/PersistentCollection/Assets/icon.ico -------------------------------------------------------------------------------- /src/PersistentCollection/Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/PersistentCollection/Assets/icon.png -------------------------------------------------------------------------------- /src/PersistentCollection/PersistentCollection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/PersistentCollection/PersistentCollection.csproj -------------------------------------------------------------------------------- /src/PersistentCollection/PersistentDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/PersistentCollection/PersistentDictionary.cs -------------------------------------------------------------------------------- /src/PersistentCollection/PersistentList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/PersistentCollection/PersistentList.cs -------------------------------------------------------------------------------- /src/PersistentCollection/PersistentQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/PersistentCollection/PersistentQueue.cs -------------------------------------------------------------------------------- /src/PersistentCollection/PersistentQueue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/PersistentCollection/PersistentQueue.xml -------------------------------------------------------------------------------- /src/PersistentCollection/PersistentStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/PersistentCollection/PersistentStack.cs -------------------------------------------------------------------------------- /src/Test.Dictionary/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/Test.Dictionary/Program.cs -------------------------------------------------------------------------------- /src/Test.Dictionary/Test.Dictionary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/Test.Dictionary/Test.Dictionary.csproj -------------------------------------------------------------------------------- /src/Test.List/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/Test.List/Program.cs -------------------------------------------------------------------------------- /src/Test.List/Test.List.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/Test.List/Test.List.csproj -------------------------------------------------------------------------------- /src/Test.Queue/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/Test.Queue/Program.cs -------------------------------------------------------------------------------- /src/Test.Queue/Test.Queue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/Test.Queue/Test.Queue.csproj -------------------------------------------------------------------------------- /src/Test.Stack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/Test.Stack/Program.cs -------------------------------------------------------------------------------- /src/Test.Stack/Test.Stack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristn/PersistentCollection/HEAD/src/Test.Stack/Test.Stack.csproj --------------------------------------------------------------------------------