{"id":33899969,"url":"https://github.com/orchetect/swift-extensions","last_synced_at":"2026-04-02T12:59:01.966Z","repository":{"id":43645314,"uuid":"297845894","full_name":"orchetect/swift-extensions","owner":"orchetect","description":"Useful extensions on Swift standard library types.","archived":false,"fork":false,"pushed_at":"2026-03-01T07:49:58.000Z","size":1299,"stargazers_count":11,"open_issues_count":1,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-03-01T10:52:57.730Z","etag":null,"topics":["ios","mac-catalyst","maccatalyst","macos","shared-code","swift5","swift5-3","tvos","utilities","utility","watchos"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/orchetect.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"orchetect"}},"created_at":"2020-09-23T03:52:22.000Z","updated_at":"2026-03-01T07:50:01.000Z","dependencies_parsed_at":"2024-05-02T06:34:44.544Z","dependency_job_id":"f9c7d042-f28d-460b-8670-66692bde6869","html_url":"https://github.com/orchetect/swift-extensions","commit_stats":{"total_commits":356,"total_committers":2,"mean_commits":178.0,"dds":0.0561797752808989,"last_synced_commit":"832cdece2da017cf4533df7ea91dadbb8be34b23"},"previous_names":["orchetect/swift-extensions"],"tags_count":81,"template":false,"template_full_name":null,"purl":"pkg:github/orchetect/swift-extensions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orchetect%2Fswift-extensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orchetect%2Fswift-extensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orchetect%2Fswift-extensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orchetect%2Fswift-extensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/orchetect","download_url":"https://codeload.github.com/orchetect/swift-extensions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orchetect%2Fswift-extensions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30242406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-08T00:58:18.660Z","status":"online","status_checked_at":"2026-03-08T02:00:06.215Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ios","mac-catalyst","maccatalyst","macos","shared-code","swift5","swift5-3","tvos","utilities","utility","watchos"],"created_at":"2025-12-11T22:51:30.005Z","updated_at":"2026-04-02T12:59:01.950Z","avatar_url":"https://github.com/orchetect.png","language":"Swift","readme":"# swift-extensions\n\n[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Forchetect%2Fswift-extensions%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/orchetect/swift-extensions) [![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Forchetect%2Fswift-extensions%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/orchetect/swift-extensions) [![Xcode 16](https://img.shields.io/badge/Xcode-16-blue.svg?style=flat)](https://developer.apple.com/swift) [![License: MIT](http://img.shields.io/badge/license-MIT-lightgrey.svg?style=flat)](https://github.com/orchetect/swift-extensions/blob/main/LICENSE)\n\nMulti-platform general-purpose Swift extensions.\n\nThe library has full unit test coverage and is actively used in production.\n\n## Installation: Swift Package Manager (SPM)\n\n### Dependency within an Application Project\n\n1. Add the package to your Xcode project using Swift Package Manager using `https://github.com/orchetect/swift-extensions` as the URL.\n\n2. Import the module files where needed. It's recommended to use the `internal` access level if used in a package so that it is not exported to the user of your package.\n\n   ```swift\n   internal import SwiftExtensions\n   ```\n\n### Dependency within a Swift Package\n\nIn your Package.swift file:\n\n```swift\nlet package = Package(\n    dependencies: [\n        .package(url: \"https://github.com/orchetect/swift-extensions\", from: \"2.1.1\")\n    ],\n    targets: [\n        .target(\n            dependencies: [\n                .product(name: \"SwiftExtensions\", package: \"swift-extensions\")\n            ]\n        )\n    ]\n)\n```\n\n## Documentation\n\nMost methods are implemented as category methods so they are generally discoverable.\n\nAll methods are documented with inline help explaining their purpose and basic usage examples.\n\n## Author\n\nCoded by a bunch of 🐹 hamsters in a trenchcoat that calls itself [@orchetect](https://github.com/orchetect).\n\n## License\n\nLicensed under the MIT license. See [LICENSE](https://github.com/orchetect/swift-extensions/blob/master/LICENSE) for details.\n\n## Community \u0026 Support\n\nPlease do not email maintainers for technical support. Several options are available for issues and questions:\n\n- Questions and feature ideas can be posted to [Discussions](https://github.com/orchetect/swift-extensions/discussions).\n- If an issue is a verifiable bug with reproducible steps it may be posted in [Issues](https://github.com/orchetect/swift-extensions/issues).\n\n## Contributions\n\nContributions are welcome. Posting in [Discussions](https://github.com/orchetect/swift-extensions/discussions) first prior to new submitting PRs for features or modifications is encouraged.\n\n## Legacy\n\nThis repository was formerly known as OTCore.\n","funding_links":["https://github.com/sponsors/orchetect"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forchetect%2Fswift-extensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Forchetect%2Fswift-extensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forchetect%2Fswift-extensions/lists"}