Standard extensions for Foundation/Cocoa/SwiftUI
NOTE: The package is early beta
You can add StandardExtensions to an Xcode project by adding it as a package dependency.
- From the File menu, select Swift Packages › Add Package Dependency…
- Enter
"https://github.com/capturecontext/swift-standard-extensions.git"
into the package repository URL text field - Choose products you need to link them to your project.
If you use SwiftPM for your project, you can add StandardExtensions to your package file.
.package(
name: "swift-standard-extensions",
url: "https://github.com/capturecontext/swift-standard-extensions.git",
.branch("develop")
)
Do not forget about target dependencies:
.product(
name: "StandardExtensions",
package: "swift-standard-extensions"
)
This library is released under the MIT license. See LICENSE for details.