Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
Adrenaline
A framework with lot of extensions to improve the development, more adrenaline on life.
Requirements
Swift 5 and beyond.
Usage
import UIKit
import Adrenaline
func main() {
let items = [String](https://raw.github.com/wellmart/adrenaline/master/reserveCapacity: 100)
if let item = items[safe: 50] {
NSLog(item)
}
NSLog(666.string(minimumDigits: 7))
let view = UIView().apply {
$0.backgroundColor = .red
}
}