├── .github ├── FUNDING.yml └── workflows │ └── swift.yml ├── .gitignore ├── .swiftlint.yml ├── Docs ├── data │ └── documentation │ │ └── ponyexpress │ │ ├── postoffice │ │ ├── post(_:sender:)-2zi6e.json │ │ ├── post(_:sender:)-46oey.json │ │ ├── register(queue:sender:_:)-5qwsy.json │ │ ├── register(queue:sender:_:)-5rnoj.json │ │ ├── register(queue:sender:_:)-67n4z.json │ │ ├── register(queue:sender:_:)-6yxu3.json │ │ ├── register(queue:sender:_:)-9ali8.json │ │ ├── register(queue:sender:_:)-vyq1.json │ │ ├── register(queue:sender:_:_:)-28ds2.json │ │ ├── register(queue:sender:_:_:)-2lzej.json │ │ ├── register(queue:sender:_:_:)-5et6u.json │ │ ├── register(queue:sender:_:_:)-897xg.json │ │ ├── register(queue:sender:_:_:)-8dy8x.json │ │ ├── register(queue:sender:_:_:)-8krn8.json │ │ ├── register(queue:sender:_:_:)-8o1ps.json │ │ └── register(queue:sender:_:_:_:).json │ │ ├── unverifiedmail.json │ │ ├── verifiedmail.json │ │ └── verifiedmail │ │ └── requiredsender.json └── documentation │ └── ponyexpress │ ├── postoffice │ ├── post(_:sender:)-2zi6e │ │ └── index.html │ ├── post(_:sender:)-46oey │ │ └── index.html │ ├── register(queue:sender:_:)-5qwsy │ │ └── index.html │ ├── register(queue:sender:_:)-5rnoj │ │ └── index.html │ ├── register(queue:sender:_:)-67n4z │ │ └── index.html │ ├── register(queue:sender:_:)-6yxu3 │ │ └── index.html │ ├── register(queue:sender:_:)-9ali8 │ │ └── index.html │ ├── register(queue:sender:_:)-vyq1 │ │ └── index.html │ ├── register(queue:sender:_:_:)-28ds2 │ │ └── index.html │ ├── register(queue:sender:_:_:)-2lzej │ │ └── index.html │ ├── register(queue:sender:_:_:)-5et6u │ │ └── index.html │ ├── register(queue:sender:_:_:)-897xg │ │ └── index.html │ ├── register(queue:sender:_:_:)-8dy8x │ │ └── index.html │ ├── register(queue:sender:_:_:)-8krn8 │ │ └── index.html │ ├── register(queue:sender:_:_:)-8o1ps │ │ └── index.html │ └── register(queue:sender:_:_:_:) │ │ └── index.html │ ├── unverifiedmail │ └── index.html │ └── verifiedmail │ ├── index.html │ └── requiredsender │ └── index.html ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── Playgrounds ├── SampleCode.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata └── TwoConstraints.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ └── contents.xcworkspacedata ├── README.md ├── Sources └── PonyExpress │ ├── Array+Extension.swift │ ├── Documentation.docc │ ├── PonyExpress.md │ └── PostOffice.md │ ├── Mail.swift │ ├── PostOffice.swift │ └── Recipient.swift ├── Tests ├── CompilerTests │ └── CompilerChecks.swift └── PonyExpressTests │ ├── MemoryTests.swift │ ├── TestHelpers.swift │ ├── UnverifiedMailBlockTests.swift │ ├── UnverifiedMailMethodTests.swift │ ├── VerifiedBlockTests.swift │ └── VerifiedMethodTests.swift └── docs ├── Package.swift ├── css ├── documentation-topic.3bca6578.css ├── documentation-topic~topic~tutorials-overview.82acfe22.css ├── index.12bb178a.css ├── topic.ee15af52.css └── tutorials-overview.06e8bcf7.css ├── data └── documentation │ ├── ponyexpress.json │ └── ponyexpress │ ├── postoffice.json │ ├── postoffice │ ├── default.json │ ├── init().json │ ├── post(_:).json │ ├── register(queue:_:).json │ ├── register(queue:_:_:).json │ ├── unregister(_:)-54a70.json │ └── unregister(_:)-9f3j5.json │ ├── recipientid.json │ └── recipientid │ ├── !=(_:_:).json │ └── equatable-implementations.json ├── developer-og-twitter.jpg ├── developer-og.jpg ├── documentation └── ponyexpress │ ├── index.html │ ├── postoffice │ ├── default │ │ └── index.html │ ├── index.html │ ├── init() │ │ └── index.html │ ├── post(_:) │ │ └── index.html │ ├── register(queue:_:) │ │ └── index.html │ ├── register(queue:_:_:) │ │ └── index.html │ ├── unregister(_:)-54a70 │ │ └── index.html │ └── unregister(_:)-9f3j5 │ │ └── index.html │ └── recipientid │ ├── !=(_:_:) │ └── index.html │ ├── equatable-implementations │ └── index.html │ └── index.html ├── favicon.ico ├── favicon.svg ├── img ├── added-icon.d6f7e47d.svg ├── deprecated-icon.015b4f17.svg ├── modified-icon.f496e73d.svg └── no-image@2x.df2a0a50.png ├── index.html ├── index ├── availability.index ├── data.mdb ├── index.json └── navigator.index ├── js ├── chunk-2d0d3105.cd72cc8e.js ├── chunk-vendors.b24b7aaa.js ├── documentation-topic.f62098b6.js ├── documentation-topic~topic~tutorials-overview.8e36e44f.js ├── highlight-js-bash.1b52852f.js ├── highlight-js-c.d1db3f17.js ├── highlight-js-cpp.eaddddbe.js ├── highlight-js-css.75eab1fe.js ├── highlight-js-custom-markdown.7cffc4b3.js ├── highlight-js-custom-swift.5cda5c20.js ├── highlight-js-diff.62d66733.js ├── highlight-js-http.163e45b6.js ├── highlight-js-java.8326d9d8.js ├── highlight-js-javascript.acb8a8eb.js ├── highlight-js-json.471128d2.js ├── highlight-js-llvm.6100b125.js ├── highlight-js-markdown.90077643.js ├── highlight-js-objectivec.bcdf5156.js ├── highlight-js-perl.757d7b6f.js ├── highlight-js-php.cc8d6c27.js ├── highlight-js-python.c214ed92.js ├── highlight-js-ruby.f889d392.js ├── highlight-js-scss.62ee18da.js ├── highlight-js-shell.dd7f411f.js ├── highlight-js-swift.84f3e88c.js ├── highlight-js-xml.9c3688c7.js ├── index.58e30ec4.js ├── topic.6a1c7b7f.js └── tutorials-overview.c8178b83.js ├── metadata.json └── theme-settings.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/post(_:sender:)-2zi6e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/post(_:sender:)-2zi6e.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/post(_:sender:)-46oey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/post(_:sender:)-46oey.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-5qwsy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-5qwsy.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-5rnoj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-5rnoj.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-67n4z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-67n4z.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-6yxu3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-6yxu3.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-9ali8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-9ali8.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-vyq1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:)-vyq1.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-28ds2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-28ds2.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-2lzej.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-2lzej.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-5et6u.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-5et6u.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-897xg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-897xg.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8dy8x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8dy8x.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8krn8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8krn8.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8o1ps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8o1ps.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/postoffice/register(queue:sender:_:_:_:).json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/unverifiedmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/unverifiedmail.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/verifiedmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/verifiedmail.json -------------------------------------------------------------------------------- /Docs/data/documentation/ponyexpress/verifiedmail/requiredsender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/data/documentation/ponyexpress/verifiedmail/requiredsender.json -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/post(_:sender:)-2zi6e/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/post(_:sender:)-2zi6e/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/post(_:sender:)-46oey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/post(_:sender:)-46oey/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-5qwsy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-5qwsy/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-5rnoj/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-5rnoj/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-67n4z/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-67n4z/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-6yxu3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-6yxu3/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-9ali8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-9ali8/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-vyq1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:)-vyq1/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-28ds2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-28ds2/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-2lzej/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-2lzej/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-5et6u/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-5et6u/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-897xg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-897xg/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8dy8x/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8dy8x/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8krn8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8krn8/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8o1ps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:)-8o1ps/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/postoffice/register(queue:sender:_:_:_:)/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/unverifiedmail/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/unverifiedmail/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/verifiedmail/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/verifiedmail/index.html -------------------------------------------------------------------------------- /Docs/documentation/ponyexpress/verifiedmail/requiredsender/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Docs/documentation/ponyexpress/verifiedmail/requiredsender/index.html -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Package.swift -------------------------------------------------------------------------------- /Playgrounds/SampleCode.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Playgrounds/SampleCode.playground/Contents.swift -------------------------------------------------------------------------------- /Playgrounds/SampleCode.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Playgrounds/SampleCode.playground/contents.xcplayground -------------------------------------------------------------------------------- /Playgrounds/SampleCode.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Playgrounds/SampleCode.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Playgrounds/TwoConstraints.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Playgrounds/TwoConstraints.playground/Contents.swift -------------------------------------------------------------------------------- /Playgrounds/TwoConstraints.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Playgrounds/TwoConstraints.playground/contents.xcplayground -------------------------------------------------------------------------------- /Playgrounds/TwoConstraints.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Playgrounds/TwoConstraints.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/README.md -------------------------------------------------------------------------------- /Sources/PonyExpress/Array+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Sources/PonyExpress/Array+Extension.swift -------------------------------------------------------------------------------- /Sources/PonyExpress/Documentation.docc/PonyExpress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Sources/PonyExpress/Documentation.docc/PonyExpress.md -------------------------------------------------------------------------------- /Sources/PonyExpress/Documentation.docc/PostOffice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Sources/PonyExpress/Documentation.docc/PostOffice.md -------------------------------------------------------------------------------- /Sources/PonyExpress/Mail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Sources/PonyExpress/Mail.swift -------------------------------------------------------------------------------- /Sources/PonyExpress/PostOffice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Sources/PonyExpress/PostOffice.swift -------------------------------------------------------------------------------- /Sources/PonyExpress/Recipient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Sources/PonyExpress/Recipient.swift -------------------------------------------------------------------------------- /Tests/CompilerTests/CompilerChecks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Tests/CompilerTests/CompilerChecks.swift -------------------------------------------------------------------------------- /Tests/PonyExpressTests/MemoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Tests/PonyExpressTests/MemoryTests.swift -------------------------------------------------------------------------------- /Tests/PonyExpressTests/TestHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Tests/PonyExpressTests/TestHelpers.swift -------------------------------------------------------------------------------- /Tests/PonyExpressTests/UnverifiedMailBlockTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Tests/PonyExpressTests/UnverifiedMailBlockTests.swift -------------------------------------------------------------------------------- /Tests/PonyExpressTests/UnverifiedMailMethodTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Tests/PonyExpressTests/UnverifiedMailMethodTests.swift -------------------------------------------------------------------------------- /Tests/PonyExpressTests/VerifiedBlockTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Tests/PonyExpressTests/VerifiedBlockTests.swift -------------------------------------------------------------------------------- /Tests/PonyExpressTests/VerifiedMethodTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/Tests/PonyExpressTests/VerifiedMethodTests.swift -------------------------------------------------------------------------------- /docs/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/Package.swift -------------------------------------------------------------------------------- /docs/css/documentation-topic.3bca6578.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/css/documentation-topic.3bca6578.css -------------------------------------------------------------------------------- /docs/css/documentation-topic~topic~tutorials-overview.82acfe22.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/css/documentation-topic~topic~tutorials-overview.82acfe22.css -------------------------------------------------------------------------------- /docs/css/index.12bb178a.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/css/index.12bb178a.css -------------------------------------------------------------------------------- /docs/css/topic.ee15af52.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/css/topic.ee15af52.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.06e8bcf7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/css/tutorials-overview.06e8bcf7.css -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress.json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/postoffice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/postoffice.json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/postoffice/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/postoffice/default.json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/postoffice/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/postoffice/init().json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/postoffice/post(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/postoffice/post(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/postoffice/register(queue:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/postoffice/register(queue:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/postoffice/register(queue:_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/postoffice/register(queue:_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/postoffice/unregister(_:)-54a70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/postoffice/unregister(_:)-54a70.json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/postoffice/unregister(_:)-9f3j5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/postoffice/unregister(_:)-9f3j5.json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/recipientid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/recipientid.json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/recipientid/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/recipientid/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/ponyexpress/recipientid/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/data/documentation/ponyexpress/recipientid/equatable-implementations.json -------------------------------------------------------------------------------- /docs/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/developer-og.jpg -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/postoffice/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/postoffice/default/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/postoffice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/postoffice/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/postoffice/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/postoffice/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/postoffice/post(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/postoffice/post(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/postoffice/register(queue:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/postoffice/register(queue:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/postoffice/register(queue:_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/postoffice/register(queue:_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/postoffice/unregister(_:)-54a70/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/postoffice/unregister(_:)-54a70/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/postoffice/unregister(_:)-9f3j5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/postoffice/unregister(_:)-9f3j5/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/recipientid/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/recipientid/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/recipientid/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/recipientid/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/ponyexpress/recipientid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/documentation/ponyexpress/recipientid/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/img/added-icon.d6f7e47d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/img/added-icon.d6f7e47d.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.015b4f17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/img/deprecated-icon.015b4f17.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.f496e73d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/img/modified-icon.f496e73d.svg -------------------------------------------------------------------------------- /docs/img/no-image@2x.df2a0a50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/img/no-image@2x.df2a0a50.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/index/availability.index -------------------------------------------------------------------------------- /docs/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/index/data.mdb -------------------------------------------------------------------------------- /docs/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/index/index.json -------------------------------------------------------------------------------- /docs/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/index/navigator.index -------------------------------------------------------------------------------- /docs/js/chunk-2d0d3105.cd72cc8e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/chunk-2d0d3105.cd72cc8e.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.b24b7aaa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/chunk-vendors.b24b7aaa.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.f62098b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/documentation-topic.f62098b6.js -------------------------------------------------------------------------------- /docs/js/documentation-topic~topic~tutorials-overview.8e36e44f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/documentation-topic~topic~tutorials-overview.8e36e44f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash.1b52852f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-bash.1b52852f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c.d1db3f17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-c.d1db3f17.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp.eaddddbe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-cpp.eaddddbe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css.75eab1fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-css.75eab1fe.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.7cffc4b3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-custom-markdown.7cffc4b3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.5cda5c20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-custom-swift.5cda5c20.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff.62d66733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-diff.62d66733.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http.163e45b6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-http.163e45b6.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java.8326d9d8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-java.8326d9d8.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript.acb8a8eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-javascript.acb8a8eb.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json.471128d2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-json.471128d2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm.6100b125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-llvm.6100b125.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown.90077643.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-markdown.90077643.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec.bcdf5156.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-objectivec.bcdf5156.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl.757d7b6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-perl.757d7b6f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php.cc8d6c27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-php.cc8d6c27.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python.c214ed92.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-python.c214ed92.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby.f889d392.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-ruby.f889d392.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss.62ee18da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-scss.62ee18da.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell.dd7f411f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-shell.dd7f411f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift.84f3e88c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-swift.84f3e88c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml.9c3688c7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/highlight-js-xml.9c3688c7.js -------------------------------------------------------------------------------- /docs/js/index.58e30ec4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/index.58e30ec4.js -------------------------------------------------------------------------------- /docs/js/topic.6a1c7b7f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/topic.6a1c7b7f.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.c8178b83.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/js/tutorials-overview.c8178b83.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/metadata.json -------------------------------------------------------------------------------- /docs/theme-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamwulf/PonyExpress/HEAD/docs/theme-settings.json --------------------------------------------------------------------------------