├── .editorconfig ├── .gitattributes ├── .gitignore ├── .nuget └── packages.config ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE ├── NuGet.Config ├── README.md ├── TunnelVisionLabs.Collections.Trees.Benchmarks ├── App.config ├── DummyBenchmark.cs ├── Immutable │ └── ImmutableTreeListBenchmark.cs ├── MemoryDiagnoserConfig.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── launchSettings.json └── TunnelVisionLabs.Collections.Trees.Benchmarks.csproj ├── TunnelVisionLabs.Collections.Trees.Experimental ├── Properties │ └── AssemblyInfo.cs ├── PublicAPI.Shipped.txt ├── PublicAPI.Unshipped.txt └── TunnelVisionLabs.Collections.Trees.Experimental.csproj ├── TunnelVisionLabs.Collections.Trees.Internal.ruleset ├── TunnelVisionLabs.Collections.Trees.Test ├── AbstractSetTest.cs ├── App.config ├── CollectionAssert.cs ├── EverythingThrowsEnumerableTest.cs ├── EverythingThrowsEnumerable`1.cs ├── ExceptionUtilitiesTest.cs ├── Generator.cs ├── GeneratorTest.cs ├── Immutable │ ├── AbstractImmutableDictionaryTest.cs │ ├── AbstractImmutableSetTest.cs │ ├── FixedArray8Test.cs │ ├── ImmutableSortedTreeDictionaryBuilderTest.cs │ ├── ImmutableSortedTreeDictionaryTest.cs │ ├── ImmutableSortedTreeListBuilderTest.cs │ ├── ImmutableSortedTreeListTest+ForEach.cs │ ├── ImmutableSortedTreeListTest+GetRange.cs │ ├── ImmutableSortedTreeListTest.cs │ ├── ImmutableSortedTreeSetBuilderTest+ImmutableArguments.cs │ ├── ImmutableSortedTreeSetBuilderTest.cs │ ├── ImmutableSortedTreeSetTest.cs │ ├── ImmutableTreeDictionaryBuilderTest.cs │ ├── ImmutableTreeDictionaryTest.cs │ ├── ImmutableTreeListBuilderTest+ForEach.cs │ ├── ImmutableTreeListBuilderTest+GetRange.cs │ ├── ImmutableTreeListBuilderTest.cs │ ├── ImmutableTreeListFactoryTest.cs │ ├── ImmutableTreeListTest+ForEach.cs │ ├── ImmutableTreeListTest+GetRange.cs │ ├── ImmutableTreeListTest.cs │ ├── ImmutableTreeQueueTest.cs │ ├── ImmutableTreeSetBuilderTest+CollidingHashCodes.cs │ ├── ImmutableTreeSetBuilderTest+ImmutableArguments.cs │ ├── ImmutableTreeSetBuilderTest.cs │ ├── ImmutableTreeSetTest.cs │ └── ImmutableTreeStackTest.cs ├── List │ ├── BinarySearch1.cs │ ├── BinarySearch2.cs │ ├── BinarySearch3.cs │ ├── CopyTo1.cs │ ├── CopyTo2.cs │ ├── CopyTo3.cs │ ├── TreeListAdd.cs │ ├── TreeListAddRange.cs │ ├── TreeListClear.cs │ ├── TreeListContains.cs │ ├── TreeListCount.cs │ ├── TreeListCtor1.cs │ ├── TreeListCtor2.cs │ ├── TreeListForEach.cs │ ├── TreeListGetEnumerator.cs │ ├── TreeListGetRange.cs │ ├── TreeListICollectionCopyTo.cs │ ├── TreeListICollectionIsReadOnly.cs │ ├── TreeListICollectionIsSynchronized.cs │ ├── TreeListICollectionSyncRoot.cs │ ├── TreeListIEnumerableGetEnumerator.cs │ ├── TreeListIEnumerableGetEnumerator2.cs │ ├── TreeListIListAdd.cs │ ├── TreeListIListContains.cs │ ├── TreeListIListIndexOf.cs │ ├── TreeListIListInsert.cs │ ├── TreeListIListIsFixedSize.cs │ ├── TreeListIListIsReadOnly.cs │ ├── TreeListIListItem.cs │ ├── TreeListIListRemove.cs │ ├── TreeListIndexOf1.cs │ ├── TreeListIndexOf2.cs │ ├── TreeListIndexOf3.cs │ ├── TreeListInsertRange.cs │ ├── TreeListLastIndexOf1.cs │ ├── TreeListLastIndexOf2.cs │ ├── TreeListLastIndexOf3.cs │ ├── TreeListRemoveAt.cs │ ├── TreeListRemoveRange.cs │ ├── TreeListReverse.cs │ ├── TreeListReverse2.cs │ └── TreeListToArray.cs ├── Properties │ └── AssemblyInfo.cs ├── ReverseComparerTests.cs ├── ReverseComparer`1.cs ├── SortedTreeDictionaryTest.cs ├── SortedTreeListTest.cs ├── SortedTreeSetTest.cs ├── SubsetHashCodeEqualityComparer`1.cs ├── ThrowingTraceListener.cs ├── TreeDictionaryTest.cs ├── TreeListTest.cs ├── TreeQueueTest.cs ├── TreeSetTest.cs ├── TreeSetWithCollidingHashCodesTest.cs ├── TreeSpanTest.cs ├── TreeStackTest.cs ├── TunnelVisionLabs.Collections.Trees.Test.csproj ├── ZeroHashCodeEqualityComparer`1.cs └── packages.config ├── TunnelVisionLabs.Collections.Trees.ruleset ├── TunnelVisionLabs.Collections.Trees ├── ComparisonComparer`1.cs ├── ExceptionUtilities.cs ├── ExcludeFromCodeCoverageAttribute.cs ├── Immutable │ ├── FixedArray8`1.cs │ ├── ImmutableSortedTreeDictionary.cs │ ├── ImmutableSortedTreeDictionary`2+Builder+KeyCollection.cs │ ├── ImmutableSortedTreeDictionary`2+Builder+ValueCollection.cs │ ├── ImmutableSortedTreeDictionary`2+Builder.cs │ ├── ImmutableSortedTreeDictionary`2+Enumerator.cs │ ├── ImmutableSortedTreeDictionary`2+KeyCollection+Enumerator.cs │ ├── ImmutableSortedTreeDictionary`2+KeyCollection.cs │ ├── ImmutableSortedTreeDictionary`2+ValueCollection+Enumerator.cs │ ├── ImmutableSortedTreeDictionary`2+ValueCollection.cs │ ├── ImmutableSortedTreeDictionary`2.cs │ ├── ImmutableSortedTreeList.cs │ ├── ImmutableSortedTreeList`1+Builder.cs │ ├── ImmutableSortedTreeList`1+Enumerator.cs │ ├── ImmutableSortedTreeList`1.cs │ ├── ImmutableSortedTreeSet.cs │ ├── ImmutableSortedTreeSet`1+Builder.cs │ ├── ImmutableSortedTreeSet`1+Enumerator.cs │ ├── ImmutableSortedTreeSet`1.cs │ ├── ImmutableTreeDictionary.cs │ ├── ImmutableTreeDictionary`2+Builder+KeyCollection.cs │ ├── ImmutableTreeDictionary`2+Builder+ValueCollection.cs │ ├── ImmutableTreeDictionary`2+Builder.cs │ ├── ImmutableTreeDictionary`2+Enumerator.cs │ ├── ImmutableTreeDictionary`2+KeyCollection+Enumerator.cs │ ├── ImmutableTreeDictionary`2+KeyCollection.cs │ ├── ImmutableTreeDictionary`2+ValueCollection+Enumerator.cs │ ├── ImmutableTreeDictionary`2+ValueCollection.cs │ ├── ImmutableTreeDictionary`2.cs │ ├── ImmutableTreeList.cs │ ├── ImmutableTreeList`1+Builder.cs │ ├── ImmutableTreeList`1+Enumerator.cs │ ├── ImmutableTreeList`1+IndexNode.cs │ ├── ImmutableTreeList`1+LeafNode.cs │ ├── ImmutableTreeList`1+Node.cs │ ├── ImmutableTreeList`1.cs │ ├── ImmutableTreeQueue.cs │ ├── ImmutableTreeQueue`1+Enumerator.cs │ ├── ImmutableTreeQueue`1.cs │ ├── ImmutableTreeSet.cs │ ├── ImmutableTreeSet`1+Builder.cs │ ├── ImmutableTreeSet`1+Enumerator.cs │ ├── ImmutableTreeSet`1.cs │ ├── ImmutableTreeStack.cs │ ├── ImmutableTreeStack`1+Enumerator.cs │ └── ImmutableTreeStack`1.cs ├── KeyOfPairComparer`2.cs ├── KeyOfPairEqualityComparer`2.cs ├── Properties │ └── AssemblyInfo.cs ├── PublicAPI.Shipped.txt ├── PublicAPI.Unshipped.txt ├── SetHelper.cs ├── SortedTreeDictionary`2+Enumerator.cs ├── SortedTreeDictionary`2+KeyCollection+Enumerator.cs ├── SortedTreeDictionary`2+KeyCollection.cs ├── SortedTreeDictionary`2+ValueCollection+Enumerator.cs ├── SortedTreeDictionary`2+ValueCollection.cs ├── SortedTreeDictionary`2.cs ├── SortedTreeList`1+Enumerator.cs ├── SortedTreeList`1.cs ├── SortedTreeSet`1+Enumerator.cs ├── SortedTreeSet`1.cs ├── TreeDictionary`2+Enumerator.cs ├── TreeDictionary`2+KeyCollection+Enumerator.cs ├── TreeDictionary`2+KeyCollection.cs ├── TreeDictionary`2+ValueCollection+Enumerator.cs ├── TreeDictionary`2+ValueCollection.cs ├── TreeDictionary`2.cs ├── TreeList`1+Enumerator.cs ├── TreeList`1+IndexNode.cs ├── TreeList`1+LeafNode.cs ├── TreeList`1+Node.cs ├── TreeList`1.cs ├── TreeQueue`1+Enumerator.cs ├── TreeQueue`1.cs ├── TreeSet`1+Enumerator.cs ├── TreeSet`1.cs ├── TreeSpan.cs ├── TreeStack`1+Enumerator.cs ├── TreeStack`1.cs ├── TunnelVisionLabs.Collections.Trees.csproj └── ValidationRules.cs ├── appveyor.yml ├── codecov.yml ├── dotnet-trees.sln ├── global.json ├── stylecop.json └── version.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/README.md -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Benchmarks/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Benchmarks/App.config -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Benchmarks/DummyBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Benchmarks/DummyBenchmark.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Benchmarks/Immutable/ImmutableTreeListBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Benchmarks/Immutable/ImmutableTreeListBenchmark.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Benchmarks/MemoryDiagnoserConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Benchmarks/MemoryDiagnoserConfig.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Benchmarks/Program.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Benchmarks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Benchmarks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Benchmarks/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Benchmarks/Properties/launchSettings.json -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Benchmarks/TunnelVisionLabs.Collections.Trees.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Benchmarks/TunnelVisionLabs.Collections.Trees.Benchmarks.csproj -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Experimental/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Experimental/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Experimental/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Experimental/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Experimental/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Experimental/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Experimental/TunnelVisionLabs.Collections.Trees.Experimental.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Experimental/TunnelVisionLabs.Collections.Trees.Experimental.csproj -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Internal.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Internal.ruleset -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/AbstractSetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/AbstractSetTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/App.config -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/CollectionAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/CollectionAssert.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/EverythingThrowsEnumerableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/EverythingThrowsEnumerableTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/EverythingThrowsEnumerable`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/EverythingThrowsEnumerable`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/ExceptionUtilitiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/ExceptionUtilitiesTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Generator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/GeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/GeneratorTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/AbstractImmutableDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/AbstractImmutableDictionaryTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/AbstractImmutableSetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/AbstractImmutableSetTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/FixedArray8Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/FixedArray8Test.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeDictionaryBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeDictionaryBuilderTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeDictionaryTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeListBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeListBuilderTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeListTest+ForEach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeListTest+ForEach.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeListTest+GetRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeListTest+GetRange.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeListTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeSetBuilderTest+ImmutableArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeSetBuilderTest+ImmutableArguments.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeSetBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeSetBuilderTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeSetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableSortedTreeSetTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeDictionaryBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeDictionaryBuilderTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeDictionaryTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListBuilderTest+ForEach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListBuilderTest+ForEach.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListBuilderTest+GetRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListBuilderTest+GetRange.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListBuilderTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListFactoryTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListTest+ForEach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListTest+ForEach.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListTest+GetRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListTest+GetRange.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeListTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeQueueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeQueueTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeSetBuilderTest+CollidingHashCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeSetBuilderTest+CollidingHashCodes.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeSetBuilderTest+ImmutableArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeSetBuilderTest+ImmutableArguments.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeSetBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeSetBuilderTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeSetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeSetTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeStackTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Immutable/ImmutableTreeStackTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/BinarySearch1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/BinarySearch1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/BinarySearch2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/BinarySearch2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/BinarySearch3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/BinarySearch3.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/CopyTo1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/CopyTo1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/CopyTo2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/CopyTo2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/CopyTo3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/CopyTo3.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListAdd.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListAddRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListAddRange.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListClear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListClear.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListContains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListContains.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListCount.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListCtor1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListCtor1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListCtor2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListCtor2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListForEach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListForEach.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListGetEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListGetEnumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListGetRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListGetRange.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListICollectionCopyTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListICollectionCopyTo.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListICollectionIsReadOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListICollectionIsReadOnly.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListICollectionIsSynchronized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListICollectionIsSynchronized.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListICollectionSyncRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListICollectionSyncRoot.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIEnumerableGetEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIEnumerableGetEnumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIEnumerableGetEnumerator2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIEnumerableGetEnumerator2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListAdd.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListContains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListContains.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListIndexOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListIndexOf.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListInsert.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListIsFixedSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListIsFixedSize.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListIsReadOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListIsReadOnly.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListItem.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListRemove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIListRemove.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIndexOf1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIndexOf1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIndexOf2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIndexOf2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListIndexOf3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListIndexOf3.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListInsertRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListInsertRange.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListLastIndexOf1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListLastIndexOf1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListLastIndexOf2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListLastIndexOf2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListLastIndexOf3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListLastIndexOf3.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListRemoveAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListRemoveAt.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListRemoveRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListRemoveRange.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListReverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListReverse.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListReverse2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListReverse2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/List/TreeListToArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/List/TreeListToArray.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/ReverseComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/ReverseComparerTests.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/ReverseComparer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/ReverseComparer`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/SortedTreeDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/SortedTreeDictionaryTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/SortedTreeListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/SortedTreeListTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/SortedTreeSetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/SortedTreeSetTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/SubsetHashCodeEqualityComparer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/SubsetHashCodeEqualityComparer`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/ThrowingTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/ThrowingTraceListener.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/TreeDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/TreeDictionaryTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/TreeListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/TreeListTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/TreeQueueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/TreeQueueTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/TreeSetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/TreeSetTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/TreeSetWithCollidingHashCodesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/TreeSetWithCollidingHashCodesTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/TreeSpanTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/TreeSpanTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/TreeStackTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/TreeStackTest.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/TunnelVisionLabs.Collections.Trees.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/TunnelVisionLabs.Collections.Trees.Test.csproj -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/ZeroHashCodeEqualityComparer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/ZeroHashCodeEqualityComparer`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.Test/packages.config -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees.ruleset -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/ComparisonComparer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/ComparisonComparer`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/ExceptionUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/ExceptionUtilities.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/ExcludeFromCodeCoverageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/ExcludeFromCodeCoverageAttribute.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/FixedArray8`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/FixedArray8`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+Builder+KeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+Builder+KeyCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+Builder+ValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+Builder+ValueCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+Builder.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+KeyCollection+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+KeyCollection+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+KeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+KeyCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+ValueCollection+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+ValueCollection+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+ValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2+ValueCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeDictionary`2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeList.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeList`1+Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeList`1+Builder.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeList`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeList`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeList`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeSet.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeSet`1+Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeSet`1+Builder.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeSet`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeSet`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableSortedTreeSet`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+Builder+KeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+Builder+KeyCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+Builder+ValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+Builder+ValueCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+Builder.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+KeyCollection+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+KeyCollection+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+KeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+KeyCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+ValueCollection+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+ValueCollection+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+ValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2+ValueCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeDictionary`2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1+Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1+Builder.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1+IndexNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1+IndexNode.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1+LeafNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1+LeafNode.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1+Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1+Node.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeList`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeQueue.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeQueue`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeQueue`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeQueue`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeSet.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeSet`1+Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeSet`1+Builder.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeSet`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeSet`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeSet`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeStack.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeStack`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeStack`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeStack`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Immutable/ImmutableTreeStack`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/KeyOfPairComparer`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/KeyOfPairComparer`2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/KeyOfPairEqualityComparer`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/KeyOfPairEqualityComparer`2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SetHelper.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2+KeyCollection+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2+KeyCollection+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2+KeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2+KeyCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2+ValueCollection+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2+ValueCollection+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2+ValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2+ValueCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SortedTreeDictionary`2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SortedTreeList`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SortedTreeList`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SortedTreeList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SortedTreeList`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SortedTreeSet`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SortedTreeSet`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/SortedTreeSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/SortedTreeSet`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeDictionary`2+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeDictionary`2+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeDictionary`2+KeyCollection+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeDictionary`2+KeyCollection+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeDictionary`2+KeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeDictionary`2+KeyCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeDictionary`2+ValueCollection+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeDictionary`2+ValueCollection+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeDictionary`2+ValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeDictionary`2+ValueCollection.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeDictionary`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeDictionary`2.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeList`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeList`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeList`1+IndexNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeList`1+IndexNode.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeList`1+LeafNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeList`1+LeafNode.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeList`1+Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeList`1+Node.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeList`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeQueue`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeQueue`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeQueue`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeSet`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeSet`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeSet`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeSet`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeSpan.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeStack`1+Enumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeStack`1+Enumerator.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TreeStack`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TreeStack`1.cs -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/TunnelVisionLabs.Collections.Trees.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/TunnelVisionLabs.Collections.Trees.csproj -------------------------------------------------------------------------------- /TunnelVisionLabs.Collections.Trees/ValidationRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/TunnelVisionLabs.Collections.Trees/ValidationRules.cs -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/codecov.yml -------------------------------------------------------------------------------- /dotnet-trees.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/dotnet-trees.sln -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/global.json -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/stylecop.json -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnelvisionlabs/dotnet-trees/HEAD/version.json --------------------------------------------------------------------------------