├── .github
├── CONTRIBUTING.md
├── ISSUE_TEMPLATE
│ ├── 🇨🇦EN Bug Report.md
│ ├── 🇨🇦EN Documentation Correction.md
│ ├── 🇨🇦EN Feature Request.md
│ └── 🇨🇦EN Question.md
├── PULL_REQUEST_TEMPLATE.md
└── workflows
│ ├── Amazon Linux.yaml
│ ├── Android.yaml
│ ├── Documentation Deployment.yaml
│ ├── Miscellaneous.yaml
│ ├── Swift 5.7 (Amazon Linux).yaml
│ ├── Swift 5.7 (Android).yaml
│ ├── Swift 5.7 (Ubuntu).yaml
│ ├── Swift 5.7 (Web).yaml
│ ├── Swift 5.7 (Windows).yaml
│ ├── Swift 5.7 (iOS).yaml
│ ├── Swift 5.7 (macOS).yaml
│ ├── Swift 5.7 (tvOS).yaml
│ ├── Swift 5.7 (watchOS).yaml
│ ├── Ubuntu.yaml
│ ├── Web.yaml
│ ├── Windows.yaml
│ ├── iOS.yaml
│ ├── macOS.yaml
│ ├── tvOS.yaml
│ └── watchOS.yaml
├── .gitignore
├── LICENSE.md
├── Package.resolved
├── Package.swift
├── Plugins
├── SDGCopySources
│ └── CopySources.swift
└── SDGEmbedResources
│ └── EmbedResources.swift
├── README.md
├── Refresh (Linux).sh
├── Refresh (macOS).command
├── Sources
├── SDGBinaryData
│ ├── Data.swift
│ ├── DataBinaryView.swift
│ ├── DataStream.swift
│ ├── UInt.swift
│ └── UIntBinaryView.swift
├── SDGCalendar
│ ├── Abstract Components
│ │ ├── CalendarComponent.swift
│ │ ├── CardinalCalendarComponent.swift
│ │ ├── ConsistentDurationCalendarComponent.swift
│ │ ├── ConsistentlyOrderedCalendarComponent.swift
│ │ ├── Day.swift
│ │ ├── EnumerationCalendarComponent.swift
│ │ ├── ICalendarComponent.swift
│ │ ├── ISOCalendarComponent.swift
│ │ ├── Month.swift
│ │ ├── NumericCalendarComponent.swift
│ │ ├── OrdinalCalendarComponent.swift
│ │ ├── RawRepresentableCalendarComponent.swift
│ │ ├── SmallestCalendarComponent.swift
│ │ ├── Weekday.swift
│ │ └── Year.swift
│ ├── AnyDescribableDate.swift
│ ├── CalendarDate.swift
│ ├── CalendarInterval.swift
│ ├── Date.swift
│ ├── DateDefinition.swift
│ ├── DescribableDate.swift
│ ├── FoundationDate.swift
│ ├── Gregorian
│ │ ├── GregorianDate.swift
│ │ ├── GregorianDay.swift
│ │ ├── GregorianHour.swift
│ │ ├── GregorianMinute.swift
│ │ ├── GregorianMonth.swift
│ │ ├── GregorianSecond.swift
│ │ ├── GregorianWeekday.swift
│ │ ├── GregorianWeekdayDate.swift
│ │ └── GregorianYear.swift
│ ├── Hebrew
│ │ ├── HebrewDate.swift
│ │ ├── HebrewDay.swift
│ │ ├── HebrewHour.swift
│ │ ├── HebrewMonth.swift
│ │ ├── HebrewMonthAndYear.swift
│ │ ├── HebrewPart.swift
│ │ ├── HebrewWeekday.swift
│ │ ├── HebrewWeekdayDate.swift
│ │ ├── HebrewYear.swift
│ │ └── HebrewYearLength.swift
│ ├── RationalArithmetic.swift
│ ├── RelativeDate.swift
│ └── UnknownDate.swift
├── SDGCollation
│ ├── CollationCacheEntry.swift
│ ├── CollationElement.swift
│ ├── CollationIndex.swift
│ ├── CollationLevel.swift
│ ├── CollationOrder.swift
│ ├── Resources.swift
│ ├── Resources
│ │ └── Resources 1.swift
│ ├── Root
│ └── Tailoring
│ │ ├── CollationTailoring.Anchor.swift
│ │ ├── CollationTailoring.swift
│ │ ├── CollationTailoringBuilder.swift
│ │ ├── OperatorFunctions.swift
│ │ └── Operators.swift
├── SDGCollections
│ ├── Addable.swift
│ ├── Associative
│ │ ├── BijectiveMapping.swift
│ │ ├── ContextualMapping.swift
│ │ └── Dictionary.swift
│ ├── Conformances
│ │ ├── CharacterSet.swift
│ │ ├── Data.swift
│ │ ├── String.swift
│ │ └── StringProtocol.swift
│ ├── LegacyMode.swift
│ ├── Operators.swift
│ ├── Ordered
│ │ ├── AnyCollection.swift
│ │ ├── Array.swift
│ │ ├── BidirectionalCollection.swift
│ │ ├── Collection.swift
│ │ ├── CollectionDifference.swift
│ │ ├── CollectionDifferenceChange.swift
│ │ ├── FillDirection.swift
│ │ ├── LexicographicalComparison.swift
│ │ ├── OrderedSet.SubSequence.swift
│ │ ├── OrderedSet.swift
│ │ ├── Patterns
│ │ │ ├── Affixes
│ │ │ │ ├── ExclusivePrefixMatch.swift
│ │ │ │ ├── ExclusiveSuffixMatch.swift
│ │ │ │ ├── InclusivePrefixMatch.swift
│ │ │ │ └── InclusiveSuffixMatch.swift
│ │ │ ├── Alternatives
│ │ │ │ ├── AlternativeMatch.swift
│ │ │ │ ├── AlternativePatterns.swift
│ │ │ │ ├── NaryAlternativeMatch.swift
│ │ │ │ └── NaryAlternativePatterns.swift
│ │ │ ├── Any
│ │ │ │ ├── AnyBidirectionalPattern.swift
│ │ │ │ ├── AnyPattern.swift
│ │ │ │ └── AnyPatternMatch.swift
│ │ │ ├── AtomicPatternMatch.swift
│ │ │ ├── Concatenated
│ │ │ │ ├── ConcatenatedMatch.swift
│ │ │ │ ├── ConcatenatedPatterns.swift
│ │ │ │ ├── NaryConcatenatedMatch.swift
│ │ │ │ └── NaryConcatenatedPatterns.swift
│ │ │ ├── ConditionalPattern.swift
│ │ │ ├── LiteralPattern.swift
│ │ │ ├── NegatedPattern.swift
│ │ │ ├── Nesting
│ │ │ │ ├── NestingContentsPattern.swift
│ │ │ │ ├── NestingMatch.swift
│ │ │ │ ├── NestingMatchContents.swift
│ │ │ │ ├── NestingMatchSegment.swift
│ │ │ │ ├── NestingPattern.swift
│ │ │ │ └── NestingSegmentPattern.swift
│ │ │ ├── Protocols
│ │ │ │ ├── BidirectionalPattern.swift
│ │ │ │ ├── Pattern.swift
│ │ │ │ └── PatternMatch.swift
│ │ │ ├── Repetition
│ │ │ │ ├── PatternConsumption.swift
│ │ │ │ ├── RepetitionMatch.swift
│ │ │ │ └── RepetitionPattern.swift
│ │ │ └── SeparatedComponentMatch.swift
│ │ ├── Range.swift
│ │ ├── RangeExpression.swift
│ │ ├── RangeReplaceableCollection.swift
│ │ ├── ReversedCollection.swift
│ │ ├── SearchableBidirectionalCollection.swift
│ │ ├── SearchableCollection.swift
│ │ └── Slice.swift
│ └── Unordered
│ │ ├── AbsoluteComplement.swift
│ │ ├── ComparableSet.swift
│ │ ├── FiniteSet.swift
│ │ ├── IntensionalSet.swift
│ │ ├── Intersection.swift
│ │ ├── MutableSet.swift
│ │ ├── Set.swift
│ │ ├── SetDefinition.swift
│ │ ├── SetInRepresentableUniverse.swift
│ │ └── Union.swift
├── SDGCollectionsTestUtilities
│ ├── BidirectionalCollection.swift
│ ├── BidirectionalPattern.swift
│ ├── Collection.swift
│ ├── ComparableSet.swift
│ ├── FiniteSet.swift
│ ├── Hashable.swift
│ ├── MutableSet.swift
│ ├── Pattern.swift
│ ├── RandomAccessCollection.swift
│ ├── RangeReplaceableCollection.swift
│ ├── SetDefinition.swift
│ └── SetInRepresentableUniverse.swift
├── SDGConcurrency
│ └── RunLoop.swift
├── SDGControlFlow
│ ├── APILocalization.swift
│ ├── Assert.swift
│ ├── Caching.swift
│ ├── Decodable.swift
│ ├── DefaultAssignmentPropertyWrapper.swift
│ ├── Encodable.swift
│ ├── Memory.swift
│ ├── NonmutatingVariants.swift
│ ├── ProjectingPropertyWrapper.swift
│ ├── PropertyWrapper.swift
│ ├── SendableValueCache.swift
│ ├── Shared.swift
│ ├── SharedProperty.swift
│ ├── SharedValueObserver.swift
│ ├── TextualPlaygroundDisplay.swift
│ ├── TransparentWrapper.swift
│ ├── Tuple.swift
│ └── Weak.swift
├── SDGCornerstoneLocalizations
│ ├── APILocalization.swift
│ ├── FormatLocalization.swift
│ └── InterfaceLocalization.swift
├── SDGExternalProcess
│ ├── ExternalProcess.swift
│ ├── ExternalProcessError.swift
│ └── Shell.swift
├── SDGGeometry
│ ├── Angle.swift
│ ├── Be_zierPath.swift
│ ├── CGPoint.swift
│ ├── CGVector.swift
│ ├── TwoDimensionalPoint.swift
│ ├── TwoDimensionalPointProtocol.swift
│ ├── TwoDimensionalVector.swift
│ └── TwoDimensionalVectorProtocol.swift
├── SDGGeometryTestUtilities
│ ├── TwoDimensionalPointProtocol.swift
│ └── TwoDimensionalVectorProtocol.swift
├── SDGLocalization
│ ├── CachedLocalization.swift
│ ├── Extensions
│ │ ├── Bool.swift
│ │ ├── CodableViaEnumeration.swift
│ │ ├── Decodable.swift
│ │ ├── LosslessStringConvertible.swift
│ │ ├── Numbers
│ │ │ ├── Angle.swift
│ │ │ ├── Float.swift
│ │ │ ├── Int.swift
│ │ │ ├── IntegerProtcool.swift
│ │ │ ├── IntegralArithmetic.swift
│ │ │ ├── RationalArithmetic.swift
│ │ │ ├── RationalNumberProtocol.swift
│ │ │ ├── UInt.swift
│ │ │ ├── WholeArithmetic.swift
│ │ │ └── WholeNumberProtocol.swift
│ │ ├── Precondition.swift
│ │ ├── PresentableError.swift
│ │ ├── Range.swift
│ │ ├── TextConvertibleNumber.swift
│ │ └── TextConvertibleNumberParseError.swift
│ ├── InputLocalization.swift
│ ├── Interpolation
│ │ ├── Casing.swift
│ │ ├── EnglishCasing.swift
│ │ ├── GrammaticalGender.swift
│ │ ├── GrammaticalNumber.swift
│ │ ├── __________.swift
│ │ └── _________________.swift
│ ├── Localization.swift
│ ├── LocalizationSetting.swift
│ ├── LocalizationSettingStabilizationMode.swift
│ ├── Localizations
│ │ ├── APILocalization.swift
│ │ ├── AnyLocalization.swift
│ │ ├── ContentLocalization.swift
│ │ ├── FormatLocalization.swift
│ │ └── InterfaceLocalization.swift
│ ├── Metadata
│ │ ├── Language.swift
│ │ ├── LocalizationData.swift
│ │ ├── Script.swift
│ │ ├── State.swift
│ │ ├── StateData.swift
│ │ └── TextDirection.swift
│ ├── UserFacing.swift
│ └── UserFacingDynamic.swift
├── SDGLocalizationTestUtilities
│ └── CustomStringConvertible.swift
├── SDGLogic
│ ├── Any.swift
│ ├── Bool.swift
│ ├── Equatable.swift
│ ├── NilLiteral.swift
│ ├── Operators.swift
│ └── Tuple.swift
├── SDGLogicTestUtilities
│ └── Equatable.swift
├── SDGMathematics
│ ├── Angle.swift
│ ├── BitField.swift
│ ├── ClosedRange.swift
│ ├── Comparable.swift
│ ├── Data.swift
│ ├── Float.swift
│ ├── FunctionAnalysis.swift
│ ├── Int.swift
│ ├── Measurement.swift
│ ├── Numeric Protocols
│ │ ├── Addable.swift
│ │ ├── FixedScaleOneDimensionalPoint.swift
│ │ ├── GenericAdditiveArithmetic.swift
│ │ ├── IntegerProtocol.swift
│ │ ├── IntegralArithmetic.swift
│ │ ├── Negatable.swift
│ │ ├── NumericAdditiveArithmetic.swift
│ │ ├── OneDimensionalPoint.swift
│ │ ├── OneDimensionalVector.swift
│ │ ├── PointProtocol.swift
│ │ ├── RationalArithmetic.swift
│ │ ├── RationalNumberProtocol.swift
│ │ ├── RationalVector.swift
│ │ ├── RealArithmetic.swift
│ │ ├── RealNumberProtocol.swift
│ │ ├── Subtractable.swift
│ │ ├── VectorProtocol.swift
│ │ ├── WholeArithmetic.swift
│ │ └── WholeNumberProtocol.swift
│ ├── Operators.swift
│ ├── OrderedEnumeration.swift
│ ├── Sequence.swift
│ ├── Tuple.swift
│ └── UInt.swift
├── SDGMathematicsTestUtilities
│ ├── Addable.swift
│ ├── BitField.swift
│ ├── Comparable.swift
│ ├── FixedScaleOneDimensionalPoint.swift
│ ├── Float.swift
│ ├── GenericAdditiveArithmetic.swift
│ ├── IntegralArithmetic.swift
│ ├── Measurement.swift
│ ├── Negatable.swift
│ ├── NumericAdditiveArithmetic.swift
│ ├── OneDimensionalPoint.swift
│ ├── PointProtocol.swift
│ ├── RationalArithmetic.swift
│ ├── RationalVector.swift
│ ├── RealArithmetic.swift
│ ├── Subtractable.swift
│ ├── VectorProtocol.swift
│ └── WholeArithmetic.swift
├── SDGPersistence
│ ├── Data.swift
│ ├── FileConvertible.swift
│ ├── FileManager.swift
│ ├── Preference.swift
│ ├── PreferenceSet.swift
│ ├── ProcessInfo.swift
│ ├── StrictString.swift
│ ├── String.swift
│ └── URL.swift
├── SDGPersistenceTestUtilities
│ ├── Codable.swift
│ ├── FileConvertible.swift
│ └── Specification.swift
├── SDGPrecisionMathematics
│ ├── HalvesView.swift
│ ├── Integer.swift
│ ├── RationalNumber.swift
│ ├── UInt.swift
│ ├── WholeNumber.swift
│ ├── WholeNumberBinaryView.swift
│ ├── WholeNumberBinaryViewIndex.swift
│ └── WholeNumberBinaryViewIndexDistance.swift
├── SDGRandomization
│ ├── Bool.swift
│ ├── CyclicalNumberGenerator.swift
│ └── PseudorandomNumberGenerator.swift
├── SDGRandomizationTestUtilities
│ └── Randomizer.swift
├── SDGTesting
│ ├── PerformanceTest.swift
│ └── Test.swift
├── SDGText
│ ├── CharacterSet.swift
│ ├── CollectionStringFamily.swift
│ ├── CollectionUnicodeScalar.swift
│ ├── Compatibility
│ │ ├── StaticString.swift
│ │ ├── String.swift
│ │ ├── StringClusterView.swift
│ │ └── StringScalarView.swift
│ ├── ExtendedGraphemeCluster.swift
│ ├── Font
│ │ ├── Font.Definition.swift
│ │ ├── Font.swift
│ │ ├── NSFont.swift
│ │ ├── SwiftUI.Font.swift
│ │ └── UIFont.swift
│ ├── MarkupPlaygroundDisplay.swift
│ ├── Range.swift
│ ├── SemanticMarkup.swift
│ ├── SemanticMarkupStringInterpolation.swift
│ ├── Strict
│ │ ├── StrictString.swift
│ │ ├── StrictStringClusterView.swift
│ │ ├── StrictStringInterpolationProtocol.swift
│ │ └── StrictStringStringInterpolation.swift
│ ├── String Family
│ │ ├── ExtendedGraphemeClusterView.swift
│ │ ├── Line.swift
│ │ ├── LineView.swift
│ │ ├── LineViewIndex.swift
│ │ ├── Newline.swift
│ │ ├── NewlinePattern.swift
│ │ ├── StringFamily.swift
│ │ ├── StringIndex.swift
│ │ └── UnicodeScalarView.swift
│ └── UnicodeScalar.swift
├── SDGVersioning
│ └── Version.swift
├── SDGXCTestUtilities
│ ├── TestCase.swift
│ └── XCTAssert.swift
├── SDGXML
│ ├── Coding
│ │ ├── CustomXMLRepresentable.swift
│ │ ├── XML.Attribute.Protocol.swift
│ │ ├── XML.Attribute.swift
│ │ ├── XML.Coder.Element.swift
│ │ ├── XML.Coder.MiscellaneousKey.swift
│ │ ├── XML.Coder.swift
│ │ ├── XML.Decoder.Container.swift
│ │ ├── XML.Decoder.Implementation.swift
│ │ ├── XML.Decoder.KeyedContainer.swift
│ │ ├── XML.Decoder.KeylessContainer.swift
│ │ ├── XML.Decoder.SingleValueContainer.swift
│ │ ├── XML.Decoder.UnkeyedContainer.swift
│ │ ├── XML.Decoder.swift
│ │ ├── XML.Encoder.Container.swift
│ │ ├── XML.Encoder.Implementation.swift
│ │ ├── XML.Encoder.KeyedContainer.swift
│ │ ├── XML.Encoder.KeylessContainer.swift
│ │ ├── XML.Encoder.SingleValueContainer.swift
│ │ ├── XML.Encoder.UnkeyedContainer.swift
│ │ └── XML.Encoder.swift
│ ├── Model
│ │ ├── XML.AttributeValue.swift
│ │ ├── XML.CharacterData.swift
│ │ ├── XML.Content.swift
│ │ ├── XML.DTD.swift
│ │ ├── XML.Document.swift
│ │ └── XML.Element.swift
│ ├── Parser
│ │ └── XML.Parser.swift
│ └── XML.swift
├── generate_root_collation
│ ├── CollationElement.swift
│ ├── CollationLevel.swift
│ ├── DUCET.swift
│ ├── Repository.swift
│ ├── RootCollation.swift
│ └── RootCollationGenerator.swift
├── sdg_copy_source
│ ├── CopySource.swift
│ └── main.swift
└── sdg_embed_resource
│ ├── EmbedResource.swift
│ └── main.swift
├── Tests
├── SDGBinaryDataTests
│ └── APITests.swift
├── SDGCalendarTests
│ ├── APITests.swift
│ ├── InternalTests.swift
│ └── RegressionTests.swift
├── SDGCollationTests
│ ├── APITests.swift
│ ├── LanguageTests.swift
│ └── RegressionTests.swift
├── SDGCollectionsTests
│ ├── APITests.swift
│ ├── AnyForwardCollection.swift
│ ├── InternalTests.swift
│ ├── LegacyMode.swift
│ ├── Nothing.swift
│ └── RegressionTests.swift
├── SDGConcurrencyTests
│ └── APITests.swift
├── SDGControlFlowTests
│ ├── APITests.swift
│ └── Examples.swift
├── SDGCopySourcesTests
│ ├── Copied.swift
│ └── Sources
│ │ ├── APITests.swift
│ │ └── Copy Sources.txt
├── SDGCornerstoneDocumentationExampleTests
│ ├── DateExampleTests.swift
│ ├── FunctionAnalysisExampleTests.swift
│ ├── MiscellaneousExampleTests.swift
│ ├── ReadMeExampleTests.swift
│ ├── StrictInterpolationExampleTests.swift
│ └── XMLExampleTests.swift
├── SDGEmbedResourcesTests
│ ├── APITests.swift
│ ├── Data
│ ├── Embed Resources.txt
│ └── Text.txt
├── SDGExternalProcessTests
│ ├── APITests.swift
│ └── RegressionTests.swift
├── SDGGeometryTests
│ └── APITests.swift
├── SDGLocalizationTests
│ ├── APITests.swift
│ └── InternalTests.swift
├── SDGLogicTests
│ └── APITests.swift
├── SDGMathematicsTests
│ ├── APITests.swift
│ └── RegressionTests.swift
├── SDGPersistenceTests
│ ├── APITests.swift
│ └── RegressionTests.swift
├── SDGPrecisionMathematicsTests
│ ├── APITests.swift
│ └── InternalTests.swift
├── SDGRandomizationTests
│ └── APITests.swift
├── SDGTextTests
│ ├── APITests.swift
│ ├── InternalTests.swift
│ └── RegressionTests.swift
├── SDGVersioningTests
│ ├── APITests.swift
│ └── RegressionTests.swift
├── SDGXMLTests
│ ├── APITests.swift
│ ├── Coding Helpers.swift
│ ├── Error Helpers.swift
│ └── XML Helpers.swift
└── Test Specifications
│ ├── Codable Errors
│ ├── Container End
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ ├── Keyless Type Mismatch
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ ├── Mismatched Key
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ ├── Missing Key (Attribute)
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ ├── Missing Key
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ ├── Single Value Complexity Type Mismatch
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ ├── Single Value Type Mismatch
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ ├── Type Complexity Mismatch
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ ├── Type Mismatch (Attribute)
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ ├── Type Mismatch
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ └── Unkeyed Complexity Type Mismatch
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇬🇧EN.txt
│ │ └── 🇺🇸EN.txt
│ ├── Codable XML
│ ├── Array.txt
│ ├── Class.txt
│ ├── Customized.txt
│ ├── Dictionary.txt
│ ├── Single Value.txt
│ ├── String.txt
│ ├── Structure.txt
│ ├── Unkeyed Class.txt
│ ├── Unkeyed.txt
│ ├── With Attribute.txt
│ ├── With Keyed Nil.txt
│ ├── With Nil.txt
│ ├── XML Single Value.txt
│ ├── XML Unkeyed.txt
│ └── XML.txt
│ ├── Codable
│ ├── Angle⟨Double⟩
│ │ └── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ ├── Array⟨Change⟩
│ │ └── Changes
│ │ │ └── 2019‐11‐22.txt
│ ├── AttributeValue
│ │ └── Value
│ │ │ └── 2021‐01‐24.txt
│ ├── CGFloat
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── CGPoint
│ │ └── PointProtocol
│ │ │ └── 2019‐05‐05.txt
│ ├── CGVector
│ │ └── AdditiveArithmetic
│ │ │ └── 2019‐05‐05.txt
│ ├── CalendarDate
│ │ ├── Custom
│ │ │ └── 2018‐03‐26.txt
│ │ ├── Foundation
│ │ │ └── 2018‐03‐26.txt
│ │ ├── Gregorian
│ │ │ └── 2018‐03‐26.txt
│ │ ├── Hebrew
│ │ │ └── 2018‐03‐26.txt
│ │ └── Relative
│ │ │ └── 2018‐03‐26.txt
│ ├── CalendarInterval⟨Double⟩
│ │ └── AdditiveArithmetic
│ │ │ └── 2018‐03‐30.txt
│ ├── CalendarInterval⟨Float80⟩
│ │ └── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ ├── Casing
│ │ └── Medial
│ │ │ └── 2020‐06‐05.txt
│ ├── CharacterData
│ │ └── Character Data
│ │ │ └── 2021‐01‐24.txt
│ ├── CollectionDifference⟨String⟩
│ │ └── Difference
│ │ │ └── 2019‐11‐23.txt
│ ├── Document
│ │ └── Document
│ │ │ ├── 2021‐01‐24.txt
│ │ │ └── 2021‐01‐31.txt
│ ├── Double
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── Element
│ │ └── Element
│ │ │ └── 2021‐01‐24.txt
│ ├── EnglishCasing
│ │ └── Medial
│ │ │ └── 2020‐06‐08.txt
│ ├── Float
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── Float16
│ │ ├── AdditiveArithmetic
│ │ │ └── 2020‐10‐30.txt
│ │ └── PointProtocol
│ │ │ └── 2020‐10‐30.txt
│ ├── Float80
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── GrammaticalGender
│ │ └── Masculine
│ │ │ └── 2020‐06‐06.txt
│ ├── GrammaticalNumber
│ │ └── Singular
│ │ │ └── 2020‐06‐06.txt
│ ├── GregorianDay
│ │ └── 12
│ │ │ └── 2018‐03‐26.txt
│ ├── GregorianHour
│ │ └── 12
│ │ │ └── 2018‐03‐26.txt
│ ├── GregorianMinute
│ │ └── 12
│ │ │ └── 2018‐03‐26.txt
│ ├── GregorianMonth
│ │ └── January
│ │ │ └── 2018‐03‐26.txt
│ ├── GregorianSecond
│ │ └── 12
│ │ │ └── 2018‐03‐26.txt
│ ├── GregorianWeekday
│ │ └── Sunday
│ │ │ └── 2018‐03‐26.txt
│ ├── GregorianYear
│ │ └── 1234
│ │ │ └── 2018‐03‐26.txt
│ ├── HebrewDay
│ │ └── 12
│ │ │ └── 2018‐03‐26.txt
│ ├── HebrewHour
│ │ └── 12
│ │ │ └── 2018‐03‐26.txt
│ ├── HebrewMonth
│ │ ├── Adar I
│ │ │ └── 2018‐03‐26.txt
│ │ ├── Adar II
│ │ │ └── 2018‐03‐26.txt
│ │ ├── Adar
│ │ │ └── 2018‐03‐26.txt
│ │ ├── Elul
│ │ │ └── 2018‐03‐26.txt
│ │ └── Tishrei
│ │ │ └── 2018‐03‐26.txt
│ ├── HebrewMonthAndYear
│ │ └── Tishrei, 2345
│ │ │ └── 2018‐03‐26.txt
│ ├── HebrewPart
│ │ └── 124
│ │ │ └── 2018‐03‐26.txt
│ ├── HebrewWeekday
│ │ └── Sunday
│ │ │ └── 2018‐03‐29.txt
│ ├── HebrewYear
│ │ └── 1234
│ │ │ └── 2018‐03‐26.txt
│ ├── Int
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── Int16
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── Int32
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── Int64
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── Int8
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── Integer
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── LosslessStirngConvertibleExample
│ │ └── Example
│ │ │ └── 2018‐03‐29.txt
│ ├── PointProtocolStrideableExample
│ │ └── PointProtocol
│ │ │ ├── 2018‐03‐27.txt
│ │ │ └── 2018‐03‐30.txt
│ ├── PointProtocolStrideableVectorStrideExample
│ │ └── PointProtocol
│ │ │ ├── 2018‐03‐27.txt
│ │ │ └── 2018‐03‐30.txt
│ ├── PointProtocolVectorSelfExample
│ │ └── PointProtocol
│ │ │ ├── 2018‐03‐27.txt
│ │ │ └── 2018‐03‐30.txt
│ ├── RationalNumber
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── RealArithmeticExample
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐10‐07.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐10‐07.txt
│ ├── SemanticMarkup
│ │ └── Unicode
│ │ │ ├── 2018‐03‐30.txt
│ │ │ ├── Composed.txt
│ │ │ ├── Literal.txt
│ │ │ └── Standard.txt
│ ├── StrictString
│ │ └── Unicode
│ │ │ ├── 2018‐03‐30.txt
│ │ │ ├── Composed.txt
│ │ │ ├── Literal.txt
│ │ │ └── Standard.txt
│ ├── Tuple2⟨Int, Int⟩
│ │ └── (1, 2)
│ │ │ └── 2020‐07‐29.txt
│ ├── Tuple3⟨Int, Int, Int⟩
│ │ └── (1, 2, 3)
│ │ │ └── 2020‐07‐29.txt
│ ├── Tuple4⟨Int, Int, Int, Int⟩
│ │ └── (1, 2, 3, 4)
│ │ │ └── 2020‐07‐29.txt
│ ├── Tuple5⟨Int, Int, Int, Int, Int⟩
│ │ └── (1, 2, 3, 4, 5)
│ │ │ └── 2020‐07‐29.txt
│ ├── Tuple6⟨Int, Int, Int, Int, Int, Int⟩
│ │ └── (1, 2, 3, 4, 5, 6)
│ │ │ └── 2020‐07‐29.txt
│ ├── TwoDimensionalPoint⟨Double⟩
│ │ └── PointProtocol
│ │ │ └── 2019‐05‐05.txt
│ ├── TwoDimensionalVector⟨Double⟩
│ │ └── AdditiveArithmetic
│ │ │ └── 2019‐05‐05.txt
│ ├── UInt
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── UInt16
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── UInt32
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── UInt64
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── UInt8
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── VectorProtocolExample
│ │ └── AdditiveArithmetic
│ │ │ ├── 2018‐03‐26.txt
│ │ │ └── 2018‐03‐30.txt
│ ├── WholeNumber
│ │ ├── AdditiveArithmetic
│ │ │ └── 2018‐03‐26.txt
│ │ └── PointProtocol
│ │ │ └── 2018‐03‐26.txt
│ ├── XMLAttributeDemonstration
│ │ └── Structure
│ │ │ └── 2021‐02‐05.txt
│ ├── ΓραμματικήΠτώση
│ │ └── Ονομαστική
│ │ │ └── 2020‐06‐06.txt
│ └── מין־דקדוקי
│ │ └── זכר
│ │ └── 2020‐06‐06.txt
│ ├── CustomStringConvertible
│ ├── AbsoluteComplement⟨ClosedRange⟨Int⟩⟩
│ │ └── (0–10)′.txt
│ ├── AlternativePatterns⟨Array⟨Int⟩, Array⟨Int⟩⟩
│ │ └── 123 ∨ 321.txt
│ ├── Angle⟨Double⟩
│ │ ├── 90°.txt
│ │ └── −90°.txt
│ ├── Array⟨Int⟩
│ │ └── 123.txt
│ ├── AttributeValue
│ │ └── Attribute.txt
│ ├── BinaryView
│ │ └── 10th.txt
│ ├── BinaryView⟨UInt8⟩
│ │ └── 1st.txt
│ ├── CalendarDate
│ │ ├── Gregorian (2001‐01‐01).txt
│ │ ├── Gregorian (2002‐02‐02).txt
│ │ ├── Gregorian (2003‐03‐03).txt
│ │ ├── Gregorian (2004‐04‐04).txt
│ │ ├── Gregorian (2005‐05‐05).txt
│ │ ├── Gregorian (2006‐06‐06).txt
│ │ ├── Gregorian (2007‐07‐07).txt
│ │ ├── Gregorian (2008‐08‐08).txt
│ │ ├── Gregorian (2009‐09‐09).txt
│ │ ├── Gregorian (2010‐10‐10).txt
│ │ ├── Gregorian (2011‐11‐11).txt
│ │ ├── Gregorian (2012‐12‐12).txt
│ │ ├── Gregorian (−1999‐01‐01).txt
│ │ ├── Hebrew (1940‐10‐02).txt
│ │ ├── Hebrew (1941‐10‐22).txt
│ │ ├── Hebrew (1942‐11‐11).txt
│ │ ├── Hebrew (1943‐12‐30).txt
│ │ ├── Hebrew (1945‐01‐18).txt
│ │ ├── Hebrew (1946‐03‐09).txt
│ │ ├── Hebrew (1947‐03‐28).txt
│ │ ├── Hebrew (1948‐05‐17).txt
│ │ ├── Hebrew (1949‐06‐06).txt
│ │ ├── Hebrew (1950‐06‐25).txt
│ │ ├── Hebrew (1951‐08‐13).txt
│ │ ├── Hebrew (1952‐09‐02).txt
│ │ ├── Hebrew (1961‐02‐16).txt
│ │ ├── Hebrew (1962‐02‐04).txt
│ │ └── Relative (2001‐04‐11).txt
│ ├── CalendarInterval⟨Double⟩
│ │ ├── 1 Day.txt
│ │ └── 2 Days.txt
│ ├── CharacterData
│ │ └── Character Data.txt
│ ├── ClusterView
│ │ └── ABC.txt
│ ├── ConcatenatedPatterns⟨Array⟨Int⟩, Array⟨Int⟩⟩
│ │ └── 12 + 3.txt
│ ├── Content
│ │ └── Content.txt
│ ├── ContentLocalization
│ │ ├── 🇦🇩CA.txt
│ │ ├── 🇦🇪عر.txt
│ │ ├── 🇦🇬EN.txt
│ │ ├── 🇦🇴PT.txt
│ │ ├── 🇦🇷ES.txt
│ │ ├── 🇦🇹DE.txt
│ │ ├── 🇦🇺EN.txt
│ │ ├── 🇧🇧EN.txt
│ │ ├── 🇧🇪DE.txt
│ │ ├── 🇧🇪FR.txt
│ │ ├── 🇧🇪NL.txt
│ │ ├── 🇧🇫FR.txt
│ │ ├── 🇧🇭عر.txt
│ │ ├── 🇧🇮EN.txt
│ │ ├── 🇧🇮FR.txt
│ │ ├── 🇧🇯FR.txt
│ │ ├── 🇧🇳EN.txt
│ │ ├── 🇧🇳MS.txt
│ │ ├── 🇧🇴ES.txt
│ │ ├── 🇧🇷PT.txt
│ │ ├── 🇧🇸EN.txt
│ │ ├── 🇧🇼EN.txt
│ │ ├── 🇧🇾РУ.txt
│ │ ├── 🇧🇿EN.txt
│ │ ├── 🇨🇦EN.txt
│ │ ├── 🇨🇦FR.txt
│ │ ├── 🇨🇩FR.txt
│ │ ├── 🇨🇫FR.txt
│ │ ├── 🇨🇬FR.txt
│ │ ├── 🇨🇭DE.txt
│ │ ├── 🇨🇭FR.txt
│ │ ├── 🇨🇭IT.txt
│ │ ├── 🇨🇮FR.txt
│ │ ├── 🇨🇱ES.txt
│ │ ├── 🇨🇲EN.txt
│ │ ├── 🇨🇲FR.txt
│ │ ├── 🇨🇳普.txt
│ │ ├── 🇨🇴ES.txt
│ │ ├── 🇨🇷ES.txt
│ │ ├── 🇨🇺ES.txt
│ │ ├── 🇨🇻PT.txt
│ │ ├── 🇨🇾TR.txt
│ │ ├── 🇨🇾ΕΛ.txt
│ │ ├── 🇨🇿ČŠ.txt
│ │ ├── 🇩🇪DE.txt
│ │ ├── 🇩🇯FR.txt
│ │ ├── 🇩🇯عر.txt
│ │ ├── 🇩🇰DA.txt
│ │ ├── 🇩🇲EN.txt
│ │ ├── 🇩🇴ES.txt
│ │ ├── 🇩🇿عر.txt
│ │ ├── 🇪🇨ES.txt
│ │ ├── 🇪🇬عر.txt
│ │ ├── 🇪🇸CA.txt
│ │ ├── 🇪🇸ES.txt
│ │ ├── 🇪🇹EN.txt
│ │ ├── 🇫🇮SI.txt
│ │ ├── 🇫🇮SV.txt
│ │ ├── 🇫🇯EN.txt
│ │ ├── 🇫🇲EN.txt
│ │ ├── 🇫🇷FR.txt
│ │ ├── 🇬🇦FR.txt
│ │ ├── 🇬🇧EN.txt
│ │ ├── 🇬🇩EN.txt
│ │ ├── 🇬🇭EN.txt
│ │ ├── 🇬🇲EN.txt
│ │ ├── 🇬🇳FR.txt
│ │ ├── 🇬🇶ES.txt
│ │ ├── 🇬🇶FR.txt
│ │ ├── 🇬🇶PT.txt
│ │ ├── 🇬🇷ΕΛ.txt
│ │ ├── 🇬🇹ES.txt
│ │ ├── 🇬🇼PT.txt
│ │ ├── 🇬🇾EN.txt
│ │ ├── 🇭🇳ES.txt
│ │ ├── 🇭🇷HR.txt
│ │ ├── 🇭🇹FR.txt
│ │ ├── 🇭🇺MA.txt
│ │ ├── 🇮🇩ID.txt
│ │ ├── 🇮🇪EN.txt
│ │ ├── 🇮🇱עב.txt
│ │ ├── 🇮🇱عر.txt
│ │ ├── 🇮🇳EN.txt
│ │ ├── 🇮🇳हि.txt
│ │ ├── 🇮🇶عر.txt
│ │ ├── 🇮🇶ܣܘ.txt
│ │ ├── 🇮🇹IT.txt
│ │ ├── 🇯🇲EN.txt
│ │ ├── 🇯🇴عر.txt
│ │ ├── 🇯🇵日.txt
│ │ ├── 🇰🇪EN.txt
│ │ ├── 🇰🇬РУ.txt
│ │ ├── 🇰🇮EN.txt
│ │ ├── 🇰🇲FR.txt
│ │ ├── 🇰🇲عر.txt
│ │ ├── 🇰🇳EN.txt
│ │ ├── 🇰🇵조.txt
│ │ ├── 🇰🇷한.txt
│ │ ├── 🇰🇼عر.txt
│ │ ├── 🇰🇿РУ.txt
│ │ ├── 🇱🇧عر.txt
│ │ ├── 🇱🇨EN.txt
│ │ ├── 🇱🇮DE.txt
│ │ ├── 🇱🇰EN.txt
│ │ ├── 🇱🇷EN.txt
│ │ ├── 🇱🇸EN.txt
│ │ ├── 🇱🇸ST.txt
│ │ ├── 🇱🇺DE.txt
│ │ ├── 🇱🇺FR.txt
│ │ ├── 🇱🇾عر.txt
│ │ ├── 🇲🇦عر.txt
│ │ ├── 🇲🇨FR.txt
│ │ ├── 🇲🇩RO.txt
│ │ ├── 🇲🇬FR.txt
│ │ ├── 🇲🇭EN.txt
│ │ ├── 🇲🇱FR.txt
│ │ ├── 🇲🇷عر.txt
│ │ ├── 🇲🇹EN.txt
│ │ ├── 🇲🇺EN.txt
│ │ ├── 🇲🇺FR.txt
│ │ ├── 🇲🇼EN.txt
│ │ ├── 🇲🇽ES.txt
│ │ ├── 🇲🇾EN.txt
│ │ ├── 🇲🇾MS.txt
│ │ ├── 🇲🇿PT.txt
│ │ ├── 🇳🇦EN.txt
│ │ ├── 🇳🇪FR.txt
│ │ ├── 🇳🇬EN.txt
│ │ ├── 🇳🇮ES.txt
│ │ ├── 🇳🇱NL.txt
│ │ ├── 🇳🇴NB.txt
│ │ ├── 🇳🇷EN.txt
│ │ ├── 🇳🇿EN.txt
│ │ ├── 🇴🇲عر.txt
│ │ ├── 🇵🇦ES.txt
│ │ ├── 🇵🇪ES.txt
│ │ ├── 🇵🇬EN.txt
│ │ ├── 🇵🇭EN.txt
│ │ ├── 🇵🇰EN.txt
│ │ ├── 🇵🇱PL.txt
│ │ ├── 🇵🇹PT.txt
│ │ ├── 🇵🇼EN.txt
│ │ ├── 🇵🇾ES.txt
│ │ ├── 🇶🇦عر.txt
│ │ ├── 🇷🇴RO.txt
│ │ ├── 🇷🇺РУ.txt
│ │ ├── 🇷🇼EN.txt
│ │ ├── 🇷🇼FR.txt
│ │ ├── 🇸🇦عر.txt
│ │ ├── 🇸🇧EN.txt
│ │ ├── 🇸🇨EN.txt
│ │ ├── 🇸🇨FR.txt
│ │ ├── 🇸🇩EN.txt
│ │ ├── 🇸🇩عر.txt
│ │ ├── 🇸🇪SV.txt
│ │ ├── 🇸🇬EN.txt
│ │ ├── 🇸🇬MS.txt
│ │ ├── 🇸🇬华.txt
│ │ ├── 🇸🇰SČ.txt
│ │ ├── 🇸🇱EN.txt
│ │ ├── 🇸🇲IT.txt
│ │ ├── 🇸🇳FR.txt
│ │ ├── 🇸🇴عر.txt
│ │ ├── 🇸🇷NL.txt
│ │ ├── 🇸🇸EN.txt
│ │ ├── 🇸🇹PT.txt
│ │ ├── 🇸🇻ES.txt
│ │ ├── 🇸🇾عر.txt
│ │ ├── 🇸🇿EN.txt
│ │ ├── 🇹🇩FR.txt
│ │ ├── 🇹🇩عر.txt
│ │ ├── 🇹🇬FR.txt
│ │ ├── 🇹🇭ไท.txt
│ │ ├── 🇹🇱PT.txt
│ │ ├── 🇹🇳عر.txt
│ │ ├── 🇹🇴EN.txt
│ │ ├── 🇹🇷TR.txt
│ │ ├── 🇹🇹EN.txt
│ │ ├── 🇹🇻EN.txt
│ │ ├── 🇹🇼國.txt
│ │ ├── 🇹🇿EN.txt
│ │ ├── 🇺🇦УК.txt
│ │ ├── 🇺🇬EN.txt
│ │ ├── 🇺🇸EN.txt
│ │ ├── 🇺🇾ES.txt
│ │ ├── 🇻🇦IT.txt
│ │ ├── 🇻🇨EN.txt
│ │ ├── 🇻🇪ES.txt
│ │ ├── 🇻🇳VI.txt
│ │ ├── 🇻🇺EN.txt
│ │ ├── 🇻🇺FR.txt
│ │ ├── 🇼🇸EN.txt
│ │ ├── 🇾🇪عر.txt
│ │ ├── 🇿🇦AF.txt
│ │ ├── 🇿🇦EN.txt
│ │ ├── 🇿🇦ST.txt
│ │ ├── 🇿🇦XH.txt
│ │ ├── 🇿🇦ZU.txt
│ │ ├── 🇿🇲EN.txt
│ │ └── 🇿🇼EN.txt
│ ├── Document
│ │ └── Document.txt
│ ├── Element
│ │ └── Document.txt
│ ├── GregorianDay
│ │ └── 4.txt
│ ├── GregorianHour
│ │ └── 6.txt
│ ├── GregorianMinute
│ │ └── 14.txt
│ ├── GregorianMonth
│ │ └── August.txt
│ ├── GregorianSecond
│ │ └── 12.txt
│ ├── GregorianWeekday
│ │ ├── 1.txt
│ │ ├── 2.txt
│ │ ├── 3.txt
│ │ ├── 4.txt
│ │ ├── 5.txt
│ │ ├── 6.txt
│ │ └── 7.txt
│ ├── GregorianYear
│ │ └── 1870.txt
│ ├── HebrewHour
│ │ └── 3.txt
│ ├── HebrewMonth
│ │ ├── 1.txt
│ │ ├── 10.txt
│ │ ├── 11.txt
│ │ ├── 12.txt
│ │ ├── 2.txt
│ │ ├── 3.txt
│ │ ├── 4.txt
│ │ ├── 5.txt
│ │ ├── 6.txt
│ │ ├── 7.txt
│ │ ├── 8.txt
│ │ ├── 9.txt
│ │ ├── Adar I.txt
│ │ └── Adar II.txt
│ ├── HebrewMonthAndYear
│ │ └── Nisan, 4460.txt
│ ├── HebrewPart
│ │ └── 82.txt
│ ├── Integer
│ │ └── −1 000 000.txt
│ ├── Intersection⟨ClosedRange⟨Int⟩, ClosedRange⟨Int⟩⟩
│ │ └── 1–10 ∩ 5–15.txt
│ ├── LineView⟨String⟩
│ │ └── ABC.txt
│ ├── Line⟨String⟩
│ │ └── ABC.txt
│ ├── LocalizationSetting
│ │ └── Setting.txt
│ ├── NaryAlternativePatterns⟨Array⟨Int⟩⟩
│ │ └── 123 ∨ 321 ∨ 987.txt
│ ├── NaryConcatenatedPatterns⟨Array⟨Int⟩⟩
│ │ └── 12 + 3 + 45.txt
│ ├── NegatedPattern⟨Array⟨Int⟩⟩
│ │ └── ¬1.txt
│ ├── Preference
│ │ └── true.txt
│ ├── RationalNumber
│ │ ├── (50 001)⁄(10 000).txt
│ │ └── −19⁄2.txt
│ ├── SemanticMarkup
│ │ └── ABC.txt
│ ├── StrictString
│ │ └── ABC.txt
│ ├── String
│ │ └── No Icon.txt
│ ├── TextConvertibleNumberParseError
│ │ └── Invalid Digit.txt
│ ├── Union⟨ClosedRange⟨Int⟩, ClosedRange⟨Int⟩⟩
│ │ └── 1–3 ∪ 7–9.txt
│ ├── Version
│ │ └── 1.2.3.txt
│ └── WholeNumber
│ │ ├── 1 000 000 000.txt
│ │ └── 1000.txt
│ ├── Date Formats
│ ├── Deutsch.txt
│ ├── Français.txt
│ ├── Ελληνικά.txt
│ └── עברית.txt
│ ├── FileConvertible
│ ├── Data
│ │ └── Binary Data
│ │ │ └── Data.testspec
│ ├── Document
│ │ ├── DTD
│ │ │ └── 2021‐02‐02.testspec
│ │ └── Document
│ │ │ └── 2021‐01‐31.testspec
│ ├── StrictString
│ │ └── Unicode
│ │ │ ├── Composed.testspec
│ │ │ ├── Literal.txt
│ │ │ └── Standard.testspec
│ └── String
│ │ ├── Hello
│ │ └── Hello.txt
│ │ └── Line Endings
│ │ └── 2022‐06‐11.testspec
│ ├── Numerals.txt
│ ├── Ordinals.txt
│ ├── SemanticMarkup
│ └── HTML
│ │ └── Escapes.txt
│ ├── Specification
│ └── Overwrite.txt
│ ├── XML
│ ├── Attributes.txt
│ ├── Empty.txt
│ ├── Escaped Attribute.txt
│ ├── Escaped Text.txt
│ ├── Nested.txt
│ └── Text.txt
│ └── Ελληνικά.txt
└── Workspace.swift
/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/CONTRIBUTING.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/🇨🇦EN Bug Report.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/ISSUE_TEMPLATE/🇨🇦EN Bug Report.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/🇨🇦EN Documentation Correction.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/ISSUE_TEMPLATE/🇨🇦EN Documentation Correction.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/🇨🇦EN Feature Request.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/ISSUE_TEMPLATE/🇨🇦EN Feature Request.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/🇨🇦EN Question.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/ISSUE_TEMPLATE/🇨🇦EN Question.md
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/PULL_REQUEST_TEMPLATE.md
--------------------------------------------------------------------------------
/.github/workflows/Amazon Linux.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Amazon Linux.yaml
--------------------------------------------------------------------------------
/.github/workflows/Android.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Android.yaml
--------------------------------------------------------------------------------
/.github/workflows/Documentation Deployment.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Documentation Deployment.yaml
--------------------------------------------------------------------------------
/.github/workflows/Miscellaneous.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Miscellaneous.yaml
--------------------------------------------------------------------------------
/.github/workflows/Swift 5.7 (Amazon Linux).yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Swift 5.7 (Amazon Linux).yaml
--------------------------------------------------------------------------------
/.github/workflows/Swift 5.7 (Android).yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Swift 5.7 (Android).yaml
--------------------------------------------------------------------------------
/.github/workflows/Swift 5.7 (Ubuntu).yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Swift 5.7 (Ubuntu).yaml
--------------------------------------------------------------------------------
/.github/workflows/Swift 5.7 (Web).yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Swift 5.7 (Web).yaml
--------------------------------------------------------------------------------
/.github/workflows/Swift 5.7 (Windows).yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Swift 5.7 (Windows).yaml
--------------------------------------------------------------------------------
/.github/workflows/Swift 5.7 (iOS).yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Swift 5.7 (iOS).yaml
--------------------------------------------------------------------------------
/.github/workflows/Swift 5.7 (macOS).yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Swift 5.7 (macOS).yaml
--------------------------------------------------------------------------------
/.github/workflows/Swift 5.7 (tvOS).yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Swift 5.7 (tvOS).yaml
--------------------------------------------------------------------------------
/.github/workflows/Swift 5.7 (watchOS).yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Swift 5.7 (watchOS).yaml
--------------------------------------------------------------------------------
/.github/workflows/Ubuntu.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Ubuntu.yaml
--------------------------------------------------------------------------------
/.github/workflows/Web.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Web.yaml
--------------------------------------------------------------------------------
/.github/workflows/Windows.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/Windows.yaml
--------------------------------------------------------------------------------
/.github/workflows/iOS.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/iOS.yaml
--------------------------------------------------------------------------------
/.github/workflows/macOS.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/macOS.yaml
--------------------------------------------------------------------------------
/.github/workflows/tvOS.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/tvOS.yaml
--------------------------------------------------------------------------------
/.github/workflows/watchOS.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.github/workflows/watchOS.yaml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/.gitignore
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/LICENSE.md
--------------------------------------------------------------------------------
/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Package.resolved
--------------------------------------------------------------------------------
/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Package.swift
--------------------------------------------------------------------------------
/Plugins/SDGCopySources/CopySources.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Plugins/SDGCopySources/CopySources.swift
--------------------------------------------------------------------------------
/Plugins/SDGEmbedResources/EmbedResources.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Plugins/SDGEmbedResources/EmbedResources.swift
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/README.md
--------------------------------------------------------------------------------
/Refresh (Linux).sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Refresh (Linux).sh
--------------------------------------------------------------------------------
/Refresh (macOS).command:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Refresh (macOS).command
--------------------------------------------------------------------------------
/Sources/SDGBinaryData/Data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGBinaryData/Data.swift
--------------------------------------------------------------------------------
/Sources/SDGBinaryData/DataBinaryView.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGBinaryData/DataBinaryView.swift
--------------------------------------------------------------------------------
/Sources/SDGBinaryData/DataStream.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGBinaryData/DataStream.swift
--------------------------------------------------------------------------------
/Sources/SDGBinaryData/UInt.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGBinaryData/UInt.swift
--------------------------------------------------------------------------------
/Sources/SDGBinaryData/UIntBinaryView.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGBinaryData/UIntBinaryView.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/CalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/CalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/CardinalCalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/CardinalCalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/ConsistentDurationCalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/ConsistentDurationCalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/ConsistentlyOrderedCalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/ConsistentlyOrderedCalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/Day.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/Day.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/EnumerationCalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/EnumerationCalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/ICalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/ICalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/ISOCalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/ISOCalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/Month.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/Month.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/NumericCalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/NumericCalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/OrdinalCalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/OrdinalCalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/RawRepresentableCalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/RawRepresentableCalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/SmallestCalendarComponent.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/SmallestCalendarComponent.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/Weekday.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/Weekday.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Abstract Components/Year.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Abstract Components/Year.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/AnyDescribableDate.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/AnyDescribableDate.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/CalendarDate.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/CalendarDate.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/CalendarInterval.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/CalendarInterval.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Date.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Date.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/DateDefinition.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/DateDefinition.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/DescribableDate.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/DescribableDate.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/FoundationDate.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/FoundationDate.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Gregorian/GregorianDate.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Gregorian/GregorianDate.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Gregorian/GregorianDay.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Gregorian/GregorianDay.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Gregorian/GregorianHour.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Gregorian/GregorianHour.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Gregorian/GregorianMinute.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Gregorian/GregorianMinute.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Gregorian/GregorianMonth.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Gregorian/GregorianMonth.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Gregorian/GregorianSecond.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Gregorian/GregorianSecond.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Gregorian/GregorianWeekday.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Gregorian/GregorianWeekday.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Gregorian/GregorianWeekdayDate.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Gregorian/GregorianWeekdayDate.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Gregorian/GregorianYear.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Gregorian/GregorianYear.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Hebrew/HebrewDate.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Hebrew/HebrewDate.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Hebrew/HebrewDay.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Hebrew/HebrewDay.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Hebrew/HebrewHour.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Hebrew/HebrewHour.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Hebrew/HebrewMonth.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Hebrew/HebrewMonth.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Hebrew/HebrewMonthAndYear.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Hebrew/HebrewMonthAndYear.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Hebrew/HebrewPart.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Hebrew/HebrewPart.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Hebrew/HebrewWeekday.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Hebrew/HebrewWeekday.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Hebrew/HebrewWeekdayDate.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Hebrew/HebrewWeekdayDate.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Hebrew/HebrewYear.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Hebrew/HebrewYear.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/Hebrew/HebrewYearLength.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/Hebrew/HebrewYearLength.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/RationalArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/RationalArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/RelativeDate.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/RelativeDate.swift
--------------------------------------------------------------------------------
/Sources/SDGCalendar/UnknownDate.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCalendar/UnknownDate.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/CollationCacheEntry.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/CollationCacheEntry.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/CollationElement.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/CollationElement.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/CollationIndex.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/CollationIndex.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/CollationLevel.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/CollationLevel.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/CollationOrder.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/CollationOrder.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/Resources.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/Resources.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/Resources/Resources 1.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/Resources/Resources 1.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/Root:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/Root
--------------------------------------------------------------------------------
/Sources/SDGCollation/Tailoring/CollationTailoring.Anchor.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/Tailoring/CollationTailoring.Anchor.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/Tailoring/CollationTailoring.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/Tailoring/CollationTailoring.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/Tailoring/CollationTailoringBuilder.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/Tailoring/CollationTailoringBuilder.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/Tailoring/OperatorFunctions.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/Tailoring/OperatorFunctions.swift
--------------------------------------------------------------------------------
/Sources/SDGCollation/Tailoring/Operators.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollation/Tailoring/Operators.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Addable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Addable.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Associative/BijectiveMapping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Associative/BijectiveMapping.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Associative/ContextualMapping.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Associative/ContextualMapping.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Associative/Dictionary.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Associative/Dictionary.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Conformances/CharacterSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Conformances/CharacterSet.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Conformances/Data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Conformances/Data.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Conformances/String.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Conformances/String.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Conformances/StringProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Conformances/StringProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/LegacyMode.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/LegacyMode.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Operators.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Operators.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/AnyCollection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/AnyCollection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Array.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Array.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/BidirectionalCollection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/BidirectionalCollection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Collection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Collection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/CollectionDifference.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/CollectionDifference.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/CollectionDifferenceChange.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/CollectionDifferenceChange.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/FillDirection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/FillDirection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/LexicographicalComparison.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/LexicographicalComparison.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/OrderedSet.SubSequence.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/OrderedSet.SubSequence.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/OrderedSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/OrderedSet.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Affixes/ExclusivePrefixMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Affixes/ExclusivePrefixMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Affixes/ExclusiveSuffixMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Affixes/ExclusiveSuffixMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Affixes/InclusivePrefixMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Affixes/InclusivePrefixMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Affixes/InclusiveSuffixMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Affixes/InclusiveSuffixMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Alternatives/AlternativeMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Alternatives/AlternativeMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Alternatives/AlternativePatterns.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Alternatives/AlternativePatterns.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Alternatives/NaryAlternativeMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Alternatives/NaryAlternativeMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Alternatives/NaryAlternativePatterns.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Alternatives/NaryAlternativePatterns.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Any/AnyBidirectionalPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Any/AnyBidirectionalPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Any/AnyPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Any/AnyPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Any/AnyPatternMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Any/AnyPatternMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/AtomicPatternMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/AtomicPatternMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Concatenated/ConcatenatedMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Concatenated/ConcatenatedMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Concatenated/ConcatenatedPatterns.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Concatenated/ConcatenatedPatterns.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Concatenated/NaryConcatenatedMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Concatenated/NaryConcatenatedMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/ConditionalPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/ConditionalPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/LiteralPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/LiteralPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/NegatedPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/NegatedPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingContentsPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingContentsPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingMatchContents.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingMatchContents.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingMatchSegment.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingMatchSegment.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingSegmentPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Nesting/NestingSegmentPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Protocols/BidirectionalPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Protocols/BidirectionalPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Protocols/Pattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Protocols/Pattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Protocols/PatternMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Protocols/PatternMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Repetition/PatternConsumption.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Repetition/PatternConsumption.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Repetition/RepetitionMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Repetition/RepetitionMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/Repetition/RepetitionPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/Repetition/RepetitionPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Patterns/SeparatedComponentMatch.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Patterns/SeparatedComponentMatch.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Range.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Range.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/RangeExpression.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/RangeExpression.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/RangeReplaceableCollection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/RangeReplaceableCollection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/ReversedCollection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/ReversedCollection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/SearchableBidirectionalCollection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/SearchableBidirectionalCollection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/SearchableCollection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/SearchableCollection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Ordered/Slice.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Ordered/Slice.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Unordered/AbsoluteComplement.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Unordered/AbsoluteComplement.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Unordered/ComparableSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Unordered/ComparableSet.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Unordered/FiniteSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Unordered/FiniteSet.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Unordered/IntensionalSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Unordered/IntensionalSet.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Unordered/Intersection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Unordered/Intersection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Unordered/MutableSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Unordered/MutableSet.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Unordered/Set.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Unordered/Set.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Unordered/SetDefinition.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Unordered/SetDefinition.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Unordered/SetInRepresentableUniverse.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Unordered/SetInRepresentableUniverse.swift
--------------------------------------------------------------------------------
/Sources/SDGCollections/Unordered/Union.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollections/Unordered/Union.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/BidirectionalCollection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/BidirectionalCollection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/BidirectionalPattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/BidirectionalPattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/Collection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/Collection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/ComparableSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/ComparableSet.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/FiniteSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/FiniteSet.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/Hashable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/Hashable.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/MutableSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/MutableSet.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/Pattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/Pattern.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/RandomAccessCollection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/RandomAccessCollection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/RangeReplaceableCollection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/RangeReplaceableCollection.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/SetDefinition.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/SetDefinition.swift
--------------------------------------------------------------------------------
/Sources/SDGCollectionsTestUtilities/SetInRepresentableUniverse.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCollectionsTestUtilities/SetInRepresentableUniverse.swift
--------------------------------------------------------------------------------
/Sources/SDGConcurrency/RunLoop.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGConcurrency/RunLoop.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/APILocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/APILocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/Assert.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/Assert.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/Caching.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/Caching.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/Decodable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/Decodable.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/DefaultAssignmentPropertyWrapper.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/DefaultAssignmentPropertyWrapper.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/Encodable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/Encodable.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/Memory.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/Memory.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/NonmutatingVariants.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/NonmutatingVariants.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/ProjectingPropertyWrapper.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/ProjectingPropertyWrapper.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/PropertyWrapper.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/PropertyWrapper.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/SendableValueCache.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/SendableValueCache.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/Shared.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/Shared.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/SharedProperty.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/SharedProperty.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/SharedValueObserver.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/SharedValueObserver.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/TextualPlaygroundDisplay.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/TextualPlaygroundDisplay.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/TransparentWrapper.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/TransparentWrapper.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/Tuple.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/Tuple.swift
--------------------------------------------------------------------------------
/Sources/SDGControlFlow/Weak.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGControlFlow/Weak.swift
--------------------------------------------------------------------------------
/Sources/SDGCornerstoneLocalizations/APILocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCornerstoneLocalizations/APILocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGCornerstoneLocalizations/FormatLocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCornerstoneLocalizations/FormatLocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGCornerstoneLocalizations/InterfaceLocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGCornerstoneLocalizations/InterfaceLocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGExternalProcess/ExternalProcess.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGExternalProcess/ExternalProcess.swift
--------------------------------------------------------------------------------
/Sources/SDGExternalProcess/ExternalProcessError.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGExternalProcess/ExternalProcessError.swift
--------------------------------------------------------------------------------
/Sources/SDGExternalProcess/Shell.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGExternalProcess/Shell.swift
--------------------------------------------------------------------------------
/Sources/SDGGeometry/Angle.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGGeometry/Angle.swift
--------------------------------------------------------------------------------
/Sources/SDGGeometry/Be_zierPath.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGGeometry/Be_zierPath.swift
--------------------------------------------------------------------------------
/Sources/SDGGeometry/CGPoint.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGGeometry/CGPoint.swift
--------------------------------------------------------------------------------
/Sources/SDGGeometry/CGVector.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGGeometry/CGVector.swift
--------------------------------------------------------------------------------
/Sources/SDGGeometry/TwoDimensionalPoint.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGGeometry/TwoDimensionalPoint.swift
--------------------------------------------------------------------------------
/Sources/SDGGeometry/TwoDimensionalPointProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGGeometry/TwoDimensionalPointProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGGeometry/TwoDimensionalVector.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGGeometry/TwoDimensionalVector.swift
--------------------------------------------------------------------------------
/Sources/SDGGeometry/TwoDimensionalVectorProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGGeometry/TwoDimensionalVectorProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGGeometryTestUtilities/TwoDimensionalPointProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGGeometryTestUtilities/TwoDimensionalPointProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGGeometryTestUtilities/TwoDimensionalVectorProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGGeometryTestUtilities/TwoDimensionalVectorProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/CachedLocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/CachedLocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Bool.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Bool.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/CodableViaEnumeration.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/CodableViaEnumeration.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Decodable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Decodable.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/LosslessStringConvertible.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/LosslessStringConvertible.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Numbers/Angle.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Numbers/Angle.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Numbers/Float.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Numbers/Float.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Numbers/Int.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Numbers/Int.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Numbers/IntegerProtcool.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Numbers/IntegerProtcool.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Numbers/IntegralArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Numbers/IntegralArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Numbers/RationalArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Numbers/RationalArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Numbers/RationalNumberProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Numbers/RationalNumberProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Numbers/UInt.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Numbers/UInt.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Numbers/WholeArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Numbers/WholeArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Numbers/WholeNumberProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Numbers/WholeNumberProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Precondition.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Precondition.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/PresentableError.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/PresentableError.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/Range.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/Range.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/TextConvertibleNumber.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/TextConvertibleNumber.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Extensions/TextConvertibleNumberParseError.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Extensions/TextConvertibleNumberParseError.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/InputLocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/InputLocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Interpolation/Casing.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Interpolation/Casing.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Interpolation/EnglishCasing.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Interpolation/EnglishCasing.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Interpolation/GrammaticalGender.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Interpolation/GrammaticalGender.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Interpolation/GrammaticalNumber.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Interpolation/GrammaticalNumber.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Interpolation/__________.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Interpolation/__________.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Interpolation/_________________.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Interpolation/_________________.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Localization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Localization.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/LocalizationSetting.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/LocalizationSetting.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/LocalizationSettingStabilizationMode.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/LocalizationSettingStabilizationMode.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Localizations/APILocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Localizations/APILocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Localizations/AnyLocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Localizations/AnyLocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Localizations/ContentLocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Localizations/ContentLocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Localizations/FormatLocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Localizations/FormatLocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Localizations/InterfaceLocalization.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Localizations/InterfaceLocalization.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Metadata/Language.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Metadata/Language.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Metadata/LocalizationData.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Metadata/LocalizationData.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Metadata/Script.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Metadata/Script.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Metadata/State.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Metadata/State.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Metadata/StateData.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Metadata/StateData.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/Metadata/TextDirection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/Metadata/TextDirection.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/UserFacing.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/UserFacing.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalization/UserFacingDynamic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalization/UserFacingDynamic.swift
--------------------------------------------------------------------------------
/Sources/SDGLocalizationTestUtilities/CustomStringConvertible.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLocalizationTestUtilities/CustomStringConvertible.swift
--------------------------------------------------------------------------------
/Sources/SDGLogic/Any.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLogic/Any.swift
--------------------------------------------------------------------------------
/Sources/SDGLogic/Bool.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLogic/Bool.swift
--------------------------------------------------------------------------------
/Sources/SDGLogic/Equatable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLogic/Equatable.swift
--------------------------------------------------------------------------------
/Sources/SDGLogic/NilLiteral.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLogic/NilLiteral.swift
--------------------------------------------------------------------------------
/Sources/SDGLogic/Operators.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLogic/Operators.swift
--------------------------------------------------------------------------------
/Sources/SDGLogic/Tuple.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLogic/Tuple.swift
--------------------------------------------------------------------------------
/Sources/SDGLogicTestUtilities/Equatable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGLogicTestUtilities/Equatable.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Angle.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Angle.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/BitField.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/BitField.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/ClosedRange.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/ClosedRange.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Comparable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Comparable.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Data.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Float.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Float.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/FunctionAnalysis.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/FunctionAnalysis.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Int.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Int.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Measurement.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Measurement.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/Addable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/Addable.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/FixedScaleOneDimensionalPoint.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/FixedScaleOneDimensionalPoint.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/GenericAdditiveArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/GenericAdditiveArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/IntegerProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/IntegerProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/IntegralArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/IntegralArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/Negatable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/Negatable.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/NumericAdditiveArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/NumericAdditiveArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/OneDimensionalPoint.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/OneDimensionalPoint.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/OneDimensionalVector.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/OneDimensionalVector.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/PointProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/PointProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/RationalArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/RationalArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/RationalNumberProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/RationalNumberProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/RationalVector.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/RationalVector.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/RealArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/RealArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/RealNumberProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/RealNumberProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/Subtractable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/Subtractable.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/VectorProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/VectorProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/WholeArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/WholeArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Numeric Protocols/WholeNumberProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Numeric Protocols/WholeNumberProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Operators.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Operators.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/OrderedEnumeration.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/OrderedEnumeration.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Sequence.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Sequence.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/Tuple.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/Tuple.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematics/UInt.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematics/UInt.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/Addable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/Addable.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/BitField.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/BitField.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/Comparable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/Comparable.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/FixedScaleOneDimensionalPoint.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/FixedScaleOneDimensionalPoint.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/Float.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/Float.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/GenericAdditiveArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/GenericAdditiveArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/IntegralArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/IntegralArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/Measurement.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/Measurement.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/Negatable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/Negatable.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/NumericAdditiveArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/NumericAdditiveArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/OneDimensionalPoint.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/OneDimensionalPoint.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/PointProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/PointProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/RationalArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/RationalArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/RationalVector.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/RationalVector.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/RealArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/RealArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/Subtractable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/Subtractable.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/VectorProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/VectorProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGMathematicsTestUtilities/WholeArithmetic.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGMathematicsTestUtilities/WholeArithmetic.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistence/Data.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistence/Data.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistence/FileConvertible.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistence/FileConvertible.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistence/FileManager.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistence/FileManager.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistence/Preference.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistence/Preference.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistence/PreferenceSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistence/PreferenceSet.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistence/ProcessInfo.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistence/ProcessInfo.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistence/StrictString.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistence/StrictString.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistence/String.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistence/String.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistence/URL.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistence/URL.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistenceTestUtilities/Codable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistenceTestUtilities/Codable.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistenceTestUtilities/FileConvertible.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistenceTestUtilities/FileConvertible.swift
--------------------------------------------------------------------------------
/Sources/SDGPersistenceTestUtilities/Specification.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPersistenceTestUtilities/Specification.swift
--------------------------------------------------------------------------------
/Sources/SDGPrecisionMathematics/HalvesView.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPrecisionMathematics/HalvesView.swift
--------------------------------------------------------------------------------
/Sources/SDGPrecisionMathematics/Integer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPrecisionMathematics/Integer.swift
--------------------------------------------------------------------------------
/Sources/SDGPrecisionMathematics/RationalNumber.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPrecisionMathematics/RationalNumber.swift
--------------------------------------------------------------------------------
/Sources/SDGPrecisionMathematics/UInt.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPrecisionMathematics/UInt.swift
--------------------------------------------------------------------------------
/Sources/SDGPrecisionMathematics/WholeNumber.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPrecisionMathematics/WholeNumber.swift
--------------------------------------------------------------------------------
/Sources/SDGPrecisionMathematics/WholeNumberBinaryView.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPrecisionMathematics/WholeNumberBinaryView.swift
--------------------------------------------------------------------------------
/Sources/SDGPrecisionMathematics/WholeNumberBinaryViewIndex.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPrecisionMathematics/WholeNumberBinaryViewIndex.swift
--------------------------------------------------------------------------------
/Sources/SDGPrecisionMathematics/WholeNumberBinaryViewIndexDistance.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGPrecisionMathematics/WholeNumberBinaryViewIndexDistance.swift
--------------------------------------------------------------------------------
/Sources/SDGRandomization/Bool.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGRandomization/Bool.swift
--------------------------------------------------------------------------------
/Sources/SDGRandomization/CyclicalNumberGenerator.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGRandomization/CyclicalNumberGenerator.swift
--------------------------------------------------------------------------------
/Sources/SDGRandomization/PseudorandomNumberGenerator.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGRandomization/PseudorandomNumberGenerator.swift
--------------------------------------------------------------------------------
/Sources/SDGRandomizationTestUtilities/Randomizer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGRandomizationTestUtilities/Randomizer.swift
--------------------------------------------------------------------------------
/Sources/SDGTesting/PerformanceTest.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGTesting/PerformanceTest.swift
--------------------------------------------------------------------------------
/Sources/SDGTesting/Test.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGTesting/Test.swift
--------------------------------------------------------------------------------
/Sources/SDGText/CharacterSet.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/CharacterSet.swift
--------------------------------------------------------------------------------
/Sources/SDGText/CollectionStringFamily.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/CollectionStringFamily.swift
--------------------------------------------------------------------------------
/Sources/SDGText/CollectionUnicodeScalar.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/CollectionUnicodeScalar.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Compatibility/StaticString.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Compatibility/StaticString.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Compatibility/String.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Compatibility/String.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Compatibility/StringClusterView.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Compatibility/StringClusterView.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Compatibility/StringScalarView.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Compatibility/StringScalarView.swift
--------------------------------------------------------------------------------
/Sources/SDGText/ExtendedGraphemeCluster.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/ExtendedGraphemeCluster.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Font/Font.Definition.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Font/Font.Definition.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Font/Font.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Font/Font.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Font/NSFont.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Font/NSFont.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Font/SwiftUI.Font.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Font/SwiftUI.Font.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Font/UIFont.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Font/UIFont.swift
--------------------------------------------------------------------------------
/Sources/SDGText/MarkupPlaygroundDisplay.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/MarkupPlaygroundDisplay.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Range.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Range.swift
--------------------------------------------------------------------------------
/Sources/SDGText/SemanticMarkup.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/SemanticMarkup.swift
--------------------------------------------------------------------------------
/Sources/SDGText/SemanticMarkupStringInterpolation.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/SemanticMarkupStringInterpolation.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Strict/StrictString.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Strict/StrictString.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Strict/StrictStringClusterView.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Strict/StrictStringClusterView.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Strict/StrictStringInterpolationProtocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Strict/StrictStringInterpolationProtocol.swift
--------------------------------------------------------------------------------
/Sources/SDGText/Strict/StrictStringStringInterpolation.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/Strict/StrictStringStringInterpolation.swift
--------------------------------------------------------------------------------
/Sources/SDGText/String Family/ExtendedGraphemeClusterView.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/String Family/ExtendedGraphemeClusterView.swift
--------------------------------------------------------------------------------
/Sources/SDGText/String Family/Line.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/String Family/Line.swift
--------------------------------------------------------------------------------
/Sources/SDGText/String Family/LineView.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/String Family/LineView.swift
--------------------------------------------------------------------------------
/Sources/SDGText/String Family/LineViewIndex.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/String Family/LineViewIndex.swift
--------------------------------------------------------------------------------
/Sources/SDGText/String Family/Newline.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/String Family/Newline.swift
--------------------------------------------------------------------------------
/Sources/SDGText/String Family/NewlinePattern.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/String Family/NewlinePattern.swift
--------------------------------------------------------------------------------
/Sources/SDGText/String Family/StringFamily.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/String Family/StringFamily.swift
--------------------------------------------------------------------------------
/Sources/SDGText/String Family/StringIndex.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/String Family/StringIndex.swift
--------------------------------------------------------------------------------
/Sources/SDGText/String Family/UnicodeScalarView.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/String Family/UnicodeScalarView.swift
--------------------------------------------------------------------------------
/Sources/SDGText/UnicodeScalar.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGText/UnicodeScalar.swift
--------------------------------------------------------------------------------
/Sources/SDGVersioning/Version.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGVersioning/Version.swift
--------------------------------------------------------------------------------
/Sources/SDGXCTestUtilities/TestCase.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXCTestUtilities/TestCase.swift
--------------------------------------------------------------------------------
/Sources/SDGXCTestUtilities/XCTAssert.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXCTestUtilities/XCTAssert.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/CustomXMLRepresentable.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/CustomXMLRepresentable.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Attribute.Protocol.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Attribute.Protocol.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Attribute.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Attribute.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Coder.Element.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Coder.Element.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Coder.MiscellaneousKey.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Coder.MiscellaneousKey.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Coder.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Coder.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Decoder.Container.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Decoder.Container.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Decoder.Implementation.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Decoder.Implementation.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Decoder.KeyedContainer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Decoder.KeyedContainer.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Decoder.KeylessContainer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Decoder.KeylessContainer.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Decoder.SingleValueContainer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Decoder.SingleValueContainer.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Decoder.UnkeyedContainer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Decoder.UnkeyedContainer.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Decoder.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Decoder.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Encoder.Container.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Encoder.Container.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Encoder.Implementation.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Encoder.Implementation.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Encoder.KeyedContainer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Encoder.KeyedContainer.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Encoder.KeylessContainer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Encoder.KeylessContainer.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Encoder.SingleValueContainer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Encoder.SingleValueContainer.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Encoder.UnkeyedContainer.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Encoder.UnkeyedContainer.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Coding/XML.Encoder.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Coding/XML.Encoder.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Model/XML.AttributeValue.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Model/XML.AttributeValue.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Model/XML.CharacterData.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Model/XML.CharacterData.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Model/XML.Content.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Model/XML.Content.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Model/XML.DTD.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Model/XML.DTD.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Model/XML.Document.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Model/XML.Document.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Model/XML.Element.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Model/XML.Element.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/Parser/XML.Parser.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/Parser/XML.Parser.swift
--------------------------------------------------------------------------------
/Sources/SDGXML/XML.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/SDGXML/XML.swift
--------------------------------------------------------------------------------
/Sources/generate_root_collation/CollationElement.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/generate_root_collation/CollationElement.swift
--------------------------------------------------------------------------------
/Sources/generate_root_collation/CollationLevel.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/generate_root_collation/CollationLevel.swift
--------------------------------------------------------------------------------
/Sources/generate_root_collation/DUCET.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/generate_root_collation/DUCET.swift
--------------------------------------------------------------------------------
/Sources/generate_root_collation/Repository.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/generate_root_collation/Repository.swift
--------------------------------------------------------------------------------
/Sources/generate_root_collation/RootCollation.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/generate_root_collation/RootCollation.swift
--------------------------------------------------------------------------------
/Sources/generate_root_collation/RootCollationGenerator.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/generate_root_collation/RootCollationGenerator.swift
--------------------------------------------------------------------------------
/Sources/sdg_copy_source/CopySource.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/sdg_copy_source/CopySource.swift
--------------------------------------------------------------------------------
/Sources/sdg_copy_source/main.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/sdg_copy_source/main.swift
--------------------------------------------------------------------------------
/Sources/sdg_embed_resource/EmbedResource.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/sdg_embed_resource/EmbedResource.swift
--------------------------------------------------------------------------------
/Sources/sdg_embed_resource/main.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Sources/sdg_embed_resource/main.swift
--------------------------------------------------------------------------------
/Tests/SDGBinaryDataTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGBinaryDataTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGCalendarTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCalendarTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGCalendarTests/InternalTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCalendarTests/InternalTests.swift
--------------------------------------------------------------------------------
/Tests/SDGCalendarTests/RegressionTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCalendarTests/RegressionTests.swift
--------------------------------------------------------------------------------
/Tests/SDGCollationTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCollationTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGCollationTests/LanguageTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCollationTests/LanguageTests.swift
--------------------------------------------------------------------------------
/Tests/SDGCollationTests/RegressionTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCollationTests/RegressionTests.swift
--------------------------------------------------------------------------------
/Tests/SDGCollectionsTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCollectionsTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGCollectionsTests/AnyForwardCollection.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCollectionsTests/AnyForwardCollection.swift
--------------------------------------------------------------------------------
/Tests/SDGCollectionsTests/InternalTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCollectionsTests/InternalTests.swift
--------------------------------------------------------------------------------
/Tests/SDGCollectionsTests/LegacyMode.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCollectionsTests/LegacyMode.swift
--------------------------------------------------------------------------------
/Tests/SDGCollectionsTests/Nothing.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCollectionsTests/Nothing.swift
--------------------------------------------------------------------------------
/Tests/SDGCollectionsTests/RegressionTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCollectionsTests/RegressionTests.swift
--------------------------------------------------------------------------------
/Tests/SDGConcurrencyTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGConcurrencyTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGControlFlowTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGControlFlowTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGControlFlowTests/Examples.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGControlFlowTests/Examples.swift
--------------------------------------------------------------------------------
/Tests/SDGCopySourcesTests/Copied.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCopySourcesTests/Copied.swift
--------------------------------------------------------------------------------
/Tests/SDGCopySourcesTests/Sources/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCopySourcesTests/Sources/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGCopySourcesTests/Sources/Copy Sources.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCopySourcesTests/Sources/Copy Sources.txt
--------------------------------------------------------------------------------
/Tests/SDGCornerstoneDocumentationExampleTests/DateExampleTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCornerstoneDocumentationExampleTests/DateExampleTests.swift
--------------------------------------------------------------------------------
/Tests/SDGCornerstoneDocumentationExampleTests/FunctionAnalysisExampleTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCornerstoneDocumentationExampleTests/FunctionAnalysisExampleTests.swift
--------------------------------------------------------------------------------
/Tests/SDGCornerstoneDocumentationExampleTests/MiscellaneousExampleTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCornerstoneDocumentationExampleTests/MiscellaneousExampleTests.swift
--------------------------------------------------------------------------------
/Tests/SDGCornerstoneDocumentationExampleTests/ReadMeExampleTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCornerstoneDocumentationExampleTests/ReadMeExampleTests.swift
--------------------------------------------------------------------------------
/Tests/SDGCornerstoneDocumentationExampleTests/XMLExampleTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGCornerstoneDocumentationExampleTests/XMLExampleTests.swift
--------------------------------------------------------------------------------
/Tests/SDGEmbedResourcesTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGEmbedResourcesTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGEmbedResourcesTests/Data:
--------------------------------------------------------------------------------
1 | Hello, world!
2 |
--------------------------------------------------------------------------------
/Tests/SDGEmbedResourcesTests/Embed Resources.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGEmbedResourcesTests/Embed Resources.txt
--------------------------------------------------------------------------------
/Tests/SDGEmbedResourcesTests/Text.txt:
--------------------------------------------------------------------------------
1 | Hello, world!
2 |
--------------------------------------------------------------------------------
/Tests/SDGExternalProcessTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGExternalProcessTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGExternalProcessTests/RegressionTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGExternalProcessTests/RegressionTests.swift
--------------------------------------------------------------------------------
/Tests/SDGGeometryTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGGeometryTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGLocalizationTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGLocalizationTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGLocalizationTests/InternalTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGLocalizationTests/InternalTests.swift
--------------------------------------------------------------------------------
/Tests/SDGLogicTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGLogicTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGMathematicsTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGMathematicsTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGMathematicsTests/RegressionTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGMathematicsTests/RegressionTests.swift
--------------------------------------------------------------------------------
/Tests/SDGPersistenceTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGPersistenceTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGPersistenceTests/RegressionTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGPersistenceTests/RegressionTests.swift
--------------------------------------------------------------------------------
/Tests/SDGPrecisionMathematicsTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGPrecisionMathematicsTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGPrecisionMathematicsTests/InternalTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGPrecisionMathematicsTests/InternalTests.swift
--------------------------------------------------------------------------------
/Tests/SDGRandomizationTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGRandomizationTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGTextTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGTextTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGTextTests/InternalTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGTextTests/InternalTests.swift
--------------------------------------------------------------------------------
/Tests/SDGTextTests/RegressionTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGTextTests/RegressionTests.swift
--------------------------------------------------------------------------------
/Tests/SDGVersioningTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGVersioningTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGVersioningTests/RegressionTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGVersioningTests/RegressionTests.swift
--------------------------------------------------------------------------------
/Tests/SDGXMLTests/APITests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGXMLTests/APITests.swift
--------------------------------------------------------------------------------
/Tests/SDGXMLTests/Coding Helpers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGXMLTests/Coding Helpers.swift
--------------------------------------------------------------------------------
/Tests/SDGXMLTests/Error Helpers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGXMLTests/Error Helpers.swift
--------------------------------------------------------------------------------
/Tests/SDGXMLTests/XML Helpers.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/SDGXMLTests/XML Helpers.swift
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Container End/🇨🇦EN.txt:
--------------------------------------------------------------------------------
1 | The container at “nested → 2” has too few elements.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Container End/🇩🇪DE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Container End/🇩🇪DE.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Container End/🇬🇧EN.txt:
--------------------------------------------------------------------------------
1 | The container at ‘nested → 2’ has too few elements.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Container End/🇺🇸EN.txt:
--------------------------------------------------------------------------------
1 | The container at “nested → 2” has too few elements.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Keyless Type Mismatch/🇨🇦EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Keyless Type Mismatch/🇨🇦EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Keyless Type Mismatch/🇩🇪DE.txt:
--------------------------------------------------------------------------------
1 | Die Daten unter „nested → 1“ beschreiben kein Exemplar des erwarteten Typs: Int
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Keyless Type Mismatch/🇬🇧EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Keyless Type Mismatch/🇬🇧EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Keyless Type Mismatch/🇺🇸EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Keyless Type Mismatch/🇺🇸EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Mismatched Key/🇨🇦EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Mismatched Key/🇨🇦EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Mismatched Key/🇩🇪DE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Mismatched Key/🇩🇪DE.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Mismatched Key/🇬🇧EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Mismatched Key/🇬🇧EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Mismatched Key/🇺🇸EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Mismatched Key/🇺🇸EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Missing Key (Attribute)/🇨🇦EN.txt:
--------------------------------------------------------------------------------
1 | “property” is missing at “nested”.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Missing Key (Attribute)/🇩🇪DE.txt:
--------------------------------------------------------------------------------
1 | „property“ fehlt unter „nested“.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Missing Key (Attribute)/🇬🇧EN.txt:
--------------------------------------------------------------------------------
1 | ‘property’ is missing at ‘nested’.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Missing Key (Attribute)/🇺🇸EN.txt:
--------------------------------------------------------------------------------
1 | “property” is missing at “nested”.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Missing Key/🇨🇦EN.txt:
--------------------------------------------------------------------------------
1 | “property” is missing at “nested”.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Missing Key/🇩🇪DE.txt:
--------------------------------------------------------------------------------
1 | „property“ fehlt unter „nested“.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Missing Key/🇬🇧EN.txt:
--------------------------------------------------------------------------------
1 | ‘property’ is missing at ‘nested’.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Missing Key/🇺🇸EN.txt:
--------------------------------------------------------------------------------
1 | “property” is missing at “nested”.
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Single Value Type Mismatch/🇨🇦EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Single Value Type Mismatch/🇨🇦EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Single Value Type Mismatch/🇩🇪DE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Single Value Type Mismatch/🇩🇪DE.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Single Value Type Mismatch/🇬🇧EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Single Value Type Mismatch/🇬🇧EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Single Value Type Mismatch/🇺🇸EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Single Value Type Mismatch/🇺🇸EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Complexity Mismatch/🇨🇦EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Complexity Mismatch/🇨🇦EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Complexity Mismatch/🇩🇪DE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Complexity Mismatch/🇩🇪DE.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Complexity Mismatch/🇬🇧EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Complexity Mismatch/🇬🇧EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Complexity Mismatch/🇺🇸EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Complexity Mismatch/🇺🇸EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Mismatch (Attribute)/🇨🇦EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Mismatch (Attribute)/🇨🇦EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Mismatch (Attribute)/🇩🇪DE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Mismatch (Attribute)/🇩🇪DE.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Mismatch (Attribute)/🇬🇧EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Mismatch (Attribute)/🇬🇧EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Mismatch (Attribute)/🇺🇸EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Mismatch (Attribute)/🇺🇸EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Mismatch/🇨🇦EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Mismatch/🇨🇦EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Mismatch/🇩🇪DE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Mismatch/🇩🇪DE.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Mismatch/🇬🇧EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Mismatch/🇬🇧EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable Errors/Type Mismatch/🇺🇸EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable Errors/Type Mismatch/🇺🇸EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/Array.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/Array.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/Class.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/Class.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/Customized.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/Customized.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/Dictionary.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/Dictionary.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/Single Value.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/Single Value.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/String.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/String.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/Structure.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/Structure.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/Unkeyed Class.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/Unkeyed Class.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/Unkeyed.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/Unkeyed.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/With Attribute.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/With Attribute.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/With Keyed Nil.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/With Keyed Nil.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/With Nil.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/With Nil.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/XML Single Value.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/XML Single Value.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/XML Unkeyed.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/XML Unkeyed.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable XML/XML.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable XML/XML.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Angle⟨Double⟩/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 3
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Array⟨Change⟩/Changes/2019‐11‐22.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/Array⟨Change⟩/Changes/2019‐11‐22.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/AttributeValue/Value/2021‐01‐24.txt:
--------------------------------------------------------------------------------
1 | [
2 | "value"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/CGFloat/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/CGFloat/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/CGPoint/PointProtocol/2019‐05‐05.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/CGPoint/PointProtocol/2019‐05‐05.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/CGVector/AdditiveArithmetic/2019‐05‐05.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/CGVector/AdditiveArithmetic/2019‐05‐05.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/CalendarDate/Custom/2018‐03‐26.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/CalendarDate/Custom/2018‐03‐26.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/CalendarDate/Foundation/2018‐03‐26.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/CalendarDate/Foundation/2018‐03‐26.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/CalendarDate/Gregorian/2018‐03‐26.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/CalendarDate/Gregorian/2018‐03‐26.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/CalendarDate/Hebrew/2018‐03‐26.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/CalendarDate/Hebrew/2018‐03‐26.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/CalendarDate/Relative/2018‐03‐26.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/CalendarDate/Relative/2018‐03‐26.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Casing/Medial/2020‐06‐05.txt:
--------------------------------------------------------------------------------
1 | [
2 | "α"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/CharacterData/Character Data/2021‐01‐24.txt:
--------------------------------------------------------------------------------
1 | [
2 | "character data"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Document/Document/2021‐01‐24.txt:
--------------------------------------------------------------------------------
1 | [
2 | ""
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Document/Document/2021‐01‐31.txt:
--------------------------------------------------------------------------------
1 | [
2 | "\n"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Double/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Double/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Element/Element/2021‐01‐24.txt:
--------------------------------------------------------------------------------
1 | [
2 | "<\/name>"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/EnglishCasing/Medial/2020‐06‐08.txt:
--------------------------------------------------------------------------------
1 | [
2 | "ab"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Float/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Float/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Float16/AdditiveArithmetic/2020‐10‐30.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Float16/PointProtocol/2020‐10‐30.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Float80/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Float80/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/GrammaticalGender/Masculine/2020‐06‐06.txt:
--------------------------------------------------------------------------------
1 | [
2 | "m"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/GrammaticalNumber/Singular/2020‐06‐06.txt:
--------------------------------------------------------------------------------
1 | [
2 | "1"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/GregorianDay/12/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 12
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/GregorianHour/12/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 12
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/GregorianMinute/12/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 12
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/GregorianMonth/January/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 1
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/GregorianSecond/12/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 12
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/GregorianWeekday/Sunday/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 1
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/GregorianYear/1234/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 1234
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewDay/12/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 12
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewHour/12/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 12
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewMonth/Adar I/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | "6א"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewMonth/Adar II/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | "6ב"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewMonth/Adar/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | "6"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewMonth/Elul/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | "12"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewMonth/Tishrei/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | "1"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewMonthAndYear/Tishrei, 2345/2018‐03‐26.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/HebrewMonthAndYear/Tishrei, 2345/2018‐03‐26.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewPart/124/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 124
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewWeekday/Sunday/2018‐03‐29.txt:
--------------------------------------------------------------------------------
1 | [
2 | 1
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/HebrewYear/1234/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 1234
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Int/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Int/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Int16/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Int16/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Int32/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Int32/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Int64/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Int64/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Int8/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Int8/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Integer/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | "25"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Integer/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | "58"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/LosslessStirngConvertibleExample/Example/2018‐03‐29.txt:
--------------------------------------------------------------------------------
1 | [
2 | "Example"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/RationalNumber/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/RationalNumber/AdditiveArithmetic/2018‐03‐26.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/RationalNumber/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/RationalNumber/PointProtocol/2018‐03‐26.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/SemanticMarkup/Unicode/2018‐03‐30.txt:
--------------------------------------------------------------------------------
1 | [
2 | "àbçđę..."
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/SemanticMarkup/Unicode/Composed.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/SemanticMarkup/Unicode/Composed.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/SemanticMarkup/Unicode/Literal.txt:
--------------------------------------------------------------------------------
1 | [
2 | "àbçđę..."
3 | ]
4 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/SemanticMarkup/Unicode/Standard.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/SemanticMarkup/Unicode/Standard.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/StrictString/Unicode/2018‐03‐30.txt:
--------------------------------------------------------------------------------
1 | [
2 | "àbçđę..."
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/StrictString/Unicode/Composed.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/StrictString/Unicode/Composed.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/StrictString/Unicode/Literal.txt:
--------------------------------------------------------------------------------
1 | [
2 | "àbçđę..."
3 | ]
4 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/StrictString/Unicode/Standard.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/StrictString/Unicode/Standard.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Tuple2⟨Int, Int⟩/(1, 2)/2020‐07‐29.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/Tuple2⟨Int, Int⟩/(1, 2)/2020‐07‐29.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/Tuple3⟨Int, Int, Int⟩/(1, 2, 3)/2020‐07‐29.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Codable/Tuple3⟨Int, Int, Int⟩/(1, 2, 3)/2020‐07‐29.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/UInt/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/UInt/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/UInt16/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/UInt16/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/UInt32/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/UInt32/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/UInt64/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/UInt64/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/UInt8/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 25
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/UInt8/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | 58
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/WholeNumber/AdditiveArithmetic/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | "25"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/WholeNumber/PointProtocol/2018‐03‐26.txt:
--------------------------------------------------------------------------------
1 | [
2 | "58"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/ΓραμματικήΠτώση/Ονομαστική/2020‐06‐06.txt:
--------------------------------------------------------------------------------
1 | [
2 | "ονομ."
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/Codable/מין־דקדוקי/זכר/2020‐06‐06.txt:
--------------------------------------------------------------------------------
1 | [
2 | "ז׳"
3 | ]
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/Angle⟨Double⟩/90°.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/Angle⟨Double⟩/90°.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/Angle⟨Double⟩/−90°.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/Angle⟨Double⟩/−90°.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/Array⟨Int⟩/123.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/Array⟨Int⟩/123.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/AttributeValue/Attribute.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/AttributeValue/Attribute.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/BinaryView/10th.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/BinaryView/10th.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/BinaryView⟨UInt8⟩/1st.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/BinaryView⟨UInt8⟩/1st.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/CharacterData/Character Data.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/CharacterData/Character Data.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ClusterView/ABC.txt:
--------------------------------------------------------------------------------
1 | 🇨🇦EN
2 | ABC
3 |
4 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/Content/Content.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/Content/Content.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇩CA.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇩CA.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇪عر.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇪عر.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇬EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇬EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇴PT.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇴PT.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇷ES.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇷ES.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇹DE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇹DE.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇺EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇦🇺EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇧EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇧EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇪DE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇪DE.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇪FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇪FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇪NL.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇪NL.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇫FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇫FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇭عر.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇭عر.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇮EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇮EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇮FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇮FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇯FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇯FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇳EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇳EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇳MS.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇳MS.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇴ES.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇴ES.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇷PT.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇷PT.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇸EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇸EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇼EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇼EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇾РУ.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇾РУ.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇿EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇧🇿EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇦EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇦EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇦FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇦FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇩FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇩FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇫FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇫FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇬FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇬FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇭DE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇭DE.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇭FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇭FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇭IT.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇭IT.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇮FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇮FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇱ES.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇱ES.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇲EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇲EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇲FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇲FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇳普.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇳普.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇴ES.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇴ES.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇷ES.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇷ES.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇺ES.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇺ES.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇻PT.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇻PT.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇾TR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇾TR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇾ΕΛ.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇾ΕΛ.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇿ČŠ.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇨🇿ČŠ.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇪DE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇪DE.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇯FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇯FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇯عر.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇯عر.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇰DA.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇰DA.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇲EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇲EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇴ES.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇴ES.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇿عر.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇩🇿عر.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇪🇨ES.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇪🇨ES.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇪🇬عر.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇪🇬عر.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇪🇸CA.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇪🇸CA.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇪🇸ES.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇪🇸ES.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇪🇹EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇪🇹EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇫🇮SI.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇫🇮SI.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇫🇮SV.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇫🇮SV.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇫🇯EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇫🇯EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇫🇲EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇫🇲EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇫🇷FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇫🇷FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇬🇦FR.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇬🇦FR.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇬🇧EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇬🇧EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇬🇩EN.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇬🇩EN.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇯🇵日.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇯🇵日.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇸🇬华.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇸🇬华.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇹🇼國.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/ContentLocalization/🇹🇼國.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/Document/Document.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/Document/Document.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/Element/Document.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/Element/Document.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianDay/4.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianDay/4.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianHour/6.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianHour/6.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianMinute/14.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianMinute/14.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianMonth/August.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianMonth/August.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianSecond/12.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianSecond/12.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/1.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/1.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/2.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/2.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/3.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/3.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/4.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/4.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/5.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/5.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/6.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/6.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/7.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianWeekday/7.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/GregorianYear/1870.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/GregorianYear/1870.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewHour/3.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewHour/3.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/1.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/1.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/10.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/10.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/11.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/11.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/12.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/12.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/2.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/2.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/3.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/3.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/4.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/4.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/5.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/5.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/6.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/6.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/7.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/7.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/8.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/8.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/9.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/9.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/Adar I.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/Adar I.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/Adar II.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewMonth/Adar II.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/HebrewPart/82.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/HebrewPart/82.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/Integer/−1 000 000.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/Integer/−1 000 000.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/LineView⟨String⟩/ABC.txt:
--------------------------------------------------------------------------------
1 | 🇨🇦EN
2 | A
3 | B
4 | C
5 |
6 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/Line⟨String⟩/ABC.txt:
--------------------------------------------------------------------------------
1 | 🇨🇦EN
2 | ABC[LF]
3 |
4 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/Preference/true.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/Preference/true.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/RationalNumber/−19⁄2.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/RationalNumber/−19⁄2.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/SemanticMarkup/ABC.txt:
--------------------------------------------------------------------------------
1 | 🇨🇦EN
2 | ABC
3 |
4 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/StrictString/ABC.txt:
--------------------------------------------------------------------------------
1 | 🇨🇦EN
2 | ABC
3 |
4 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/String/No Icon.txt:
--------------------------------------------------------------------------------
1 | zxx
2 | ...
3 |
4 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/Version/1.2.3.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/Version/1.2.3.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/WholeNumber/1 000 000 000.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/WholeNumber/1 000 000 000.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/CustomStringConvertible/WholeNumber/1000.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/CustomStringConvertible/WholeNumber/1000.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Date Formats/Deutsch.txt:
--------------------------------------------------------------------------------
1 | Dienstag, 28. August 8232
--------------------------------------------------------------------------------
/Tests/Test Specifications/Date Formats/Français.txt:
--------------------------------------------------------------------------------
1 | mardi, le 28 août 8232
--------------------------------------------------------------------------------
/Tests/Test Specifications/Date Formats/Ελληνικά.txt:
--------------------------------------------------------------------------------
1 | Τρίτη, 28 Αυγούστου 8232
--------------------------------------------------------------------------------
/Tests/Test Specifications/Date Formats/עברית.txt:
--------------------------------------------------------------------------------
1 | יום שלישי, 28 באוגוסט 8232
--------------------------------------------------------------------------------
/Tests/Test Specifications/FileConvertible/Data/Binary Data/Data.testspec:
--------------------------------------------------------------------------------
1 | 0
--------------------------------------------------------------------------------
/Tests/Test Specifications/FileConvertible/Document/DTD/2021‐02‐02.testspec:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/FileConvertible/Document/DTD/2021‐02‐02.testspec
--------------------------------------------------------------------------------
/Tests/Test Specifications/FileConvertible/Document/Document/2021‐01‐31.testspec:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/FileConvertible/StrictString/Unicode/Composed.testspec:
--------------------------------------------------------------------------------
1 | àbçđę…
--------------------------------------------------------------------------------
/Tests/Test Specifications/FileConvertible/StrictString/Unicode/Literal.txt:
--------------------------------------------------------------------------------
1 | àbçđę...
--------------------------------------------------------------------------------
/Tests/Test Specifications/FileConvertible/StrictString/Unicode/Standard.testspec:
--------------------------------------------------------------------------------
1 | àbçđę...
--------------------------------------------------------------------------------
/Tests/Test Specifications/FileConvertible/String/Hello/Hello.txt:
--------------------------------------------------------------------------------
1 | Hello, world!
--------------------------------------------------------------------------------
/Tests/Test Specifications/FileConvertible/String/Line Endings/2022‐06‐11.testspec:
--------------------------------------------------------------------------------
1 | Each
2 | word
3 | is
4 | on
5 | its
6 | own
7 | line
8 | .
--------------------------------------------------------------------------------
/Tests/Test Specifications/Numerals.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Numerals.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Ordinals.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Ordinals.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/SemanticMarkup/HTML/Escapes.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/SemanticMarkup/HTML/Escapes.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Specification/Overwrite.txt:
--------------------------------------------------------------------------------
1 | Overwritten.
--------------------------------------------------------------------------------
/Tests/Test Specifications/XML/Attributes.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/XML/Attributes.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/XML/Empty.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/XML/Escaped Attribute.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Tests/Test Specifications/XML/Escaped Text.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/XML/Escaped Text.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/XML/Nested.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/XML/Nested.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/XML/Text.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/XML/Text.txt
--------------------------------------------------------------------------------
/Tests/Test Specifications/Ελληνικά.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Tests/Test Specifications/Ελληνικά.txt
--------------------------------------------------------------------------------
/Workspace.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDGGiesbrecht/SDGCornerstone/HEAD/Workspace.swift
--------------------------------------------------------------------------------