├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── publish-docs.yml │ ├── publishnuget.yml │ └── test.yml ├── .gitignore ├── .idea └── .idea.StreamRegex │ └── .idea │ └── .gitignore ├── Directory.Build.props ├── LICENSE ├── README.md ├── StreamRegex.Automata.Tests └── StateMachineTests.cs ├── StreamRegex.Automata ├── .idea │ └── .idea.StreamRegex.Lib.dir │ │ └── .idea │ │ └── .gitignore ├── DFA │ ├── AnyCharacterDfaState.cs │ ├── BaseDfaState.cs │ ├── ComponentGroupDfaState.cs │ ├── DfaStreamRegex.cs │ ├── ExactCharacterDfaState.cs │ ├── FinalDfaState.cs │ ├── IDfaState.cs │ ├── NopDfaState.cs │ ├── RepeatCharacterZeroPlusDfaState.cs │ ├── StateMachineFactory.cs │ └── StreamRegexMatch.cs ├── IState.cs ├── IStreamRegex.cs ├── NFA │ ├── AnyCharacterNfaState.cs │ ├── BaseNfaState.cs │ ├── ComponentGroupNfaState.cs │ ├── ExactCharacterNfaState.cs │ ├── FinalNfaState.cs │ ├── INfaState.cs │ ├── InitialNfaState.cs │ ├── NfaStateMachineFactory.cs │ ├── NfaStreamRegex.cs │ ├── NopNfaState.cs │ ├── OptionalNfaState.cs │ └── RepeatCharacterZeroPlusNFAState.cs ├── Readme.txt └── StreamRegex.Automata.csproj ├── StreamRegex.Benchmarks ├── AsyncVsSyncBenchmarks.cs ├── BufferSizeBenchmarks.cs ├── LargeFileBenchmarks.cs ├── PerformanceVsStandard.cs ├── Program.cs └── StreamRegex.Benchmarks.csproj ├── StreamRegex.Extensions ├── Core │ ├── SlidingBufferExtensions.cs │ └── SlidingBufferExtensionsAsync.cs ├── DelegateOptions.cs ├── Indexing │ └── IndexExtensions.cs ├── IsExternalInit.cs ├── RegexExtensions │ ├── RegexCache.cs │ ├── RegexMethods.cs │ ├── StreamRegexExtensions.cs │ ├── StreamRegexExtensionsAsync.cs │ ├── StreamRegexMatch.cs │ └── StreamRegexOptions.cs ├── SlidingBufferMatch.cs ├── SlidingBufferMatchCollection.cs ├── SlidingBufferOptions.cs ├── StreamRegex.Extensions.csproj └── StringMethods │ ├── StringMatcher.cs │ ├── StringMethodExtensions.cs │ └── StringMethodExtensionsAsync.cs ├── StreamRegex.Tests ├── ExtensionTests.cs ├── ExtensionTestsAsync.cs ├── GetRangeTests.cs └── StreamRegex.Tests.csproj ├── StreamRegex.sln ├── docfx ├── .gitignore ├── api │ ├── .gitignore │ └── index.md ├── docfx.json ├── index.md ├── templates │ └── singulinkfx │ │ ├── layout │ │ └── _master.tmpl │ │ ├── partials │ │ ├── footer.tmpl.partial │ │ ├── head.tmpl.partial │ │ ├── li.tmpl.partial │ │ ├── logo.tmpl.partial │ │ ├── namespace.tmpl.partial │ │ ├── navbar.tmpl.partial │ │ ├── scripts.tmpl.partial │ │ ├── searchResults.tmpl.partial │ │ └── toc.tmpl.partial │ │ ├── styles │ │ ├── config.css │ │ ├── discord.css │ │ ├── down-arrow.svg │ │ ├── jquery.twbsPagination.js │ │ ├── main.css │ │ ├── main.js │ │ ├── singulink.css │ │ ├── singulink.js │ │ └── url.min.js │ │ └── toc.html.tmpl └── toc.yml └── version.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/publishnuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/.github/workflows/publishnuget.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.StreamRegex/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/.idea/.idea.StreamRegex/.idea/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/README.md -------------------------------------------------------------------------------- /StreamRegex.Automata.Tests/StateMachineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata.Tests/StateMachineTests.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/.idea/.idea.StreamRegex.Lib.dir/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/.idea/.idea.StreamRegex.Lib.dir/.idea/.gitignore -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/AnyCharacterDfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/AnyCharacterDfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/BaseDfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/BaseDfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/ComponentGroupDfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/ComponentGroupDfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/DfaStreamRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/DfaStreamRegex.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/ExactCharacterDfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/ExactCharacterDfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/FinalDfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/FinalDfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/IDfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/IDfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/NopDfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/NopDfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/RepeatCharacterZeroPlusDfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/RepeatCharacterZeroPlusDfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/StateMachineFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/StateMachineFactory.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/DFA/StreamRegexMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/DFA/StreamRegexMatch.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/IState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/IState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/IStreamRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/IStreamRegex.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/AnyCharacterNfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/AnyCharacterNfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/BaseNfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/BaseNfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/ComponentGroupNfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/ComponentGroupNfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/ExactCharacterNfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/ExactCharacterNfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/FinalNfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/FinalNfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/INfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/INfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/InitialNfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/InitialNfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/NfaStateMachineFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/NfaStateMachineFactory.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/NfaStreamRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/NfaStreamRegex.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/NopNfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/NopNfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/OptionalNfaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/OptionalNfaState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/NFA/RepeatCharacterZeroPlusNFAState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/NFA/RepeatCharacterZeroPlusNFAState.cs -------------------------------------------------------------------------------- /StreamRegex.Automata/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/Readme.txt -------------------------------------------------------------------------------- /StreamRegex.Automata/StreamRegex.Automata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Automata/StreamRegex.Automata.csproj -------------------------------------------------------------------------------- /StreamRegex.Benchmarks/AsyncVsSyncBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Benchmarks/AsyncVsSyncBenchmarks.cs -------------------------------------------------------------------------------- /StreamRegex.Benchmarks/BufferSizeBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Benchmarks/BufferSizeBenchmarks.cs -------------------------------------------------------------------------------- /StreamRegex.Benchmarks/LargeFileBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Benchmarks/LargeFileBenchmarks.cs -------------------------------------------------------------------------------- /StreamRegex.Benchmarks/PerformanceVsStandard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Benchmarks/PerformanceVsStandard.cs -------------------------------------------------------------------------------- /StreamRegex.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Benchmarks/Program.cs -------------------------------------------------------------------------------- /StreamRegex.Benchmarks/StreamRegex.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Benchmarks/StreamRegex.Benchmarks.csproj -------------------------------------------------------------------------------- /StreamRegex.Extensions/Core/SlidingBufferExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/Core/SlidingBufferExtensions.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/Core/SlidingBufferExtensionsAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/Core/SlidingBufferExtensionsAsync.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/DelegateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/DelegateOptions.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/Indexing/IndexExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/Indexing/IndexExtensions.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/IsExternalInit.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/RegexExtensions/RegexCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/RegexExtensions/RegexCache.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/RegexExtensions/RegexMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/RegexExtensions/RegexMethods.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/RegexExtensions/StreamRegexExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/RegexExtensions/StreamRegexExtensions.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/RegexExtensions/StreamRegexExtensionsAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/RegexExtensions/StreamRegexExtensionsAsync.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/RegexExtensions/StreamRegexMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/RegexExtensions/StreamRegexMatch.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/RegexExtensions/StreamRegexOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/RegexExtensions/StreamRegexOptions.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/SlidingBufferMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/SlidingBufferMatch.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/SlidingBufferMatchCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/SlidingBufferMatchCollection.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/SlidingBufferOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/SlidingBufferOptions.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/StreamRegex.Extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/StreamRegex.Extensions.csproj -------------------------------------------------------------------------------- /StreamRegex.Extensions/StringMethods/StringMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/StringMethods/StringMatcher.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/StringMethods/StringMethodExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/StringMethods/StringMethodExtensions.cs -------------------------------------------------------------------------------- /StreamRegex.Extensions/StringMethods/StringMethodExtensionsAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Extensions/StringMethods/StringMethodExtensionsAsync.cs -------------------------------------------------------------------------------- /StreamRegex.Tests/ExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Tests/ExtensionTests.cs -------------------------------------------------------------------------------- /StreamRegex.Tests/ExtensionTestsAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Tests/ExtensionTestsAsync.cs -------------------------------------------------------------------------------- /StreamRegex.Tests/GetRangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Tests/GetRangeTests.cs -------------------------------------------------------------------------------- /StreamRegex.Tests/StreamRegex.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.Tests/StreamRegex.Tests.csproj -------------------------------------------------------------------------------- /StreamRegex.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/StreamRegex.sln -------------------------------------------------------------------------------- /docfx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/.gitignore -------------------------------------------------------------------------------- /docfx/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/api/.gitignore -------------------------------------------------------------------------------- /docfx/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/api/index.md -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/index.md -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/layout/_master.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/layout/_master.tmpl -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/partials/footer.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/partials/footer.tmpl.partial -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/partials/head.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/partials/head.tmpl.partial -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/partials/li.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/partials/li.tmpl.partial -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/partials/logo.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/partials/logo.tmpl.partial -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/partials/namespace.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/partials/namespace.tmpl.partial -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/partials/navbar.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/partials/navbar.tmpl.partial -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/partials/scripts.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/partials/scripts.tmpl.partial -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/partials/searchResults.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/partials/searchResults.tmpl.partial -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/partials/toc.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/partials/toc.tmpl.partial -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/styles/config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/styles/config.css -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/styles/discord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/styles/discord.css -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/styles/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/styles/down-arrow.svg -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/styles/jquery.twbsPagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/styles/jquery.twbsPagination.js -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/styles/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/styles/singulink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/styles/singulink.css -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/styles/singulink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/styles/singulink.js -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/styles/url.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/styles/url.min.js -------------------------------------------------------------------------------- /docfx/templates/singulinkfx/toc.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/templates/singulinkfx/toc.html.tmpl -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/docfx/toc.yml -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfs/StreamRegex/HEAD/version.json --------------------------------------------------------------------------------