├── .gitattributes ├── .gitignore ├── Dot.Net.DevFast ├── Snaps │ ├── Adapter-GitHub-Implementation-Abstract.PNG │ ├── Adapter-PPC-After-Producer.PNG │ ├── Adapter-PPC-AwaitableList-FixedDuration.PNG │ ├── Adapter-PPC-AwaitableList-FixedSize.PNG │ ├── Adapter-PPC-AwaitableList.PNG │ ├── Adapter-PPC-before-consumer.PNG │ ├── Adapter-PPC-thoughts.PNG │ ├── Adapter-PPC-two-buffers.PNG │ ├── Adapter-PPC.PNG │ ├── Base64.png │ ├── Discordent-PPC-Simple-Buffer-Sharing.PNG │ ├── Enumerable_Pipeline_1_Liners.PNG │ ├── JArray_Des_Mem.PNG │ ├── JArray_Ser_Mem.PNG │ ├── Json_FileStream_Deserial.PNG │ ├── Json_FileStream_Serial.PNG │ ├── Json_MemStream_Deserial.PNG │ ├── Json_MemStream_Serial.PNG │ ├── Json_Sb_Deserial.PNG │ ├── Json_Sb_Serial.PNG │ ├── MachineConfig.PNG │ ├── Mind-Map-Attached-Pipeline.PNG │ ├── Mind-Map-Detached-Pipeline.PNG │ ├── Mind-Map-Identity-Adapter.PNG │ ├── Mind-Map-List-Adapter.PNG │ ├── MrBlank.PNG │ ├── MySql_Json_Array.PNG │ ├── PPC-Simple-Buffer-Sharing.PNG │ ├── Ppc_Pipeline_1_Liners.PNG │ ├── Pyramidical-Mind-Map.PNG │ ├── Rijndael.png │ ├── SimpleStats_Bc_Ppc_Json_Array.PNG │ ├── StringVariants.png │ ├── ThrowVariants.png │ ├── ToOrDefault.png │ ├── Trivial_Decompression.PNG │ ├── Trivial_compression.PNG │ └── func_streaming │ │ ├── FlowOFData.PNG │ │ ├── Hositing_Nesting.PNG │ │ ├── PerfCompareNonStreamingWithStreamingAsync_CPU_MEM_API.PNG │ │ ├── PerfCompareNonStreamingWithStreamingAsync_CPU_MEM_NonAPI.PNG │ │ ├── PerfCompareNonStreamingWithStreamingAsync_Stats.PNG │ │ ├── PerfCompareNonStreamingWithStreamingAsync_Visual.PNG │ │ ├── Pipeline_Construct.PNG │ │ ├── Sd_Rx_Flow_Of_Data.PNG │ │ ├── Sender_Rx_code_dataflow.PNG │ │ ├── Streaming_Hardware.PNG │ │ ├── Streaming_Software.PNG │ │ ├── Streaming_VS.PNG │ │ ├── SuperTees.PNG │ │ ├── Teeing.PNG │ │ ├── runtime-memory-visualization-optim.PNG │ │ └── runtime-memory-visualization-without_optimization.PNG ├── articles │ ├── MeetPpc.html │ ├── RDV_JSON.html │ ├── SimplyDevFast.html │ ├── Streaming.html │ ├── Streaming2.html │ ├── TwoLatencies.html │ └── main.min.css ├── spon_logo │ └── jetbrains.png └── src │ ├── Dot.Net.DevFast.Tests │ ├── App.config │ ├── Collections │ │ ├── AbstractBinaryHeapTest.cs │ │ ├── AbstractSizableBinaryHeapTest.cs │ │ ├── Concurrent │ │ │ ├── FastDictionaryTest.cs │ │ │ ├── LockBasedConcurrentHeapTest.cs │ │ │ └── MinMaxHeapsTest.cs │ │ ├── LimitHeapsTest.cs │ │ ├── MinMaxHeapsTest.cs │ │ ├── OneToManyDictionaryTest.cs │ │ ├── OneToUniqueManyDictionaryTest.cs │ │ └── ResizeStrategiesTest.cs │ ├── Dot.Net.DevFast.Tests.csproj │ ├── Etc │ │ ├── ConcurrentBufferTest.cs │ │ ├── DdnDfExceptionTest.cs │ │ └── StdLookUpsTest.cs │ ├── Extensions │ │ ├── CompressionExtsTest.cs │ │ ├── CreateExtsTest.cs │ │ ├── EnumerableExtsTest.cs │ │ ├── Internals │ │ │ ├── JsonBasedTest.cs │ │ │ ├── OthersTest.cs │ │ │ ├── PpcAssets │ │ │ │ ├── PipeTest.cs │ │ │ │ ├── PipelineTest.cs │ │ │ │ ├── PpcBufferTest.cs │ │ │ │ └── PpcWrappersTest.cs │ │ │ ├── SbReaderTest.cs │ │ │ ├── StreamBasedTest.cs │ │ │ └── WrappedStreamTest.cs │ │ ├── JsonExt │ │ │ ├── CustomJsonTest.cs │ │ │ └── JsonTxtExtTest.cs │ │ ├── MiscExtsTest.cs │ │ ├── Ppc │ │ │ ├── AwaitableAdapterTest.cs │ │ │ ├── AwaitableListAdapterTest.cs │ │ │ ├── PipeExtsTest.cs │ │ │ └── PipelineExtsTest.cs │ │ ├── ReflectionExtsTest.cs │ │ ├── StreamExt │ │ │ ├── Base64ExtTest.cs │ │ │ └── CryptoStreamExtTest.cs │ │ ├── StreamPipeExt │ │ │ └── StreamPipeExtsTest.cs │ │ ├── StringExt │ │ │ ├── StringSafeTest.cs │ │ │ ├── StringTryToTest.cs │ │ │ └── StringUnsafeTest.cs │ │ ├── SyncAsyncTest.cs │ │ ├── TaskExtsTest.cs │ │ └── ThrowIfPredicateTest.cs │ ├── IO │ │ ├── BroadcastStreamTest.cs │ │ ├── ByteCountStreamTest.cs │ │ ├── PullFuncStreamTest.cs │ │ └── PushFuncStreamTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestHelpers │ │ ├── FileSys.cs │ │ ├── TestObjects.cs │ │ └── TestValues.cs │ ├── Dot.Net.DevFast.sln │ ├── Dot.Net.DevFast │ ├── Collections │ │ ├── AbstractBinaryHeap.cs │ │ ├── AbstractSizableBinaryHeap.cs │ │ ├── Concurrent │ │ │ ├── FastDictionary.cs │ │ │ ├── LockBasedConcurrentHeap.cs │ │ │ └── MinMaxHeaps.cs │ │ ├── Interfaces │ │ │ ├── ICompactableHeap.cs │ │ │ ├── IHeap.cs │ │ │ ├── IResizableHeap.cs │ │ │ └── IResizeStrategy.cs │ │ ├── LimitHeaps.cs │ │ ├── MinMaxHeaps.cs │ │ ├── OneToManyDictionary.cs │ │ ├── OneToUniqueManyDictionary.cs │ │ └── ResizeStrategies.cs │ ├── Dot.Net.DevFast.csproj │ ├── Dot.Net.DevFast.xml │ ├── Etc │ │ ├── ConcurrentBuffer.cs │ │ ├── DdnDfException.cs │ │ ├── DdnException.cs │ │ ├── SortOrder.cs │ │ └── StdLookUps.cs │ ├── Extensions │ │ ├── CompressionExts.cs │ │ ├── CreateExts.cs │ │ ├── EnumerableExts.cs │ │ ├── Internals │ │ │ ├── JsonBased.cs │ │ │ ├── Others.cs │ │ │ ├── PpcAssets │ │ │ │ ├── Pipe.cs │ │ │ │ ├── Pipeline.cs │ │ │ │ ├── PpcBuffer.cs │ │ │ │ └── PpcWrappers.cs │ │ │ ├── SbReader.cs │ │ │ ├── StreamBased.cs │ │ │ └── WrapperStream.cs │ │ ├── JsonExt │ │ │ ├── CustomJson.cs │ │ │ └── JsonTxtExt.cs │ │ ├── MiscExts.cs │ │ ├── Ppc │ │ │ ├── AwaitableAdapter.cs │ │ │ ├── AwaitableListAdapter.cs │ │ │ ├── IConsumer.cs │ │ │ ├── IDataAdapter.cs │ │ │ ├── IPipeline.cs │ │ │ ├── IPpcFeed.cs │ │ │ ├── IProducer.cs │ │ │ ├── PipeExts.cs │ │ │ └── PipelineExts.cs │ │ ├── ReflectionExts.cs │ │ ├── StreamExt │ │ │ ├── Base64Ext.cs │ │ │ └── CryptoStreamExt.cs │ │ ├── StreamPipeExt │ │ │ ├── StreamPipeExts.cs │ │ │ ├── StreamPipeExtsPull.cs │ │ │ └── StreamPipeExtsPush.cs │ │ ├── StringExt │ │ │ ├── StringSafe.cs │ │ │ ├── StringTryTo.cs │ │ │ └── StringUnsafe.cs │ │ ├── SyncAsync.cs │ │ ├── TaskExts.cs │ │ └── ThrowIfPredicate.cs │ ├── IO │ │ ├── BroadcastStream.cs │ │ ├── ByteCountStream.cs │ │ ├── PullFuncStream.cs │ │ └── PushFuncStream.cs │ └── Properties │ │ └── AssemblyInfo.cs │ └── NuGet.Config ├── LICENSE ├── README-nuget.md ├── README.md ├── ReleaseNotes.txt ├── _config.yml ├── ddn.ico ├── icon.png ├── nuspecs ├── Dot.Net.DevFast.nuspec └── pkgdt │ ├── LICENSE │ └── ddn.ico ├── samples ├── Dot.Net.DevFast.Sample │ ├── Dot.Net.DevFast.Sample.sln │ └── Dot.Net.DevFast.Sample │ │ ├── App.config │ │ ├── Base64Sample.cs │ │ ├── DateTimeParser.cs │ │ ├── Dot.Net.DevFast.Sample.csproj │ │ ├── Dot.Net.DevFast.xml │ │ ├── FastDicoSample.cs │ │ ├── JsonSample │ │ ├── FromExt │ │ │ ├── JsonConvertDeLatency.cs │ │ │ ├── JsonConvertMemStreamDeLatency.cs │ │ │ └── JsonConvertStreamDeLatency.cs │ │ ├── JsonEnumeration │ │ │ ├── BcLatencyFileDeserializationZeroComputation.cs │ │ │ ├── BcLatencyFileSerializationZeroComputation.cs │ │ │ ├── LatencyFileDeserializationZeroComputation.cs │ │ │ └── LatencyFileSerializationZeroComputation.cs │ │ ├── JsonObjs.cs │ │ ├── JsonReportDb │ │ │ ├── PpcFileStats.cs │ │ │ └── PpcMysql.cs │ │ ├── Pipelining │ │ │ ├── EnumerableMysqlCompression.cs │ │ │ └── PpcMysqlCompression.cs │ │ └── ToExt │ │ │ ├── JsonConvertLatency.cs │ │ │ ├── JsonConvertMemStreamLatency.cs │ │ │ └── JsonConvertStreamLatency.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── StringSample.cs │ │ ├── ThrowSample.cs │ │ ├── TransformSample.cs │ │ └── packages.config └── stream_sample │ └── StreamingSample │ ├── StreamingSample.sln │ ├── StreamingSample │ ├── ApiPerfCompare.cs │ ├── App.config │ ├── Helpers.cs │ ├── HoistingGenerator.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RandomFuncNumbers.cs │ ├── SampleGeneratingHelpers.cs │ └── StreamingSample.csproj │ └── StreamingServer │ ├── App.config │ ├── Bootstrapper.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SampleDataController.cs │ └── StreamingServer.csproj └── zipASi_Info_x64msi.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Adapter-GitHub-Implementation-Abstract.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Adapter-GitHub-Implementation-Abstract.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Adapter-PPC-After-Producer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Adapter-PPC-After-Producer.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Adapter-PPC-AwaitableList-FixedDuration.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Adapter-PPC-AwaitableList-FixedDuration.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Adapter-PPC-AwaitableList-FixedSize.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Adapter-PPC-AwaitableList-FixedSize.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Adapter-PPC-AwaitableList.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Adapter-PPC-AwaitableList.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Adapter-PPC-before-consumer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Adapter-PPC-before-consumer.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Adapter-PPC-thoughts.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Adapter-PPC-thoughts.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Adapter-PPC-two-buffers.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Adapter-PPC-two-buffers.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Adapter-PPC.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Adapter-PPC.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Base64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Base64.png -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Discordent-PPC-Simple-Buffer-Sharing.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Discordent-PPC-Simple-Buffer-Sharing.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Enumerable_Pipeline_1_Liners.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Enumerable_Pipeline_1_Liners.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/JArray_Des_Mem.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/JArray_Des_Mem.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/JArray_Ser_Mem.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/JArray_Ser_Mem.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Json_FileStream_Deserial.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Json_FileStream_Deserial.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Json_FileStream_Serial.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Json_FileStream_Serial.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Json_MemStream_Deserial.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Json_MemStream_Deserial.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Json_MemStream_Serial.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Json_MemStream_Serial.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Json_Sb_Deserial.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Json_Sb_Deserial.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Json_Sb_Serial.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Json_Sb_Serial.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/MachineConfig.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/MachineConfig.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Mind-Map-Attached-Pipeline.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Mind-Map-Attached-Pipeline.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Mind-Map-Detached-Pipeline.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Mind-Map-Detached-Pipeline.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Mind-Map-Identity-Adapter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Mind-Map-Identity-Adapter.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Mind-Map-List-Adapter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Mind-Map-List-Adapter.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/MrBlank.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/MrBlank.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/MySql_Json_Array.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/MySql_Json_Array.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/PPC-Simple-Buffer-Sharing.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/PPC-Simple-Buffer-Sharing.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Ppc_Pipeline_1_Liners.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Ppc_Pipeline_1_Liners.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Pyramidical-Mind-Map.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Pyramidical-Mind-Map.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Rijndael.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Rijndael.png -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/SimpleStats_Bc_Ppc_Json_Array.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/SimpleStats_Bc_Ppc_Json_Array.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/StringVariants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/StringVariants.png -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/ThrowVariants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/ThrowVariants.png -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/ToOrDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/ToOrDefault.png -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Trivial_Decompression.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Trivial_Decompression.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/Trivial_compression.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/Trivial_compression.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/FlowOFData.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/FlowOFData.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/Hositing_Nesting.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/Hositing_Nesting.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/PerfCompareNonStreamingWithStreamingAsync_CPU_MEM_API.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/PerfCompareNonStreamingWithStreamingAsync_CPU_MEM_API.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/PerfCompareNonStreamingWithStreamingAsync_CPU_MEM_NonAPI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/PerfCompareNonStreamingWithStreamingAsync_CPU_MEM_NonAPI.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/PerfCompareNonStreamingWithStreamingAsync_Stats.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/PerfCompareNonStreamingWithStreamingAsync_Stats.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/PerfCompareNonStreamingWithStreamingAsync_Visual.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/PerfCompareNonStreamingWithStreamingAsync_Visual.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/Pipeline_Construct.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/Pipeline_Construct.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/Sd_Rx_Flow_Of_Data.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/Sd_Rx_Flow_Of_Data.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/Sender_Rx_code_dataflow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/Sender_Rx_code_dataflow.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/Streaming_Hardware.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/Streaming_Hardware.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/Streaming_Software.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/Streaming_Software.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/Streaming_VS.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/Streaming_VS.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/SuperTees.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/SuperTees.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/Teeing.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/Teeing.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/runtime-memory-visualization-optim.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/runtime-memory-visualization-optim.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/Snaps/func_streaming/runtime-memory-visualization-without_optimization.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/Snaps/func_streaming/runtime-memory-visualization-without_optimization.PNG -------------------------------------------------------------------------------- /Dot.Net.DevFast/articles/MeetPpc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/articles/MeetPpc.html -------------------------------------------------------------------------------- /Dot.Net.DevFast/articles/RDV_JSON.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/articles/RDV_JSON.html -------------------------------------------------------------------------------- /Dot.Net.DevFast/articles/SimplyDevFast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/articles/SimplyDevFast.html -------------------------------------------------------------------------------- /Dot.Net.DevFast/articles/Streaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/articles/Streaming.html -------------------------------------------------------------------------------- /Dot.Net.DevFast/articles/Streaming2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/articles/Streaming2.html -------------------------------------------------------------------------------- /Dot.Net.DevFast/articles/TwoLatencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/articles/TwoLatencies.html -------------------------------------------------------------------------------- /Dot.Net.DevFast/articles/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/articles/main.min.css -------------------------------------------------------------------------------- /Dot.Net.DevFast/spon_logo/jetbrains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/spon_logo/jetbrains.png -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/App.config -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/AbstractBinaryHeapTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/AbstractBinaryHeapTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/AbstractSizableBinaryHeapTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/AbstractSizableBinaryHeapTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/Concurrent/FastDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/Concurrent/FastDictionaryTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/Concurrent/LockBasedConcurrentHeapTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/Concurrent/LockBasedConcurrentHeapTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/Concurrent/MinMaxHeapsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/Concurrent/MinMaxHeapsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/LimitHeapsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/LimitHeapsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/MinMaxHeapsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/MinMaxHeapsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/OneToManyDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/OneToManyDictionaryTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/OneToUniqueManyDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/OneToUniqueManyDictionaryTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/ResizeStrategiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Collections/ResizeStrategiesTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Dot.Net.DevFast.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Dot.Net.DevFast.Tests.csproj -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Etc/ConcurrentBufferTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Etc/ConcurrentBufferTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Etc/DdnDfExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Etc/DdnDfExceptionTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Etc/StdLookUpsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Etc/StdLookUpsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/CompressionExtsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/CompressionExtsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/CreateExtsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/CreateExtsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/EnumerableExtsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/EnumerableExtsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/JsonBasedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/JsonBasedTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/OthersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/OthersTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/PpcAssets/PipeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/PpcAssets/PipeTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/PpcAssets/PipelineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/PpcAssets/PipelineTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/PpcAssets/PpcBufferTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/PpcAssets/PpcBufferTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/PpcAssets/PpcWrappersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/PpcAssets/PpcWrappersTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/SbReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/SbReaderTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/StreamBasedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/StreamBasedTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/WrappedStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Internals/WrappedStreamTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/JsonExt/CustomJsonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/JsonExt/CustomJsonTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/JsonExt/JsonTxtExtTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/JsonExt/JsonTxtExtTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/MiscExtsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/MiscExtsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Ppc/AwaitableAdapterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Ppc/AwaitableAdapterTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Ppc/AwaitableListAdapterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Ppc/AwaitableListAdapterTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Ppc/PipeExtsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Ppc/PipeExtsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Ppc/PipelineExtsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/Ppc/PipelineExtsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/ReflectionExtsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/ReflectionExtsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StreamExt/Base64ExtTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StreamExt/Base64ExtTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StreamExt/CryptoStreamExtTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StreamExt/CryptoStreamExtTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StreamPipeExt/StreamPipeExtsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StreamPipeExt/StreamPipeExtsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StringExt/StringSafeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StringExt/StringSafeTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StringExt/StringTryToTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StringExt/StringTryToTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StringExt/StringUnsafeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/StringExt/StringUnsafeTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/SyncAsyncTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/SyncAsyncTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/TaskExtsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/TaskExtsTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/ThrowIfPredicateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Extensions/ThrowIfPredicateTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/IO/BroadcastStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/IO/BroadcastStreamTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/IO/ByteCountStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/IO/ByteCountStreamTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/IO/PullFuncStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/IO/PullFuncStreamTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/IO/PushFuncStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/IO/PushFuncStreamTest.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/TestHelpers/FileSys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/TestHelpers/FileSys.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/TestHelpers/TestObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/TestHelpers/TestObjects.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/TestHelpers/TestValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.Tests/TestHelpers/TestValues.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast.sln -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/AbstractBinaryHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/AbstractBinaryHeap.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/AbstractSizableBinaryHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/AbstractSizableBinaryHeap.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Concurrent/FastDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Concurrent/FastDictionary.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Concurrent/LockBasedConcurrentHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Concurrent/LockBasedConcurrentHeap.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Concurrent/MinMaxHeaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Concurrent/MinMaxHeaps.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Interfaces/ICompactableHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Interfaces/ICompactableHeap.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Interfaces/IHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Interfaces/IHeap.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Interfaces/IResizableHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Interfaces/IResizableHeap.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Interfaces/IResizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/Interfaces/IResizeStrategy.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/LimitHeaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/LimitHeaps.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/MinMaxHeaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/MinMaxHeaps.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/OneToManyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/OneToManyDictionary.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/OneToUniqueManyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/OneToUniqueManyDictionary.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/ResizeStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Collections/ResizeStrategies.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Dot.Net.DevFast.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Dot.Net.DevFast.csproj -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Dot.Net.DevFast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Dot.Net.DevFast.xml -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Etc/ConcurrentBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Etc/ConcurrentBuffer.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Etc/DdnDfException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Etc/DdnDfException.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Etc/DdnException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Etc/DdnException.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Etc/SortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Etc/SortOrder.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Etc/StdLookUps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Etc/StdLookUps.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/CompressionExts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/CompressionExts.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/CreateExts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/CreateExts.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/EnumerableExts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/EnumerableExts.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/JsonBased.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/JsonBased.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/Others.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/Others.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/PpcAssets/Pipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/PpcAssets/Pipe.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/PpcAssets/Pipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/PpcAssets/Pipeline.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/PpcAssets/PpcBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/PpcAssets/PpcBuffer.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/PpcAssets/PpcWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/PpcAssets/PpcWrappers.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/SbReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/SbReader.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/StreamBased.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/StreamBased.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/WrapperStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Internals/WrapperStream.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/JsonExt/CustomJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/JsonExt/CustomJson.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/JsonExt/JsonTxtExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/JsonExt/JsonTxtExt.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/MiscExts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/MiscExts.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/AwaitableAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/AwaitableAdapter.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/AwaitableListAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/AwaitableListAdapter.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/IConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/IConsumer.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/IDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/IDataAdapter.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/IPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/IPipeline.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/IPpcFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/IPpcFeed.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/IProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/IProducer.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/PipeExts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/PipeExts.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/PipelineExts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/Ppc/PipelineExts.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/ReflectionExts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/ReflectionExts.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StreamExt/Base64Ext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StreamExt/Base64Ext.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StreamExt/CryptoStreamExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StreamExt/CryptoStreamExt.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StreamPipeExt/StreamPipeExts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StreamPipeExt/StreamPipeExts.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StreamPipeExt/StreamPipeExtsPull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StreamPipeExt/StreamPipeExtsPull.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StreamPipeExt/StreamPipeExtsPush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StreamPipeExt/StreamPipeExtsPush.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StringExt/StringSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StringExt/StringSafe.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StringExt/StringTryTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StringExt/StringTryTo.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StringExt/StringUnsafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/StringExt/StringUnsafe.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/SyncAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/SyncAsync.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/TaskExts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/TaskExts.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/ThrowIfPredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Extensions/ThrowIfPredicate.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/IO/BroadcastStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/IO/BroadcastStream.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/IO/ByteCountStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/IO/ByteCountStream.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/IO/PullFuncStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/IO/PullFuncStream.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/IO/PushFuncStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/IO/PushFuncStream.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/Dot.Net.DevFast/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/Dot.Net.DevFast/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Dot.Net.DevFast/src/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/Dot.Net.DevFast/src/NuGet.Config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README-nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/README-nuget.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/ReleaseNotes.txt -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/_config.yml -------------------------------------------------------------------------------- /ddn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/ddn.ico -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/icon.png -------------------------------------------------------------------------------- /nuspecs/Dot.Net.DevFast.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/nuspecs/Dot.Net.DevFast.nuspec -------------------------------------------------------------------------------- /nuspecs/pkgdt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/nuspecs/pkgdt/LICENSE -------------------------------------------------------------------------------- /nuspecs/pkgdt/ddn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/nuspecs/pkgdt/ddn.ico -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample.sln -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/App.config -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/Base64Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/Base64Sample.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/DateTimeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/DateTimeParser.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample.csproj -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/Dot.Net.DevFast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/Dot.Net.DevFast.xml -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/FastDicoSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/FastDicoSample.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/FromExt/JsonConvertDeLatency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/FromExt/JsonConvertDeLatency.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/FromExt/JsonConvertMemStreamDeLatency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/FromExt/JsonConvertMemStreamDeLatency.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/FromExt/JsonConvertStreamDeLatency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/FromExt/JsonConvertStreamDeLatency.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonEnumeration/BcLatencyFileDeserializationZeroComputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonEnumeration/BcLatencyFileDeserializationZeroComputation.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonEnumeration/BcLatencyFileSerializationZeroComputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonEnumeration/BcLatencyFileSerializationZeroComputation.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonEnumeration/LatencyFileDeserializationZeroComputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonEnumeration/LatencyFileDeserializationZeroComputation.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonEnumeration/LatencyFileSerializationZeroComputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonEnumeration/LatencyFileSerializationZeroComputation.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonObjs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonObjs.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonReportDb/PpcFileStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonReportDb/PpcFileStats.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonReportDb/PpcMysql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/JsonReportDb/PpcMysql.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/Pipelining/EnumerableMysqlCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/Pipelining/EnumerableMysqlCompression.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/Pipelining/PpcMysqlCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/Pipelining/PpcMysqlCompression.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/ToExt/JsonConvertLatency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/ToExt/JsonConvertLatency.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/ToExt/JsonConvertMemStreamLatency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/ToExt/JsonConvertMemStreamLatency.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/ToExt/JsonConvertStreamLatency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/JsonSample/ToExt/JsonConvertStreamLatency.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/Program.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/StringSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/StringSample.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/ThrowSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/ThrowSample.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/TransformSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/TransformSample.cs -------------------------------------------------------------------------------- /samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/Dot.Net.DevFast.Sample/Dot.Net.DevFast.Sample/packages.config -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingSample.sln -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingSample/ApiPerfCompare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingSample/ApiPerfCompare.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingSample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingSample/App.config -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingSample/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingSample/Helpers.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingSample/HoistingGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingSample/HoistingGenerator.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingSample/Program.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingSample/RandomFuncNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingSample/RandomFuncNumbers.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingSample/SampleGeneratingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingSample/SampleGeneratingHelpers.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingSample/StreamingSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingSample/StreamingSample.csproj -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingServer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingServer/App.config -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingServer/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingServer/Bootstrapper.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingServer/Program.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingServer/SampleDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingServer/SampleDataController.cs -------------------------------------------------------------------------------- /samples/stream_sample/StreamingSample/StreamingServer/StreamingServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/samples/stream_sample/StreamingSample/StreamingServer/StreamingServer.csproj -------------------------------------------------------------------------------- /zipASi_Info_x64msi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaysar/dotdotnet/HEAD/zipASi_Info_x64msi.txt --------------------------------------------------------------------------------