├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── ListPool.sln ├── README.md ├── perf ├── ListPool.Benchmarks │ ├── Array_ToList.cs │ ├── Enumerable_ToList.cs │ ├── ListPool.Benchmarks.csproj │ ├── List_Clean.cs │ ├── List_Contains.cs │ ├── List_CopyTo.cs │ ├── List_Create.cs │ ├── List_Create_Add_Enumerate.cs │ ├── List_Create_Add_Enumerate_ReferenceType_WithoutIndicateCapacity.cs │ ├── List_Create_Add_Enumerate_ValueType.cs │ ├── List_Create_Add_Enumerate_ValueType_WithoutIndicateCapacity.cs │ ├── List_Enumerate.cs │ ├── List_IndexOf.cs │ ├── List_Insert.cs │ ├── List_Remove.cs │ ├── List_RemoveAt.cs │ ├── Program.cs │ └── Serializers │ │ ├── Deserialize_List_Int.cs │ │ ├── Formatters │ │ ├── FakeClasses │ │ │ ├── FakeClass.cs │ │ │ └── FakeClassUsingListPool.cs │ │ ├── StringAsListPoolOfChars_Deserialize.cs │ │ └── StringAsListPoolOfChars_Serialize.cs │ │ └── Serialize_List_Of_Int.cs └── docs │ └── results │ ├── ListPool.Benchmarks.ArrayToListPoolBenchmark-report-github.md │ ├── ListPool.Benchmarks.EnumerableToListPoolBenchmark-report-github.md │ ├── ListPool.Benchmarks.ListPoolClearBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolContainsBenchmark-report-github.md │ ├── ListPool.Benchmarks.ListPoolCopyToBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateAReferenceBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateAValueBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateWithoutIndicatingCapacityBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolCreateBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolEnumerateBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolIndexOfBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolInsertBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolRemoveAtBenchmarks-report-github.md │ ├── ListPool.Benchmarks.ListPoolRemoveBenchmarks-report-github.md │ ├── ListPool.Benchmarks.Utf8JsonDeserializeListOfIntBenchmarks-report-github.md │ └── graph │ ├── CreateAndAddAndEnumerateAReferenceBenchmarks.JPG │ ├── ListPoolEnumerateBenchmarks.JPG │ └── ListPoolInsertBenchmarks.JPG ├── src ├── ListPool.Serializers.SystemTextJson.Converters │ ├── ListPool.Serializers.SystemTextJson.Converters.csproj │ ├── StringAsListPoolOfCharsConverter.cs │ └── bin │ │ └── Release │ │ └── netcoreapp3.1 │ │ ├── ListPool.SystemTextJson.Converters.dll │ │ └── ListPool.SystemTextJson.Converters.pdb ├── ListPool.Serializers.Utf8Json.Formatters │ ├── ListPool.Serializers.Utf8Json.Formatters.csproj │ ├── ListPoolFormatter.cs │ ├── StringAsListPoolOfCharsFormatter.cs │ ├── bin │ │ └── Release │ │ │ └── netcoreapp3.1 │ │ │ ├── ListPool.Serializers.Utf8Json.Formatters.dll │ │ │ └── ListPool.Serializers.Utf8Json.Formatters.pdb │ └── obj │ │ └── Release │ │ └── netstandard2.0 │ │ └── ListPool.Formatters.Utf8Json.assets.cache ├── ListPool.Serializers.Utf8Json.Resolvers │ ├── ListPool.Serializers.Utf8Json.Resolvers.csproj │ └── ListPoolResolver.cs └── ListPool │ ├── ListPool.cs │ ├── ListPool.csproj │ ├── ListPoolExtensions.cs │ └── ValueListPool.cs └── tests ├── ListPool.Netstandard2_0.UnitTests ├── ListPool.Netstandard2_0.UnitTests.csproj ├── ListPool │ ├── ListPoolAsIListOfTSourceTests.cs │ ├── ListPoolAsIListTests.cs │ ├── ListPoolTests.cs │ └── Serializer │ │ ├── CustomObject.cs │ │ ├── CustomObjectWithListPool.cs │ │ ├── ListPoolNewtonsoftTests.cs │ │ ├── ListPoolSerializerTestsBase.cs │ │ ├── ListPoolSpreadsUtf8JsonTests.cs │ │ ├── ListPoolSystemTextJsonSerializerTests.cs │ │ └── ListPoolUtf8JsonTests.cs ├── ListPoolEnumeratorTests.cs ├── ListPoolExtensionsTests.cs ├── ListPoolTestsBase.cs ├── ValueListPool │ └── ValueListPoolTests.cs ├── ValueListPoolEnumeratorTests.cs └── coverage.json ├── ListPool.Serializers.SystemTextJson.Converters.UnitTests └── ListPool.Serializers.SystemTextJson.Converters.UnitTests.csproj ├── ListPool.Serializers.Utf8Json.Formatters.UnitTests ├── ListPool.Serializers.Utf8Json.Formatters.UnitTests.csproj ├── ListPoolFormatterTests.cs ├── StringAsListPoolOfCharsFormatterTests.cs └── bin │ └── Release │ └── netcoreapp3.1 │ ├── ListPool.Serializers.Utf8Json.Formatters.UnitTests.dll │ └── ListPool.Serializers.Utf8Json.Formatters.UnitTests.pdb ├── ListPool.Serializers.Utf8Json.Resolvers.UnitTests ├── ListPool.Serializers.Utf8Json.Resolvers.UnitTests.csproj └── ListPoolResolverTests.cs └── ListPool.UnitTests ├── ListPool.UnitTests.csproj ├── ListPool ├── ListPoolAsIListOfTSourceTests.cs ├── ListPoolAsIListTests.cs ├── ListPoolTests.cs └── Serializer │ ├── CustomObject.cs │ ├── CustomObjectWithListPool.cs │ ├── ListPoolNewtonsoftTests.cs │ ├── ListPoolSerializerTestsBase.cs │ ├── ListPoolSpreadsUtf8JsonTests.cs │ ├── ListPoolSystemTextJsonSerializerTests.cs │ └── ListPoolUtf8JsonTests.cs ├── ListPoolEnumeratorTests.cs ├── ListPoolExtensionsTests.cs ├── ListPoolTestsBase.cs ├── ValueListPool └── ValueListPoolTests.cs ├── ValueListPoolEnumeratorTests.cs └── coverage.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/LICENSE -------------------------------------------------------------------------------- /ListPool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/ListPool.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/README.md -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/Array_ToList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/Array_ToList.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/Enumerable_ToList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/Enumerable_ToList.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/ListPool.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/ListPool.Benchmarks.csproj -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_Clean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_Clean.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_Contains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_Contains.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_CopyTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_CopyTo.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_Create.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_Create_Add_Enumerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_Create_Add_Enumerate.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_Create_Add_Enumerate_ReferenceType_WithoutIndicateCapacity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_Create_Add_Enumerate_ReferenceType_WithoutIndicateCapacity.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_Create_Add_Enumerate_ValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_Create_Add_Enumerate_ValueType.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_Create_Add_Enumerate_ValueType_WithoutIndicateCapacity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_Create_Add_Enumerate_ValueType_WithoutIndicateCapacity.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_Enumerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_Enumerate.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_IndexOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_IndexOf.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_Insert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_Insert.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_Remove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_Remove.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/List_RemoveAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/List_RemoveAt.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/Program.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/Serializers/Deserialize_List_Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/Serializers/Deserialize_List_Int.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/Serializers/Formatters/FakeClasses/FakeClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/Serializers/Formatters/FakeClasses/FakeClass.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/Serializers/Formatters/FakeClasses/FakeClassUsingListPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/Serializers/Formatters/FakeClasses/FakeClassUsingListPool.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/Serializers/Formatters/StringAsListPoolOfChars_Deserialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/Serializers/Formatters/StringAsListPoolOfChars_Deserialize.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/Serializers/Formatters/StringAsListPoolOfChars_Serialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/Serializers/Formatters/StringAsListPoolOfChars_Serialize.cs -------------------------------------------------------------------------------- /perf/ListPool.Benchmarks/Serializers/Serialize_List_Of_Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/ListPool.Benchmarks/Serializers/Serialize_List_Of_Int.cs -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ArrayToListPoolBenchmark-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ArrayToListPoolBenchmark-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.EnumerableToListPoolBenchmark-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.EnumerableToListPoolBenchmark-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolClearBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolClearBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolContainsBenchmark-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolContainsBenchmark-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolCopyToBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolCopyToBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateAReferenceBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateAReferenceBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateAValueBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateAValueBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateWithoutIndicatingCapacityBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolCreateAndAddAndEnumerateWithoutIndicatingCapacityBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolCreateBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolCreateBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolEnumerateBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolEnumerateBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolIndexOfBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolIndexOfBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolInsertBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolInsertBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolRemoveAtBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolRemoveAtBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.ListPoolRemoveBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.ListPoolRemoveBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/ListPool.Benchmarks.Utf8JsonDeserializeListOfIntBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/ListPool.Benchmarks.Utf8JsonDeserializeListOfIntBenchmarks-report-github.md -------------------------------------------------------------------------------- /perf/docs/results/graph/CreateAndAddAndEnumerateAReferenceBenchmarks.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/graph/CreateAndAddAndEnumerateAReferenceBenchmarks.JPG -------------------------------------------------------------------------------- /perf/docs/results/graph/ListPoolEnumerateBenchmarks.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/graph/ListPoolEnumerateBenchmarks.JPG -------------------------------------------------------------------------------- /perf/docs/results/graph/ListPoolInsertBenchmarks.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/perf/docs/results/graph/ListPoolInsertBenchmarks.JPG -------------------------------------------------------------------------------- /src/ListPool.Serializers.SystemTextJson.Converters/ListPool.Serializers.SystemTextJson.Converters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.SystemTextJson.Converters/ListPool.Serializers.SystemTextJson.Converters.csproj -------------------------------------------------------------------------------- /src/ListPool.Serializers.SystemTextJson.Converters/StringAsListPoolOfCharsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.SystemTextJson.Converters/StringAsListPoolOfCharsConverter.cs -------------------------------------------------------------------------------- /src/ListPool.Serializers.SystemTextJson.Converters/bin/Release/netcoreapp3.1/ListPool.SystemTextJson.Converters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.SystemTextJson.Converters/bin/Release/netcoreapp3.1/ListPool.SystemTextJson.Converters.dll -------------------------------------------------------------------------------- /src/ListPool.Serializers.SystemTextJson.Converters/bin/Release/netcoreapp3.1/ListPool.SystemTextJson.Converters.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.SystemTextJson.Converters/bin/Release/netcoreapp3.1/ListPool.SystemTextJson.Converters.pdb -------------------------------------------------------------------------------- /src/ListPool.Serializers.Utf8Json.Formatters/ListPool.Serializers.Utf8Json.Formatters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.Utf8Json.Formatters/ListPool.Serializers.Utf8Json.Formatters.csproj -------------------------------------------------------------------------------- /src/ListPool.Serializers.Utf8Json.Formatters/ListPoolFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.Utf8Json.Formatters/ListPoolFormatter.cs -------------------------------------------------------------------------------- /src/ListPool.Serializers.Utf8Json.Formatters/StringAsListPoolOfCharsFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.Utf8Json.Formatters/StringAsListPoolOfCharsFormatter.cs -------------------------------------------------------------------------------- /src/ListPool.Serializers.Utf8Json.Formatters/bin/Release/netcoreapp3.1/ListPool.Serializers.Utf8Json.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.Utf8Json.Formatters/bin/Release/netcoreapp3.1/ListPool.Serializers.Utf8Json.Formatters.dll -------------------------------------------------------------------------------- /src/ListPool.Serializers.Utf8Json.Formatters/bin/Release/netcoreapp3.1/ListPool.Serializers.Utf8Json.Formatters.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.Utf8Json.Formatters/bin/Release/netcoreapp3.1/ListPool.Serializers.Utf8Json.Formatters.pdb -------------------------------------------------------------------------------- /src/ListPool.Serializers.Utf8Json.Formatters/obj/Release/netstandard2.0/ListPool.Formatters.Utf8Json.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.Utf8Json.Formatters/obj/Release/netstandard2.0/ListPool.Formatters.Utf8Json.assets.cache -------------------------------------------------------------------------------- /src/ListPool.Serializers.Utf8Json.Resolvers/ListPool.Serializers.Utf8Json.Resolvers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.Utf8Json.Resolvers/ListPool.Serializers.Utf8Json.Resolvers.csproj -------------------------------------------------------------------------------- /src/ListPool.Serializers.Utf8Json.Resolvers/ListPoolResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool.Serializers.Utf8Json.Resolvers/ListPoolResolver.cs -------------------------------------------------------------------------------- /src/ListPool/ListPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool/ListPool.cs -------------------------------------------------------------------------------- /src/ListPool/ListPool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool/ListPool.csproj -------------------------------------------------------------------------------- /src/ListPool/ListPoolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool/ListPoolExtensions.cs -------------------------------------------------------------------------------- /src/ListPool/ValueListPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/src/ListPool/ValueListPool.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool.Netstandard2_0.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool.Netstandard2_0.UnitTests.csproj -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool/ListPoolAsIListOfTSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool/ListPoolAsIListOfTSourceTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool/ListPoolAsIListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool/ListPoolAsIListTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool/ListPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool/ListPoolTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/CustomObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/CustomObject.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/CustomObjectWithListPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/CustomObjectWithListPool.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/ListPoolNewtonsoftTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/ListPoolNewtonsoftTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/ListPoolSerializerTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/ListPoolSerializerTestsBase.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/ListPoolSpreadsUtf8JsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/ListPoolSpreadsUtf8JsonTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/ListPoolSystemTextJsonSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/ListPoolSystemTextJsonSerializerTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/ListPoolUtf8JsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPool/Serializer/ListPoolUtf8JsonTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPoolEnumeratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPoolEnumeratorTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPoolExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPoolExtensionsTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ListPoolTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ListPoolTestsBase.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ValueListPool/ValueListPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ValueListPool/ValueListPoolTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/ValueListPoolEnumeratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/ValueListPoolEnumeratorTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Netstandard2_0.UnitTests/coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Netstandard2_0.UnitTests/coverage.json -------------------------------------------------------------------------------- /tests/ListPool.Serializers.SystemTextJson.Converters.UnitTests/ListPool.Serializers.SystemTextJson.Converters.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Serializers.SystemTextJson.Converters.UnitTests/ListPool.Serializers.SystemTextJson.Converters.UnitTests.csproj -------------------------------------------------------------------------------- /tests/ListPool.Serializers.Utf8Json.Formatters.UnitTests/ListPool.Serializers.Utf8Json.Formatters.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Serializers.Utf8Json.Formatters.UnitTests/ListPool.Serializers.Utf8Json.Formatters.UnitTests.csproj -------------------------------------------------------------------------------- /tests/ListPool.Serializers.Utf8Json.Formatters.UnitTests/ListPoolFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Serializers.Utf8Json.Formatters.UnitTests/ListPoolFormatterTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Serializers.Utf8Json.Formatters.UnitTests/StringAsListPoolOfCharsFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Serializers.Utf8Json.Formatters.UnitTests/StringAsListPoolOfCharsFormatterTests.cs -------------------------------------------------------------------------------- /tests/ListPool.Serializers.Utf8Json.Formatters.UnitTests/bin/Release/netcoreapp3.1/ListPool.Serializers.Utf8Json.Formatters.UnitTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Serializers.Utf8Json.Formatters.UnitTests/bin/Release/netcoreapp3.1/ListPool.Serializers.Utf8Json.Formatters.UnitTests.dll -------------------------------------------------------------------------------- /tests/ListPool.Serializers.Utf8Json.Formatters.UnitTests/bin/Release/netcoreapp3.1/ListPool.Serializers.Utf8Json.Formatters.UnitTests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Serializers.Utf8Json.Formatters.UnitTests/bin/Release/netcoreapp3.1/ListPool.Serializers.Utf8Json.Formatters.UnitTests.pdb -------------------------------------------------------------------------------- /tests/ListPool.Serializers.Utf8Json.Resolvers.UnitTests/ListPool.Serializers.Utf8Json.Resolvers.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Serializers.Utf8Json.Resolvers.UnitTests/ListPool.Serializers.Utf8Json.Resolvers.UnitTests.csproj -------------------------------------------------------------------------------- /tests/ListPool.Serializers.Utf8Json.Resolvers.UnitTests/ListPoolResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.Serializers.Utf8Json.Resolvers.UnitTests/ListPoolResolverTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool.UnitTests.csproj -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool/ListPoolAsIListOfTSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool/ListPoolAsIListOfTSourceTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool/ListPoolAsIListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool/ListPoolAsIListTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool/ListPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool/ListPoolTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool/Serializer/CustomObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool/Serializer/CustomObject.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool/Serializer/CustomObjectWithListPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool/Serializer/CustomObjectWithListPool.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool/Serializer/ListPoolNewtonsoftTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool/Serializer/ListPoolNewtonsoftTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool/Serializer/ListPoolSerializerTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool/Serializer/ListPoolSerializerTestsBase.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool/Serializer/ListPoolSpreadsUtf8JsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool/Serializer/ListPoolSpreadsUtf8JsonTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool/Serializer/ListPoolSystemTextJsonSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool/Serializer/ListPoolSystemTextJsonSerializerTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPool/Serializer/ListPoolUtf8JsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPool/Serializer/ListPoolUtf8JsonTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPoolEnumeratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPoolEnumeratorTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPoolExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPoolExtensionsTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ListPoolTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ListPoolTestsBase.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ValueListPool/ValueListPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ValueListPool/ValueListPoolTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/ValueListPoolEnumeratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/ValueListPoolEnumeratorTests.cs -------------------------------------------------------------------------------- /tests/ListPool.UnitTests/coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faustodavid/ListPool/HEAD/tests/ListPool.UnitTests/coverage.json --------------------------------------------------------------------------------