├── .gitignore ├── AssemblyVersion.cs ├── Lib ├── Aga.Controls.dll ├── DotNet35 │ ├── Readme.txt │ └── Theraot.Core.dll ├── UpdateControls.Forms.XML ├── UpdateControls.Forms.dll ├── UpdateControls.dll └── UpdateControls.xml ├── License.txt ├── Loyc.Collections.nuspec ├── Loyc.Collections ├── ALists │ ├── AList.cd │ ├── AList.cs │ ├── AListBase.cs │ ├── AListIndexer.cs │ ├── AListInner.cs │ ├── AListInnerBase.cs │ ├── AListLeaf.cs │ ├── AListNode.cs │ ├── AListNodeObserver.cs │ ├── BDictionary.cs │ ├── BList.cs │ ├── BListInner.cs │ ├── BListLeaf.cs │ ├── BMultiMap.cs │ ├── IAListTreeObserver.cs │ ├── IndexedAList.cs │ ├── SparseAList.cs │ └── SparseAListLeaf.cs ├── CG.cs ├── Loyc.Collections.csproj ├── OpenSourceKey.snk ├── Other │ ├── ArrayOf4.cs │ ├── Bijection.cs │ ├── BloomFilterM64K2.cs │ ├── Co.cs │ ├── NestedEnumerator.cs │ ├── SimpleCache.cs │ └── TestHelpers.cs ├── Properties │ └── AssemblyInfo.cs ├── Sets │ ├── InternalSet.cs │ ├── InternalSetV1.cs │ ├── InvertibleSet.cs │ ├── MMap.cs │ ├── MSet.cs │ ├── Map.cs │ └── Set.cs └── VLists │ ├── Diagrams │ ├── ChangingPList.png │ ├── IdealVList.png │ ├── LinkedList.png │ ├── PathologicalVList.png │ ├── VListSharing1.png │ ├── VListSharing2.png │ ├── WList.png │ ├── WListImmutification.png │ └── WListRemutification.png │ ├── FVList.cs │ ├── FWList.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── VList.cs │ ├── VListBlock.cs │ ├── VListBlockArray.cs │ ├── VListBlockOfTwo.cs │ ├── WList.cs │ └── WListBase.cs ├── Loyc.Essentials.nuspec ├── Loyc.Essentials ├── Collections │ ├── Adapters │ │ ├── ArraySlice.cs │ │ ├── BufferedSequence.cs │ │ ├── CollectionAsSource.cs │ │ ├── KeyCollection.cs │ │ ├── ListAsListSource.cs │ │ ├── ListSlice.cs │ │ ├── ListSourceAsList.cs │ │ ├── ListSourceAsSparse.cs │ │ ├── NegList.cs │ │ ├── NegListSlice.cs │ │ ├── NegListSource.cs │ │ ├── ReverseBinumerator.cs │ │ ├── ReversedList.cs │ │ ├── ReversedListSource.cs │ │ ├── Slice.cs │ │ ├── SourceAsCollection.cs │ │ └── ValueCollection.cs │ ├── BaseClasses │ │ ├── BaseDictionary.cs │ │ ├── EnumeratorBase.cs │ │ ├── ListExBase.cs │ │ ├── ListSourceBase.cs │ │ └── ReadOnlyCollectionBase.cs │ ├── CollectionDebugView.cs │ ├── ExtensionMethods │ │ ├── DictionaryExt.cs │ │ ├── EnumerableExt.cs │ │ ├── LCExtensions.cs │ │ ├── LinqToLists.ecs │ │ ├── LinqToLists.out.cs │ │ ├── ListExt.cs │ │ └── Range.cs │ ├── HelperClasses │ │ ├── EmptyArray.cs │ │ ├── EmptyEnumerator.cs │ │ ├── EmptyList.cs │ │ ├── NumRange.cs │ │ ├── RangeEnumerator.cs │ │ ├── Repeated.cs │ │ ├── SelectListSource.ecs │ │ └── SelectListSource.out.cs │ ├── Implementations │ │ ├── DList.cs │ │ ├── InternalDList.cs │ │ ├── InternalList.cs │ │ ├── ListChangeInfo.cs │ │ ├── WeakKeyComparer.cs │ │ ├── WeakKeyDictionary.cs │ │ └── WeakValueDictionary.cs │ └── Interfaces │ │ ├── IAutoCreatePool.cs │ │ ├── ICharSource.cs │ │ ├── ICount.cs │ │ ├── IListSource.cs │ │ ├── INegListSource.cs │ │ ├── INotifyListChanging.cs │ │ ├── IRanges.cs │ │ ├── ISetImm.cs │ │ ├── ISparseList.cs │ │ ├── New enumerators.cs │ │ ├── Queue interfaces.cs │ │ ├── Read-write interfaces.cs │ │ └── Sink interfaces.cs ├── Compatibility │ ├── Contract.Assert.cs │ ├── Enum.cs │ ├── IReadOnlyCollections.cs │ ├── Serializable.cs │ └── WeakReference.cs ├── Geometry │ ├── IPoint.cs │ ├── IPoint3.cs │ ├── IRectangle.cs │ └── IRectangle3.cs ├── Loyc.Essentials.csproj ├── Math │ └── Interfaces.cs ├── MessageSinks │ ├── BasicSinks.cs │ ├── IMessageSink.cs │ ├── MessageHolder.cs │ ├── MessageSink.ecs │ ├── MessageSink.out.cs │ ├── Misc.cs │ └── WrapperSinks.cs ├── NamespaceDocs.cs ├── OpenSourceKey.snk ├── Properties │ └── AssemblyInfo.cs ├── Strings │ ├── StringBuilderExt.cs │ ├── StringExt.cs │ ├── StringSlice.cs │ └── UString.cs ├── Utilities │ ├── Exceptions.cs │ ├── Extensions.cs │ ├── EzStopwatch.cs │ ├── G.cs │ ├── GRange.ecs │ ├── GRange.out.cs │ ├── HashTags.cs │ ├── IoC.cs │ ├── Localize.cs │ ├── Maybe.cs │ ├── MemoizedTypeName.cs │ ├── MiniTest.cs │ ├── MiscInterfaces.cs │ ├── Pair.cs │ ├── PrintHelpers.cs │ ├── RunTests.cs │ ├── SavedValue.cs │ ├── Symbol.cs │ ├── ThreadEx.cs │ ├── ValueComparer.cs │ └── WrapperBase.cs ├── app.config └── void.cs ├── Loyc.Math.nuspec ├── Loyc.Math ├── Geometry │ ├── BoundingBox.cs │ ├── BoundingBoxMathTT.cs │ ├── BoundingBoxMathTT.tt │ ├── LineMath.cs │ ├── LineMathTT.cs │ ├── LineMathTT.tt │ ├── LineSegment.cs │ ├── PointExt.cs │ ├── PointMath.cs │ ├── PointMathTT.cs │ ├── PointMathTT.tt │ ├── PointT.cs │ ├── PolygonMathTT.cs │ ├── PolygonMathTT.tt │ ├── Rectangle3Ext.cs │ ├── RectangleExt.cs │ ├── Vector3T.cs │ └── VectorT.cs ├── Loyc.Math.csproj ├── Math │ ├── FixedPoint.cs │ ├── FixedPoint.tt │ ├── Math128.cs │ ├── MathEx.cs │ ├── Maths.cs │ ├── Maths.tt │ ├── MathsT.cs │ └── NumTraits.ttinclude ├── OpenSourceKey.snk ├── Properties │ └── AssemblyInfo.cs ├── Range.ecs └── Range.out.cs ├── Loyc.Syntax.nuspec ├── Loyc.Syntax ├── CodeSymbols.cs ├── IParsingService.cs ├── LES │ ├── INodePrinterWriter.cs │ ├── Les2LanguageService.cs │ ├── Les2Lexer.cs │ ├── Les2LexerGrammar.les │ ├── Les2LexerGrammar.out.cs │ ├── Les2Parser.cs │ ├── Les2ParserGrammar.les │ ├── Les2ParserGrammar.out.cs │ ├── Les2Printer.cs │ ├── Les2PrinterWriter.cs │ ├── Les3.cs │ ├── Les3LanguageService.cs │ ├── Les3Lexer.ecs │ ├── Les3Lexer.out.cs │ ├── Les3Parser.ecs │ ├── Les3Parser.out.cs │ ├── Les3PrettyPrinter.cs │ ├── Les3Printer.cs │ ├── LesPrecedence.cs │ ├── LesPrecedenceMap.cs │ ├── SpecialLiteral.cs │ └── TokenType.cs ├── LNodes │ ├── AbstractNodes.cs │ ├── DescendantsFrame.cs │ ├── ILNode.cs │ ├── ILNodePrinter.cs │ ├── ILNodePrintingOptions.cs │ ├── LNode.cs │ ├── LNodeExt.cs │ ├── LNodeFactory.cs │ ├── LNodeTests.cs │ ├── LNodeVisitor.cs │ ├── NodeStyle.cs │ ├── ParsingMode.cs │ └── StdNodes.cs ├── LeMP │ ├── IMacroContext.cs │ └── MacroAttributes.cs ├── Lexing │ ├── BaseILexer.cs │ ├── BaseLexer.cs │ ├── ILexer.cs │ ├── ILllpgApi.cs │ ├── IndentTokenGenerator.cs │ ├── LexerSource.cs │ ├── Token.cs │ ├── TokenKind.cs │ ├── TokenListAsLexer.cs │ ├── TokensToTree.cs │ ├── TriviaSaver.cs │ └── WhitespaceFilter.cs ├── Loyc.Syntax.csproj ├── OpenSourceKey.snk ├── Parsing │ ├── AbstractTriviaInjector.cs │ ├── BaseParser.cs │ ├── BaseParserForList.cs │ ├── BaseParserNoBacktracking.cs │ ├── OperatorShape.cs │ ├── ParseHelpers.cs │ ├── ParserSource.cs │ ├── Precedence.cs │ └── StandardTriviaInjector.cs ├── PrinterState.cs ├── Properties │ └── AssemblyInfo.cs └── SourceFiles │ ├── EmptySourceFile.cs │ ├── IIndexPositionMapper.cs │ ├── ISourceFile.cs │ ├── IndexPositionMapper.cs │ ├── LineRemapper.cs │ ├── SourcePos.cs │ ├── SourceRange.cs │ └── StreamCharSource.cs ├── Loyc.Utilities.nuspec ├── Loyc.Utilities ├── Collections │ ├── CPTrie │ │ ├── Benchmark.xlsx │ │ ├── CPBNode.cs │ │ ├── CPBitArrayLeaf.cs │ │ ├── CPByteTrie.cs │ │ ├── CPIntTrie.cs │ │ ├── CPSNode.cs │ │ ├── CPStringTrie.cs │ │ ├── CPTrie.cs │ │ ├── CPTrieBenchmark.cs │ │ ├── CPTrieMisc.cs │ │ ├── CPTrieTests.cs │ │ └── remember.txt │ └── KeylessHashtable.cs ├── GoInterface test project │ ├── GoInterface tests.csproj │ ├── GoInterface tests.sln │ ├── Program.cs │ ├── app.config │ └── nunit.framework.dll ├── GoInterface.cs ├── GoInterfaceBenchmark.cs ├── IntSet.cs ├── Loyc.Utilities.csproj ├── OpenSourceKey.snk ├── Properties │ └── AssemblyInfo.cs ├── SimpleTimer.cs ├── Statistic.cs ├── SymbolSet.cs ├── TagsInWList.cs ├── UG.cs └── app.config ├── LoycCore.Benchmarks ├── Benchmarks │ ├── Benchmark.cs │ ├── BenchmarkSets.cs │ ├── Benchmarker.cs │ ├── EzChartForm.Designer.cs │ ├── EzChartForm.cs │ ├── EzChartForm.resx │ ├── GoInterfaceBenchmark.cs │ └── ListBenchmarks.cs ├── LoycCore.Benchmarks.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── 2of12.txt │ ├── Resources.Designer.cs │ └── Resources.resx └── packages.config ├── LoycCore.nuspec ├── LoycCore.sln ├── MiniTestRunner ├── MiniTestRunner.csproj ├── Model │ ├── ApplicationModel.cs │ ├── ContainerRowModel.cs │ ├── CrossDomainPropertyChangeHandler.cs │ ├── IRowModel.cs │ ├── NPCHelper.cs │ ├── OptionsModel.cs │ ├── ProjectModel.cs │ ├── ResultSet.cs │ ├── RowModel.cs │ ├── TaskRowModel.cs │ ├── TaskRunner.cs │ └── TreeModel.cs ├── OpenSourceKey.snk ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Assembly.png │ ├── Benchmark.png │ ├── Class.png │ ├── HighPriority.png │ ├── LowPriority.png │ ├── OpenProject.png │ ├── ResultSet.png │ ├── RunIcon.png │ ├── SplitHorizontal.png │ ├── StatusError.png │ ├── StatusFlag.png │ ├── StatusIgnored.png │ ├── StatusMessage.png │ ├── StatusNote.png │ ├── StatusRunning.png │ ├── StatusSuccess.png │ ├── StatusUnknown.png │ ├── StatusWarning.png │ ├── StopIcon.png │ ├── Test.png │ ├── TestSet.png │ ├── TreeOnly.png │ └── WordWrap.png ├── TestDomain │ ├── AssemblyScanTask.cs │ ├── IPropertyChanged.cs │ ├── ITask.cs │ ├── TaskBase.cs │ └── UnitTestTask.cs ├── Utils │ ├── AppDomainStarter.cs │ ├── BaseDictionary.cs │ ├── RecycleBin.cs │ ├── ViewModelOf.cs │ ├── WeakKeyComparer.cs │ ├── WeakKeyDictionary.cs │ └── WeakReference.cs ├── View │ ├── RowView.cs │ ├── TestingForm.Designer.cs │ ├── TestingForm.cs │ ├── TestingForm.resx │ └── TreeViewAdvModel.cs ├── ViewModel │ ├── DisplaySettingsVM.cs │ ├── FilterVM.cs │ ├── RowVM.cs │ └── TreeVM.cs └── app.config ├── Readme.md └── Tests ├── BooLexerCoreTest.cs ├── BooLexerTest.cs ├── Collections ├── ALists │ ├── AListTestBase.cs │ ├── AListTests.cs │ ├── BDictionaryTests.cs │ ├── BListTests.cs │ └── SparseAListTests.cs ├── DequeTests.cs ├── DictionaryTests.cs ├── ListCollectionTests.cs ├── ListRangeTests.cs ├── ListTests.cs ├── MapTests.cs ├── SetTests.cs └── VLists │ ├── FVListTests.cs │ ├── FWListTests.cs │ ├── VListTests.cs │ └── WListTests.cs ├── EssentialTreeParserTests.cs ├── Essentials ├── ExtensionsTests.cs ├── GTests.cs ├── HashTagsTests.cs ├── ListExtTests.cs ├── LocalizeTests.cs ├── PrintHelpersTests.cs ├── SymbolTests.cs ├── ThreadExTests.cs └── UStringTests.cs ├── Log4netTest.cs ├── LoycCore.Tests.csproj ├── LoycParserGenerator.cs ├── Math ├── LineMathTests.cs ├── MathExTests.cs └── PointMathTests.cs ├── OneParserTest.cs ├── OpenSourceKey.snk ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── Syntax ├── IndentTokenGeneratorTests.cs ├── IndexPositionMapperTests.cs ├── Les2LexerTests.cs ├── Les2ParserTests.cs ├── Les2PrinterAndParserTests.cs ├── Les2PrinterTests.cs ├── Les3LexerTests.cs ├── Les3ParserTests.cs ├── Les3PrinterAndParserTests.cs ├── Les3PrinterTests.cs ├── LexerSourceTest.ecs ├── LexerSourceTest.out.cs ├── ParseHelperTests.cs ├── ParserSourceTest.ecs ├── ParserSourceTest.out.cs ├── StandardTriviaInjectorTests.cs ├── StreamCharSourceTests.cs ├── TokenTests.cs └── TokensToTreeTests.cs ├── Utilities ├── GoInterfaceTests.cs ├── IntSetTests.cs └── TagsInWListTests.cs ├── app.config └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/.gitignore -------------------------------------------------------------------------------- /AssemblyVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/AssemblyVersion.cs -------------------------------------------------------------------------------- /Lib/Aga.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Lib/Aga.Controls.dll -------------------------------------------------------------------------------- /Lib/DotNet35/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Lib/DotNet35/Readme.txt -------------------------------------------------------------------------------- /Lib/DotNet35/Theraot.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Lib/DotNet35/Theraot.Core.dll -------------------------------------------------------------------------------- /Lib/UpdateControls.Forms.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Lib/UpdateControls.Forms.XML -------------------------------------------------------------------------------- /Lib/UpdateControls.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Lib/UpdateControls.Forms.dll -------------------------------------------------------------------------------- /Lib/UpdateControls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Lib/UpdateControls.dll -------------------------------------------------------------------------------- /Lib/UpdateControls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Lib/UpdateControls.xml -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/License.txt -------------------------------------------------------------------------------- /Loyc.Collections.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections.nuspec -------------------------------------------------------------------------------- /Loyc.Collections/ALists/AList.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/AList.cd -------------------------------------------------------------------------------- /Loyc.Collections/ALists/AList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/AList.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/AListBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/AListBase.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/AListIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/AListIndexer.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/AListInner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/AListInner.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/AListInnerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/AListInnerBase.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/AListLeaf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/AListLeaf.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/AListNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/AListNode.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/AListNodeObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/AListNodeObserver.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/BDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/BDictionary.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/BList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/BList.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/BListInner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/BListInner.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/BListLeaf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/BListLeaf.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/BMultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/BMultiMap.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/IAListTreeObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/IAListTreeObserver.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/IndexedAList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/IndexedAList.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/SparseAList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/SparseAList.cs -------------------------------------------------------------------------------- /Loyc.Collections/ALists/SparseAListLeaf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/ALists/SparseAListLeaf.cs -------------------------------------------------------------------------------- /Loyc.Collections/CG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/CG.cs -------------------------------------------------------------------------------- /Loyc.Collections/Loyc.Collections.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Loyc.Collections.csproj -------------------------------------------------------------------------------- /Loyc.Collections/OpenSourceKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/OpenSourceKey.snk -------------------------------------------------------------------------------- /Loyc.Collections/Other/ArrayOf4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Other/ArrayOf4.cs -------------------------------------------------------------------------------- /Loyc.Collections/Other/Bijection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Other/Bijection.cs -------------------------------------------------------------------------------- /Loyc.Collections/Other/BloomFilterM64K2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Other/BloomFilterM64K2.cs -------------------------------------------------------------------------------- /Loyc.Collections/Other/Co.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Other/Co.cs -------------------------------------------------------------------------------- /Loyc.Collections/Other/NestedEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Other/NestedEnumerator.cs -------------------------------------------------------------------------------- /Loyc.Collections/Other/SimpleCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Other/SimpleCache.cs -------------------------------------------------------------------------------- /Loyc.Collections/Other/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Other/TestHelpers.cs -------------------------------------------------------------------------------- /Loyc.Collections/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Loyc.Collections/Sets/InternalSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Sets/InternalSet.cs -------------------------------------------------------------------------------- /Loyc.Collections/Sets/InternalSetV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Sets/InternalSetV1.cs -------------------------------------------------------------------------------- /Loyc.Collections/Sets/InvertibleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Sets/InvertibleSet.cs -------------------------------------------------------------------------------- /Loyc.Collections/Sets/MMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Sets/MMap.cs -------------------------------------------------------------------------------- /Loyc.Collections/Sets/MSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Sets/MSet.cs -------------------------------------------------------------------------------- /Loyc.Collections/Sets/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Sets/Map.cs -------------------------------------------------------------------------------- /Loyc.Collections/Sets/Set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/Sets/Set.cs -------------------------------------------------------------------------------- /Loyc.Collections/VLists/Diagrams/ChangingPList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/Diagrams/ChangingPList.png -------------------------------------------------------------------------------- /Loyc.Collections/VLists/Diagrams/IdealVList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/Diagrams/IdealVList.png -------------------------------------------------------------------------------- /Loyc.Collections/VLists/Diagrams/LinkedList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/Diagrams/LinkedList.png -------------------------------------------------------------------------------- /Loyc.Collections/VLists/Diagrams/PathologicalVList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/Diagrams/PathologicalVList.png -------------------------------------------------------------------------------- /Loyc.Collections/VLists/Diagrams/VListSharing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/Diagrams/VListSharing1.png -------------------------------------------------------------------------------- /Loyc.Collections/VLists/Diagrams/VListSharing2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/Diagrams/VListSharing2.png -------------------------------------------------------------------------------- /Loyc.Collections/VLists/Diagrams/WList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/Diagrams/WList.png -------------------------------------------------------------------------------- /Loyc.Collections/VLists/Diagrams/WListImmutification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/Diagrams/WListImmutification.png -------------------------------------------------------------------------------- /Loyc.Collections/VLists/Diagrams/WListRemutification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/Diagrams/WListRemutification.png -------------------------------------------------------------------------------- /Loyc.Collections/VLists/FVList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/FVList.cs -------------------------------------------------------------------------------- /Loyc.Collections/VLists/FWList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/FWList.cs -------------------------------------------------------------------------------- /Loyc.Collections/VLists/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Loyc.Collections/VLists/VList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/VList.cs -------------------------------------------------------------------------------- /Loyc.Collections/VLists/VListBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/VListBlock.cs -------------------------------------------------------------------------------- /Loyc.Collections/VLists/VListBlockArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/VListBlockArray.cs -------------------------------------------------------------------------------- /Loyc.Collections/VLists/VListBlockOfTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/VListBlockOfTwo.cs -------------------------------------------------------------------------------- /Loyc.Collections/VLists/WList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/WList.cs -------------------------------------------------------------------------------- /Loyc.Collections/VLists/WListBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Collections/VLists/WListBase.cs -------------------------------------------------------------------------------- /Loyc.Essentials.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials.nuspec -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/ArraySlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/ArraySlice.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/BufferedSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/BufferedSequence.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/CollectionAsSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/CollectionAsSource.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/KeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/KeyCollection.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/ListAsListSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/ListAsListSource.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/ListSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/ListSlice.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/ListSourceAsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/ListSourceAsList.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/ListSourceAsSparse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/ListSourceAsSparse.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/NegList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/NegList.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/NegListSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/NegListSlice.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/NegListSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/NegListSource.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/ReverseBinumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/ReverseBinumerator.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/ReversedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/ReversedList.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/ReversedListSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/ReversedListSource.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/Slice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/Slice.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/SourceAsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/SourceAsCollection.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Adapters/ValueCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Adapters/ValueCollection.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/BaseClasses/BaseDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/BaseClasses/BaseDictionary.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/BaseClasses/EnumeratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/BaseClasses/EnumeratorBase.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/BaseClasses/ListExBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/BaseClasses/ListExBase.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/BaseClasses/ListSourceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/BaseClasses/ListSourceBase.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/BaseClasses/ReadOnlyCollectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/BaseClasses/ReadOnlyCollectionBase.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/CollectionDebugView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/CollectionDebugView.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/ExtensionMethods/DictionaryExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/ExtensionMethods/DictionaryExt.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/ExtensionMethods/EnumerableExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/ExtensionMethods/EnumerableExt.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/ExtensionMethods/LCExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/ExtensionMethods/LCExtensions.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/ExtensionMethods/LinqToLists.ecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/ExtensionMethods/LinqToLists.ecs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/ExtensionMethods/LinqToLists.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/ExtensionMethods/LinqToLists.out.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/ExtensionMethods/ListExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/ExtensionMethods/ListExt.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/ExtensionMethods/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/ExtensionMethods/Range.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/HelperClasses/EmptyArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/HelperClasses/EmptyArray.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/HelperClasses/EmptyEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/HelperClasses/EmptyEnumerator.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/HelperClasses/EmptyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/HelperClasses/EmptyList.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/HelperClasses/NumRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/HelperClasses/NumRange.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/HelperClasses/RangeEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/HelperClasses/RangeEnumerator.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/HelperClasses/Repeated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/HelperClasses/Repeated.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/HelperClasses/SelectListSource.ecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/HelperClasses/SelectListSource.ecs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/HelperClasses/SelectListSource.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/HelperClasses/SelectListSource.out.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Implementations/DList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Implementations/DList.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Implementations/InternalDList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Implementations/InternalDList.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Implementations/InternalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Implementations/InternalList.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Implementations/ListChangeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Implementations/ListChangeInfo.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Implementations/WeakKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Implementations/WeakKeyComparer.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Implementations/WeakKeyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Implementations/WeakKeyDictionary.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Implementations/WeakValueDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Implementations/WeakValueDictionary.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/IAutoCreatePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/IAutoCreatePool.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/ICharSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/ICharSource.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/ICount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/ICount.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/IListSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/IListSource.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/INegListSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/INegListSource.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/INotifyListChanging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/INotifyListChanging.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/IRanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/IRanges.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/ISetImm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/ISetImm.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/ISparseList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/ISparseList.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/New enumerators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/New enumerators.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/Queue interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/Queue interfaces.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/Read-write interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/Read-write interfaces.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Collections/Interfaces/Sink interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Collections/Interfaces/Sink interfaces.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Compatibility/Contract.Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Compatibility/Contract.Assert.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Compatibility/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Compatibility/Enum.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Compatibility/IReadOnlyCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Compatibility/IReadOnlyCollections.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Compatibility/Serializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Compatibility/Serializable.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Compatibility/WeakReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Compatibility/WeakReference.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Geometry/IPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Geometry/IPoint.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Geometry/IPoint3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Geometry/IPoint3.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Geometry/IRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Geometry/IRectangle.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Geometry/IRectangle3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Geometry/IRectangle3.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Loyc.Essentials.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Loyc.Essentials.csproj -------------------------------------------------------------------------------- /Loyc.Essentials/Math/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Math/Interfaces.cs -------------------------------------------------------------------------------- /Loyc.Essentials/MessageSinks/BasicSinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/MessageSinks/BasicSinks.cs -------------------------------------------------------------------------------- /Loyc.Essentials/MessageSinks/IMessageSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/MessageSinks/IMessageSink.cs -------------------------------------------------------------------------------- /Loyc.Essentials/MessageSinks/MessageHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/MessageSinks/MessageHolder.cs -------------------------------------------------------------------------------- /Loyc.Essentials/MessageSinks/MessageSink.ecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/MessageSinks/MessageSink.ecs -------------------------------------------------------------------------------- /Loyc.Essentials/MessageSinks/MessageSink.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/MessageSinks/MessageSink.out.cs -------------------------------------------------------------------------------- /Loyc.Essentials/MessageSinks/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/MessageSinks/Misc.cs -------------------------------------------------------------------------------- /Loyc.Essentials/MessageSinks/WrapperSinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/MessageSinks/WrapperSinks.cs -------------------------------------------------------------------------------- /Loyc.Essentials/NamespaceDocs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/NamespaceDocs.cs -------------------------------------------------------------------------------- /Loyc.Essentials/OpenSourceKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/OpenSourceKey.snk -------------------------------------------------------------------------------- /Loyc.Essentials/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Strings/StringBuilderExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Strings/StringBuilderExt.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Strings/StringExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Strings/StringExt.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Strings/StringSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Strings/StringSlice.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Strings/UString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Strings/UString.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/Exceptions.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/Extensions.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/EzStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/EzStopwatch.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/G.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/G.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/GRange.ecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/GRange.ecs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/GRange.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/GRange.out.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/HashTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/HashTags.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/IoC.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/Localize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/Localize.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/Maybe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/Maybe.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/MemoizedTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/MemoizedTypeName.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/MiniTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/MiniTest.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/MiscInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/MiscInterfaces.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/Pair.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/PrintHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/PrintHelpers.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/RunTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/RunTests.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/SavedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/SavedValue.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/Symbol.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/ThreadEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/ThreadEx.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/ValueComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/ValueComparer.cs -------------------------------------------------------------------------------- /Loyc.Essentials/Utilities/WrapperBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/Utilities/WrapperBase.cs -------------------------------------------------------------------------------- /Loyc.Essentials/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/app.config -------------------------------------------------------------------------------- /Loyc.Essentials/void.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Essentials/void.cs -------------------------------------------------------------------------------- /Loyc.Math.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math.nuspec -------------------------------------------------------------------------------- /Loyc.Math/Geometry/BoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/BoundingBox.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/BoundingBoxMathTT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/BoundingBoxMathTT.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/BoundingBoxMathTT.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/BoundingBoxMathTT.tt -------------------------------------------------------------------------------- /Loyc.Math/Geometry/LineMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/LineMath.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/LineMathTT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/LineMathTT.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/LineMathTT.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/LineMathTT.tt -------------------------------------------------------------------------------- /Loyc.Math/Geometry/LineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/LineSegment.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/PointExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/PointExt.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/PointMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/PointMath.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/PointMathTT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/PointMathTT.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/PointMathTT.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/PointMathTT.tt -------------------------------------------------------------------------------- /Loyc.Math/Geometry/PointT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/PointT.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/PolygonMathTT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/PolygonMathTT.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/PolygonMathTT.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/PolygonMathTT.tt -------------------------------------------------------------------------------- /Loyc.Math/Geometry/Rectangle3Ext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/Rectangle3Ext.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/RectangleExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/RectangleExt.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/Vector3T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/Vector3T.cs -------------------------------------------------------------------------------- /Loyc.Math/Geometry/VectorT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Geometry/VectorT.cs -------------------------------------------------------------------------------- /Loyc.Math/Loyc.Math.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Loyc.Math.csproj -------------------------------------------------------------------------------- /Loyc.Math/Math/FixedPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Math/FixedPoint.cs -------------------------------------------------------------------------------- /Loyc.Math/Math/FixedPoint.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Math/FixedPoint.tt -------------------------------------------------------------------------------- /Loyc.Math/Math/Math128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Math/Math128.cs -------------------------------------------------------------------------------- /Loyc.Math/Math/MathEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Math/MathEx.cs -------------------------------------------------------------------------------- /Loyc.Math/Math/Maths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Math/Maths.cs -------------------------------------------------------------------------------- /Loyc.Math/Math/Maths.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Math/Maths.tt -------------------------------------------------------------------------------- /Loyc.Math/Math/MathsT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Math/MathsT.cs -------------------------------------------------------------------------------- /Loyc.Math/Math/NumTraits.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Math/NumTraits.ttinclude -------------------------------------------------------------------------------- /Loyc.Math/OpenSourceKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/OpenSourceKey.snk -------------------------------------------------------------------------------- /Loyc.Math/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Loyc.Math/Range.ecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Range.ecs -------------------------------------------------------------------------------- /Loyc.Math/Range.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Math/Range.out.cs -------------------------------------------------------------------------------- /Loyc.Syntax.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax.nuspec -------------------------------------------------------------------------------- /Loyc.Syntax/CodeSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/CodeSymbols.cs -------------------------------------------------------------------------------- /Loyc.Syntax/IParsingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/IParsingService.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/INodePrinterWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/INodePrinterWriter.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les2LanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les2LanguageService.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les2Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les2Lexer.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les2LexerGrammar.les: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les2LexerGrammar.les -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les2LexerGrammar.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les2LexerGrammar.out.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les2Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les2Parser.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les2ParserGrammar.les: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les2ParserGrammar.les -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les2ParserGrammar.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les2ParserGrammar.out.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les2Printer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les2Printer.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les2PrinterWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les2PrinterWriter.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les3.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les3LanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les3LanguageService.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les3Lexer.ecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les3Lexer.ecs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les3Lexer.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les3Lexer.out.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les3Parser.ecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les3Parser.ecs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les3Parser.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les3Parser.out.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les3PrettyPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les3PrettyPrinter.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/Les3Printer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/Les3Printer.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/LesPrecedence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/LesPrecedence.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/LesPrecedenceMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/LesPrecedenceMap.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/SpecialLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/SpecialLiteral.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LES/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LES/TokenType.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/AbstractNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/AbstractNodes.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/DescendantsFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/DescendantsFrame.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/ILNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/ILNode.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/ILNodePrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/ILNodePrinter.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/ILNodePrintingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/ILNodePrintingOptions.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/LNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/LNode.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/LNodeExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/LNodeExt.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/LNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/LNodeFactory.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/LNodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/LNodeTests.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/LNodeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/LNodeVisitor.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/NodeStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/NodeStyle.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/ParsingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/ParsingMode.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LNodes/StdNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LNodes/StdNodes.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LeMP/IMacroContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LeMP/IMacroContext.cs -------------------------------------------------------------------------------- /Loyc.Syntax/LeMP/MacroAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/LeMP/MacroAttributes.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/BaseILexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/BaseILexer.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/BaseLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/BaseLexer.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/ILexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/ILexer.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/ILllpgApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/ILllpgApi.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/IndentTokenGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/IndentTokenGenerator.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/LexerSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/LexerSource.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/Token.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/TokenKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/TokenKind.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/TokenListAsLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/TokenListAsLexer.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/TokensToTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/TokensToTree.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/TriviaSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/TriviaSaver.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Lexing/WhitespaceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Lexing/WhitespaceFilter.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Loyc.Syntax.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Loyc.Syntax.csproj -------------------------------------------------------------------------------- /Loyc.Syntax/OpenSourceKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/OpenSourceKey.snk -------------------------------------------------------------------------------- /Loyc.Syntax/Parsing/AbstractTriviaInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Parsing/AbstractTriviaInjector.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Parsing/BaseParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Parsing/BaseParser.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Parsing/BaseParserForList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Parsing/BaseParserForList.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Parsing/BaseParserNoBacktracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Parsing/BaseParserNoBacktracking.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Parsing/OperatorShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Parsing/OperatorShape.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Parsing/ParseHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Parsing/ParseHelpers.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Parsing/ParserSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Parsing/ParserSource.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Parsing/Precedence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Parsing/Precedence.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Parsing/StandardTriviaInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Parsing/StandardTriviaInjector.cs -------------------------------------------------------------------------------- /Loyc.Syntax/PrinterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/PrinterState.cs -------------------------------------------------------------------------------- /Loyc.Syntax/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Loyc.Syntax/SourceFiles/EmptySourceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/SourceFiles/EmptySourceFile.cs -------------------------------------------------------------------------------- /Loyc.Syntax/SourceFiles/IIndexPositionMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/SourceFiles/IIndexPositionMapper.cs -------------------------------------------------------------------------------- /Loyc.Syntax/SourceFiles/ISourceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/SourceFiles/ISourceFile.cs -------------------------------------------------------------------------------- /Loyc.Syntax/SourceFiles/IndexPositionMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/SourceFiles/IndexPositionMapper.cs -------------------------------------------------------------------------------- /Loyc.Syntax/SourceFiles/LineRemapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/SourceFiles/LineRemapper.cs -------------------------------------------------------------------------------- /Loyc.Syntax/SourceFiles/SourcePos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/SourceFiles/SourcePos.cs -------------------------------------------------------------------------------- /Loyc.Syntax/SourceFiles/SourceRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/SourceFiles/SourceRange.cs -------------------------------------------------------------------------------- /Loyc.Syntax/SourceFiles/StreamCharSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Syntax/SourceFiles/StreamCharSource.cs -------------------------------------------------------------------------------- /Loyc.Utilities.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities.nuspec -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/Benchmark.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/Benchmark.xlsx -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/CPBNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/CPBNode.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/CPBitArrayLeaf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/CPBitArrayLeaf.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/CPByteTrie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/CPByteTrie.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/CPIntTrie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/CPIntTrie.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/CPSNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/CPSNode.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/CPStringTrie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/CPStringTrie.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/CPTrie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/CPTrie.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/CPTrieBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/CPTrieBenchmark.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/CPTrieMisc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/CPTrieMisc.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/CPTrieTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/CPTrieTests.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/CPTrie/remember.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/CPTrie/remember.txt -------------------------------------------------------------------------------- /Loyc.Utilities/Collections/KeylessHashtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Collections/KeylessHashtable.cs -------------------------------------------------------------------------------- /Loyc.Utilities/GoInterface test project/GoInterface tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/GoInterface test project/GoInterface tests.csproj -------------------------------------------------------------------------------- /Loyc.Utilities/GoInterface test project/GoInterface tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/GoInterface test project/GoInterface tests.sln -------------------------------------------------------------------------------- /Loyc.Utilities/GoInterface test project/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/GoInterface test project/Program.cs -------------------------------------------------------------------------------- /Loyc.Utilities/GoInterface test project/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/GoInterface test project/app.config -------------------------------------------------------------------------------- /Loyc.Utilities/GoInterface test project/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/GoInterface test project/nunit.framework.dll -------------------------------------------------------------------------------- /Loyc.Utilities/GoInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/GoInterface.cs -------------------------------------------------------------------------------- /Loyc.Utilities/GoInterfaceBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/GoInterfaceBenchmark.cs -------------------------------------------------------------------------------- /Loyc.Utilities/IntSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/IntSet.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Loyc.Utilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Loyc.Utilities.csproj -------------------------------------------------------------------------------- /Loyc.Utilities/OpenSourceKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/OpenSourceKey.snk -------------------------------------------------------------------------------- /Loyc.Utilities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Loyc.Utilities/SimpleTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/SimpleTimer.cs -------------------------------------------------------------------------------- /Loyc.Utilities/Statistic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/Statistic.cs -------------------------------------------------------------------------------- /Loyc.Utilities/SymbolSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/SymbolSet.cs -------------------------------------------------------------------------------- /Loyc.Utilities/TagsInWList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/TagsInWList.cs -------------------------------------------------------------------------------- /Loyc.Utilities/UG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/UG.cs -------------------------------------------------------------------------------- /Loyc.Utilities/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Loyc.Utilities/app.config -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Benchmarks/Benchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Benchmarks/Benchmark.cs -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Benchmarks/BenchmarkSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Benchmarks/BenchmarkSets.cs -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Benchmarks/Benchmarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Benchmarks/Benchmarker.cs -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Benchmarks/EzChartForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Benchmarks/EzChartForm.Designer.cs -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Benchmarks/EzChartForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Benchmarks/EzChartForm.cs -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Benchmarks/EzChartForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Benchmarks/EzChartForm.resx -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Benchmarks/GoInterfaceBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Benchmarks/GoInterfaceBenchmark.cs -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Benchmarks/ListBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Benchmarks/ListBenchmarks.cs -------------------------------------------------------------------------------- /LoycCore.Benchmarks/LoycCore.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/LoycCore.Benchmarks.csproj -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Program.cs -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Resources/2of12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Resources/2of12.txt -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Resources/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Resources/Resources.Designer.cs -------------------------------------------------------------------------------- /LoycCore.Benchmarks/Resources/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/Resources/Resources.resx -------------------------------------------------------------------------------- /LoycCore.Benchmarks/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.Benchmarks/packages.config -------------------------------------------------------------------------------- /LoycCore.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.nuspec -------------------------------------------------------------------------------- /LoycCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/LoycCore.sln -------------------------------------------------------------------------------- /MiniTestRunner/MiniTestRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/MiniTestRunner.csproj -------------------------------------------------------------------------------- /MiniTestRunner/Model/ApplicationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/ApplicationModel.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/ContainerRowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/ContainerRowModel.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/CrossDomainPropertyChangeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/CrossDomainPropertyChangeHandler.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/IRowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/IRowModel.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/NPCHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/NPCHelper.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/OptionsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/OptionsModel.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/ProjectModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/ProjectModel.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/ResultSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/ResultSet.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/RowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/RowModel.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/TaskRowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/TaskRowModel.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/TaskRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/TaskRunner.cs -------------------------------------------------------------------------------- /MiniTestRunner/Model/TreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Model/TreeModel.cs -------------------------------------------------------------------------------- /MiniTestRunner/OpenSourceKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/OpenSourceKey.snk -------------------------------------------------------------------------------- /MiniTestRunner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Program.cs -------------------------------------------------------------------------------- /MiniTestRunner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MiniTestRunner/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MiniTestRunner/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Properties/Resources.resx -------------------------------------------------------------------------------- /MiniTestRunner/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MiniTestRunner/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Properties/Settings.settings -------------------------------------------------------------------------------- /MiniTestRunner/Resources/Assembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/Assembly.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/Benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/Benchmark.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/Class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/Class.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/HighPriority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/HighPriority.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/LowPriority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/LowPriority.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/OpenProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/OpenProject.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/ResultSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/ResultSet.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/RunIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/RunIcon.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/SplitHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/SplitHorizontal.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/StatusError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/StatusError.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/StatusFlag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/StatusFlag.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/StatusIgnored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/StatusIgnored.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/StatusMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/StatusMessage.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/StatusNote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/StatusNote.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/StatusRunning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/StatusRunning.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/StatusSuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/StatusSuccess.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/StatusUnknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/StatusUnknown.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/StatusWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/StatusWarning.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/StopIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/StopIcon.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/Test.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/TestSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/TestSet.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/TreeOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/TreeOnly.png -------------------------------------------------------------------------------- /MiniTestRunner/Resources/WordWrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Resources/WordWrap.png -------------------------------------------------------------------------------- /MiniTestRunner/TestDomain/AssemblyScanTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/TestDomain/AssemblyScanTask.cs -------------------------------------------------------------------------------- /MiniTestRunner/TestDomain/IPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/TestDomain/IPropertyChanged.cs -------------------------------------------------------------------------------- /MiniTestRunner/TestDomain/ITask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/TestDomain/ITask.cs -------------------------------------------------------------------------------- /MiniTestRunner/TestDomain/TaskBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/TestDomain/TaskBase.cs -------------------------------------------------------------------------------- /MiniTestRunner/TestDomain/UnitTestTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/TestDomain/UnitTestTask.cs -------------------------------------------------------------------------------- /MiniTestRunner/Utils/AppDomainStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Utils/AppDomainStarter.cs -------------------------------------------------------------------------------- /MiniTestRunner/Utils/BaseDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Utils/BaseDictionary.cs -------------------------------------------------------------------------------- /MiniTestRunner/Utils/RecycleBin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Utils/RecycleBin.cs -------------------------------------------------------------------------------- /MiniTestRunner/Utils/ViewModelOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Utils/ViewModelOf.cs -------------------------------------------------------------------------------- /MiniTestRunner/Utils/WeakKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Utils/WeakKeyComparer.cs -------------------------------------------------------------------------------- /MiniTestRunner/Utils/WeakKeyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Utils/WeakKeyDictionary.cs -------------------------------------------------------------------------------- /MiniTestRunner/Utils/WeakReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/Utils/WeakReference.cs -------------------------------------------------------------------------------- /MiniTestRunner/View/RowView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/View/RowView.cs -------------------------------------------------------------------------------- /MiniTestRunner/View/TestingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/View/TestingForm.Designer.cs -------------------------------------------------------------------------------- /MiniTestRunner/View/TestingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/View/TestingForm.cs -------------------------------------------------------------------------------- /MiniTestRunner/View/TestingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/View/TestingForm.resx -------------------------------------------------------------------------------- /MiniTestRunner/View/TreeViewAdvModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/View/TreeViewAdvModel.cs -------------------------------------------------------------------------------- /MiniTestRunner/ViewModel/DisplaySettingsVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/ViewModel/DisplaySettingsVM.cs -------------------------------------------------------------------------------- /MiniTestRunner/ViewModel/FilterVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/ViewModel/FilterVM.cs -------------------------------------------------------------------------------- /MiniTestRunner/ViewModel/RowVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/ViewModel/RowVM.cs -------------------------------------------------------------------------------- /MiniTestRunner/ViewModel/TreeVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/ViewModel/TreeVM.cs -------------------------------------------------------------------------------- /MiniTestRunner/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/MiniTestRunner/app.config -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Readme.md -------------------------------------------------------------------------------- /Tests/BooLexerCoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/BooLexerCoreTest.cs -------------------------------------------------------------------------------- /Tests/BooLexerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/BooLexerTest.cs -------------------------------------------------------------------------------- /Tests/Collections/ALists/AListTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/ALists/AListTestBase.cs -------------------------------------------------------------------------------- /Tests/Collections/ALists/AListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/ALists/AListTests.cs -------------------------------------------------------------------------------- /Tests/Collections/ALists/BDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/ALists/BDictionaryTests.cs -------------------------------------------------------------------------------- /Tests/Collections/ALists/BListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/ALists/BListTests.cs -------------------------------------------------------------------------------- /Tests/Collections/ALists/SparseAListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/ALists/SparseAListTests.cs -------------------------------------------------------------------------------- /Tests/Collections/DequeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/DequeTests.cs -------------------------------------------------------------------------------- /Tests/Collections/DictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/DictionaryTests.cs -------------------------------------------------------------------------------- /Tests/Collections/ListCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/ListCollectionTests.cs -------------------------------------------------------------------------------- /Tests/Collections/ListRangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/ListRangeTests.cs -------------------------------------------------------------------------------- /Tests/Collections/ListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/ListTests.cs -------------------------------------------------------------------------------- /Tests/Collections/MapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/MapTests.cs -------------------------------------------------------------------------------- /Tests/Collections/SetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/SetTests.cs -------------------------------------------------------------------------------- /Tests/Collections/VLists/FVListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/VLists/FVListTests.cs -------------------------------------------------------------------------------- /Tests/Collections/VLists/FWListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/VLists/FWListTests.cs -------------------------------------------------------------------------------- /Tests/Collections/VLists/VListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/VLists/VListTests.cs -------------------------------------------------------------------------------- /Tests/Collections/VLists/WListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Collections/VLists/WListTests.cs -------------------------------------------------------------------------------- /Tests/EssentialTreeParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/EssentialTreeParserTests.cs -------------------------------------------------------------------------------- /Tests/Essentials/ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Essentials/ExtensionsTests.cs -------------------------------------------------------------------------------- /Tests/Essentials/GTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Essentials/GTests.cs -------------------------------------------------------------------------------- /Tests/Essentials/HashTagsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Essentials/HashTagsTests.cs -------------------------------------------------------------------------------- /Tests/Essentials/ListExtTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Essentials/ListExtTests.cs -------------------------------------------------------------------------------- /Tests/Essentials/LocalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Essentials/LocalizeTests.cs -------------------------------------------------------------------------------- /Tests/Essentials/PrintHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Essentials/PrintHelpersTests.cs -------------------------------------------------------------------------------- /Tests/Essentials/SymbolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Essentials/SymbolTests.cs -------------------------------------------------------------------------------- /Tests/Essentials/ThreadExTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Essentials/ThreadExTests.cs -------------------------------------------------------------------------------- /Tests/Essentials/UStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Essentials/UStringTests.cs -------------------------------------------------------------------------------- /Tests/Log4netTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Log4netTest.cs -------------------------------------------------------------------------------- /Tests/LoycCore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/LoycCore.Tests.csproj -------------------------------------------------------------------------------- /Tests/LoycParserGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/LoycParserGenerator.cs -------------------------------------------------------------------------------- /Tests/Math/LineMathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Math/LineMathTests.cs -------------------------------------------------------------------------------- /Tests/Math/MathExTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Math/MathExTests.cs -------------------------------------------------------------------------------- /Tests/Math/PointMathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Math/PointMathTests.cs -------------------------------------------------------------------------------- /Tests/OneParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/OneParserTest.cs -------------------------------------------------------------------------------- /Tests/OpenSourceKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/OpenSourceKey.snk -------------------------------------------------------------------------------- /Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Program.cs -------------------------------------------------------------------------------- /Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Syntax/IndentTokenGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/IndentTokenGeneratorTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/IndexPositionMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/IndexPositionMapperTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/Les2LexerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/Les2LexerTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/Les2ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/Les2ParserTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/Les2PrinterAndParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/Les2PrinterAndParserTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/Les2PrinterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/Les2PrinterTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/Les3LexerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/Les3LexerTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/Les3ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/Les3ParserTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/Les3PrinterAndParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/Les3PrinterAndParserTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/Les3PrinterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/Les3PrinterTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/LexerSourceTest.ecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/LexerSourceTest.ecs -------------------------------------------------------------------------------- /Tests/Syntax/LexerSourceTest.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/LexerSourceTest.out.cs -------------------------------------------------------------------------------- /Tests/Syntax/ParseHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/ParseHelperTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/ParserSourceTest.ecs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/ParserSourceTest.ecs -------------------------------------------------------------------------------- /Tests/Syntax/ParserSourceTest.out.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/ParserSourceTest.out.cs -------------------------------------------------------------------------------- /Tests/Syntax/StandardTriviaInjectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/StandardTriviaInjectorTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/StreamCharSourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/StreamCharSourceTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/TokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/TokenTests.cs -------------------------------------------------------------------------------- /Tests/Syntax/TokensToTreeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Syntax/TokensToTreeTests.cs -------------------------------------------------------------------------------- /Tests/Utilities/GoInterfaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Utilities/GoInterfaceTests.cs -------------------------------------------------------------------------------- /Tests/Utilities/IntSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Utilities/IntSetTests.cs -------------------------------------------------------------------------------- /Tests/Utilities/TagsInWListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/Utilities/TagsInWListTests.cs -------------------------------------------------------------------------------- /Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/app.config -------------------------------------------------------------------------------- /Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertie/LoycCore/HEAD/Tests/packages.config --------------------------------------------------------------------------------