├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── README.md ├── cla-signatures.json ├── dependabot.yml └── workflows │ ├── cla-assistant.yml │ └── codeql.yml ├── .gitignore ├── .globalconfig ├── Addax.Formats.Tabular.slnx ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── azure-pipelines.yml ├── doc ├── api-filter.yml ├── docfx.json ├── images │ └── app-32.png ├── index.md ├── template │ └── public │ │ ├── main.css │ │ └── main.js ├── toc.yml └── topics │ ├── benchmarks.md │ ├── extensibility.md │ ├── features.md │ ├── grammar.md │ └── toc.yml ├── global.json ├── nuget.config └── src ├── Addax.Formats.Tabular.Analyzers.CSharp.UnitTests ├── Addax.Formats.Tabular.Analyzers.CSharp.UnitTests.csproj ├── Assets │ ├── ConverterValueTypeMismatch.cs │ ├── NamespaceHasNoMappings.cs │ ├── TypeHasSkippedIndices.cs │ ├── TypeMemberHasDuplicateIndex.cs │ ├── TypeMemberHasName.cs │ ├── TypeMemberHasSupportedType.cs │ ├── TypeMemberHasSupportedTypeAsNullableT.cs │ ├── TypeMemberHasUnsupportedType.cs │ ├── TypeMemberHasUnsupportedTypeWithConverter.cs │ └── TypeMemberIsReadOnly.cs ├── Properties │ └── AssemblyInfo.cs └── TabularHandlerGeneratorTests.cs ├── Addax.Formats.Tabular.Analyzers.CSharp ├── Addax.Formats.Tabular.Analyzers.CSharp.csproj ├── Properties │ └── AssemblyInfo.cs ├── SourceTextWriter.cs ├── TabularFieldMapping.cs ├── TabularHandlerEmitter.Builders.cs ├── TabularHandlerEmitter.cs ├── TabularHandlerGenerator.cs ├── TabularHandlerParser.cs └── TabularRecordMapping.cs ├── Addax.Formats.Tabular.Benchmarks ├── Addax.Formats.Tabular.Benchmarks.csproj ├── Program.cs ├── ReadingBenchmark.cs └── WritingBenchmark.cs ├── Addax.Formats.Tabular.UnitTests ├── Addax.Formats.Tabular.UnitTests.csproj ├── Properties │ └── AssemblyInfo.cs ├── TabularReaderTests.T.cs ├── TabularReaderTests.cs ├── TabularWriterTests.T.cs └── TabularWriterTests.cs └── Addax.Formats.Tabular ├── Addax.Formats.Tabular.csproj ├── Buffers ├── ArrayBuffer`1.cs ├── ArrayBuilder`1.cs ├── BufferSource`1.cs ├── BufferWriter`1.cs └── SpanWriter`1.cs ├── Collections └── PooledQueue`1.cs ├── Converters ├── TabularBase16ArrayConverter.cs ├── TabularBase16MemoryConverter.cs ├── TabularBase16ReadOnlyMemoryConverter.cs ├── TabularBase64ArrayConverter.cs ├── TabularBase64MemoryConverter.cs ├── TabularBase64ReadOnlyMemoryConverter.cs ├── TabularBigIntegerConverter.cs ├── TabularBooleanConverter.cs ├── TabularByteConverter.cs ├── TabularCharConverter.cs ├── TabularDateOnlyConverter.cs ├── TabularDateTimeConverter.cs ├── TabularDateTimeOffsetConverter.cs ├── TabularDecimalConverter.cs ├── TabularDoubleConverter.cs ├── TabularGuidConverter.cs ├── TabularHalfConverter.cs ├── TabularInt128Converter.cs ├── TabularInt16Converter.cs ├── TabularInt32Converter.cs ├── TabularInt64Converter.cs ├── TabularRuneConverter.cs ├── TabularSByteConverter.cs ├── TabularSingleConverter.cs ├── TabularTimeOnlyConverter.cs ├── TabularTimeSpanConverter.cs ├── TabularUInt128Converter.cs ├── TabularUInt16Converter.cs ├── TabularUInt32Converter.cs ├── TabularUInt64Converter.cs └── TabularUriConverter.cs ├── Handlers ├── TabularArrayHandler`1.cs ├── TabularSparseArrayHandler`1.cs └── TabularStringArrayHandler.cs ├── IO ├── BufferedTextReader.cs └── BufferedTextWriter.cs ├── Primitives ├── TabularFieldInfo.cs ├── TabularParserState.cs ├── TabularParsingArea.cs ├── TabularParsingMode.cs ├── TabularSearchValues.cs ├── TabularSeparator.cs └── TabularTextInfo.cs ├── Properties ├── AssemblyInfo.cs ├── Directory.Package.props ├── Directory.Package │ ├── Icon.png │ ├── PACKAGE.md │ └── buildTransitive │ │ └── Addax.Formats.Tabular.targets └── ILLink.LinkAttributes.xml ├── TabularBinary.cs ├── TabularContentException.cs ├── TabularConverterAttribute.cs ├── TabularConverterAttribute`1.cs ├── TabularConverter`1.cs ├── TabularData.cs ├── TabularDialect.cs ├── TabularFieldNameAttribute.cs ├── TabularFieldOrderAttribute.cs ├── TabularFieldType.cs ├── TabularFormatInfo.cs ├── TabularFormatter.cs ├── TabularHandler`1.cs ├── TabularNumber`1.cs ├── TabularOptions.cs ├── TabularParser.cs ├── TabularPositionType.cs ├── TabularReader.T.cs ├── TabularReader.cs ├── TabularReader`1.cs ├── TabularRecordAttribute.cs ├── TabularRecord`1.cs ├── TabularRegistry.T.cs ├── TabularRegistry.cs ├── TabularStringFactory.cs ├── TabularWriter.T.cs ├── TabularWriter.cs └── TabularWriter`1.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [alexanderkozlenko] 2 | -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/cla-signatures.json: -------------------------------------------------------------------------------- 1 | { 2 | "signedContributors": [ 3 | ] 4 | } -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cla-assistant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/.github/workflows/cla-assistant.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/.gitignore -------------------------------------------------------------------------------- /.globalconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/.globalconfig -------------------------------------------------------------------------------- /Addax.Formats.Tabular.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/Addax.Formats.Tabular.slnx -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/LICENSE -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /doc/api-filter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/api-filter.yml -------------------------------------------------------------------------------- /doc/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/docfx.json -------------------------------------------------------------------------------- /doc/images/app-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/images/app-32.png -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/template/public/main.css: -------------------------------------------------------------------------------- 1 | #logo { 2 | margin-right: 16px; 3 | } 4 | -------------------------------------------------------------------------------- /doc/template/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/template/public/main.js -------------------------------------------------------------------------------- /doc/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/toc.yml -------------------------------------------------------------------------------- /doc/topics/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/topics/benchmarks.md -------------------------------------------------------------------------------- /doc/topics/extensibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/topics/extensibility.md -------------------------------------------------------------------------------- /doc/topics/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/topics/features.md -------------------------------------------------------------------------------- /doc/topics/grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/topics/grammar.md -------------------------------------------------------------------------------- /doc/topics/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/doc/topics/toc.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/nuget.config -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests.csproj -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/ConverterValueTypeMismatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/ConverterValueTypeMismatch.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/NamespaceHasNoMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/NamespaceHasNoMappings.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeHasSkippedIndices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeHasSkippedIndices.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasDuplicateIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasDuplicateIndex.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasName.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasSupportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasSupportedType.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasSupportedTypeAsNullableT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasSupportedTypeAsNullableT.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasUnsupportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasUnsupportedType.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasUnsupportedTypeWithConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberHasUnsupportedTypeWithConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberIsReadOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Assets/TypeMemberIsReadOnly.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/TabularHandlerGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp.UnitTests/TabularHandlerGeneratorTests.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp/Addax.Formats.Tabular.Analyzers.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp/Addax.Formats.Tabular.Analyzers.CSharp.csproj -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [assembly: CLSCompliant(false)] 4 | -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp/SourceTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp/SourceTextWriter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp/TabularFieldMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp/TabularFieldMapping.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp/TabularHandlerEmitter.Builders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp/TabularHandlerEmitter.Builders.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp/TabularHandlerEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp/TabularHandlerEmitter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp/TabularHandlerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp/TabularHandlerGenerator.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp/TabularHandlerParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp/TabularHandlerParser.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Analyzers.CSharp/TabularRecordMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Analyzers.CSharp/TabularRecordMapping.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Benchmarks/Addax.Formats.Tabular.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Benchmarks/Addax.Formats.Tabular.Benchmarks.csproj -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Benchmarks/Program.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Benchmarks/ReadingBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Benchmarks/ReadingBenchmark.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.Benchmarks/WritingBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.Benchmarks/WritingBenchmark.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.UnitTests/Addax.Formats.Tabular.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.UnitTests/Addax.Formats.Tabular.UnitTests.csproj -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.UnitTests/TabularReaderTests.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.UnitTests/TabularReaderTests.T.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.UnitTests/TabularReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.UnitTests/TabularReaderTests.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.UnitTests/TabularWriterTests.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.UnitTests/TabularWriterTests.T.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular.UnitTests/TabularWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular.UnitTests/TabularWriterTests.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Addax.Formats.Tabular.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Addax.Formats.Tabular.csproj -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Buffers/ArrayBuffer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Buffers/ArrayBuffer`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Buffers/ArrayBuilder`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Buffers/ArrayBuilder`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Buffers/BufferSource`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Buffers/BufferSource`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Buffers/BufferWriter`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Buffers/BufferWriter`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Buffers/SpanWriter`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Buffers/SpanWriter`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Collections/PooledQueue`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Collections/PooledQueue`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularBase16ArrayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularBase16ArrayConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularBase16MemoryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularBase16MemoryConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularBase16ReadOnlyMemoryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularBase16ReadOnlyMemoryConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularBase64ArrayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularBase64ArrayConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularBase64MemoryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularBase64MemoryConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularBase64ReadOnlyMemoryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularBase64ReadOnlyMemoryConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularBigIntegerConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularBigIntegerConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularBooleanConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularByteConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularByteConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularCharConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularCharConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularDateOnlyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularDateOnlyConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularDateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularDateTimeConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularDateTimeOffsetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularDateTimeOffsetConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularDecimalConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularDecimalConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularDoubleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularDoubleConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularGuidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularGuidConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularHalfConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularHalfConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularInt128Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularInt128Converter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularInt16Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularInt16Converter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularInt32Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularInt32Converter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularInt64Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularInt64Converter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularRuneConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularRuneConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularSByteConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularSByteConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularSingleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularSingleConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularTimeOnlyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularTimeOnlyConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularTimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularTimeSpanConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularUInt128Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularUInt128Converter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularUInt16Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularUInt16Converter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularUInt32Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularUInt32Converter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularUInt64Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularUInt64Converter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Converters/TabularUriConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Converters/TabularUriConverter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Handlers/TabularArrayHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Handlers/TabularArrayHandler`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Handlers/TabularSparseArrayHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Handlers/TabularSparseArrayHandler`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Handlers/TabularStringArrayHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Handlers/TabularStringArrayHandler.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/IO/BufferedTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/IO/BufferedTextReader.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/IO/BufferedTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/IO/BufferedTextWriter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Primitives/TabularFieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Primitives/TabularFieldInfo.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Primitives/TabularParserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Primitives/TabularParserState.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Primitives/TabularParsingArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Primitives/TabularParsingArea.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Primitives/TabularParsingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Primitives/TabularParsingMode.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Primitives/TabularSearchValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Primitives/TabularSearchValues.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Primitives/TabularSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Primitives/TabularSeparator.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Primitives/TabularTextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Primitives/TabularTextInfo.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Properties/Directory.Package.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Properties/Directory.Package.props -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Properties/Directory.Package/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Properties/Directory.Package/Icon.png -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Properties/Directory.Package/PACKAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Properties/Directory.Package/PACKAGE.md -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Properties/Directory.Package/buildTransitive/Addax.Formats.Tabular.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Properties/Directory.Package/buildTransitive/Addax.Formats.Tabular.targets -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/Properties/ILLink.LinkAttributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/Properties/ILLink.LinkAttributes.xml -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularBinary.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularContentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularContentException.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularConverterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularConverterAttribute.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularConverterAttribute`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularConverterAttribute`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularConverter`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularConverter`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularData.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularDialect.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularFieldNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularFieldNameAttribute.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularFieldOrderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularFieldOrderAttribute.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularFieldType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularFieldType.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularFormatInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularFormatInfo.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularFormatter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularHandler`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularNumber`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularNumber`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularOptions.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularParser.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularPositionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularPositionType.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularReader.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularReader.T.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularReader.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularReader`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularReader`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularRecordAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularRecordAttribute.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularRecord`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularRecord`1.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularRegistry.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularRegistry.T.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularRegistry.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularStringFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularStringFactory.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularWriter.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularWriter.T.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularWriter.cs -------------------------------------------------------------------------------- /src/Addax.Formats.Tabular/TabularWriter`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderkozlenko/addax/HEAD/src/Addax.Formats.Tabular/TabularWriter`1.cs --------------------------------------------------------------------------------