SwiftBoost
SwiftBoost copied to clipboard
Collection of Swift-extensions to boost development process.
Results
2
SwiftBoost issues
Sort by
recently updated
recently updated
newest added
Hi, Im getting this error: ``` import Foundation extension Collection { func get(at i: Index) -> Element? { return indices.contains(i) ? self[i] : nil } } ``` Do you have...
bug
## Goal debugPrint provides more detailed and descriptive output for complex objects, making it ideal for debugging. It is intended specifically for developer-facing logs and can be configured to suppress...