gitextract__riymgu1/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .swiftlint.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ ├── Arrow/ │ │ ├── Arrow.swift │ │ ├── Extensions.swift │ │ └── JSON.swift │ └── PrivacyInfo.xcprivacy ├── Tests/ │ └── ArrowTests/ │ ├── ArrayTests.swift │ ├── CustomModelTests.swift │ ├── CustomRawRepresentableTests.swift │ ├── DateTests.swift │ ├── EnumTests.swift │ ├── JSON/ │ │ └── MockJSON.swift │ ├── Mapping/ │ │ ├── CustomModelContainer+JSON.swift │ │ ├── CustomRawRepresentableContainer+JSON.swift │ │ ├── DateContainer+JSON.swift │ │ ├── EnumContainer+JSON.swift │ │ ├── PhoneNumber+JSON.swift │ │ ├── Profile+JSON.swift │ │ ├── Stats+JSON.swift │ │ ├── StringContainer+JSON.swift │ │ └── URLContainer+JSON.swift │ ├── Models/ │ │ ├── CustomModelContainer.swift │ │ ├── CustomRawRepresentableContainer.swift │ │ ├── DateContainer.swift │ │ ├── Difficulty.swift │ │ ├── EnumContainer.swift │ │ ├── PhoneNumber.swift │ │ ├── Profile.swift │ │ ├── Stats.swift │ │ ├── StringContainer.swift │ │ └── URLContainer.swift │ ├── NativeTypesTests.swift │ ├── StringCoercionTests.swift │ ├── StringTests.swift │ ├── TypeConversionTests.swift │ ├── URLTests.swift │ └── WeekDay.swift └── docs/ ├── Classes/ │ ├── Arrow.html │ └── JSON.html ├── Classes.html ├── Functions/ │ └── <--(_:_:).html ├── Functions.html ├── Guides.html ├── Protocols/ │ └── ArrowParsable.html ├── Protocols.html ├── css/ │ ├── highlight.css │ └── jazzy.css ├── docsets/ │ ├── Arrow.docset/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── Resources/ │ │ ├── Documents/ │ │ │ ├── Classes/ │ │ │ │ ├── Arrow.html │ │ │ │ └── JSON.html │ │ │ ├── Classes.html │ │ │ ├── Functions/ │ │ │ │ └── <--(_:_:).html │ │ │ ├── Functions.html │ │ │ ├── Guides.html │ │ │ ├── Protocols/ │ │ │ │ └── ArrowParsable.html │ │ │ ├── Protocols.html │ │ │ ├── css/ │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ └── jazzy.js │ │ │ ├── readme.html │ │ │ └── undocumented.json │ │ └── docSet.dsidx │ └── Arrow.tgz ├── index.html ├── js/ │ └── jazzy.js ├── readme.html └── undocumented.json