gitextract_sq6cel8s/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── ci.yml │ └── documentation.yml ├── .gitignore ├── LICENSE.md ├── Package.swift ├── README.md ├── RegularExpressionDecoder.playground/ │ ├── Contents.swift │ ├── Sources/ │ │ └── Stock.swift │ └── contents.xcplayground ├── RegularExpressionDecoder.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── Sources/ │ └── RegularExpressionDecoder/ │ ├── KeyedDecodingContainer.swift │ ├── RegularExpressionDecoder.swift │ ├── RegularExpressionPattern.swift │ ├── SingleValueDecodingContainer.swift │ └── UnkeyedDecodingContainer.swift └── Tests/ └── RegularExpressionDecoderTests/ └── RegularExpressionDecodingTests.swift