CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | SwiftSwift |
License | MIT |
ReleasedLast Release | Mar 2016 |
SPMSupports SPM | ✗ |
Maintained by William Falcon.
Library for the missing bolts in Swift. Help shape Bolt_Swift, become a contributor!
Include the BoltLibrary folder in your app. Cocoapods (coming soon).
//String Examples
var word = "heart"
println(word[0]) //h
println(word[-1]) //t
var index = word["art"]
println(index) //2
println(word._length) //5
println(word._reverse()) //treah
var word = "he3arts in he2arth"
var matches = word._matchesForRegex("he[0-9]{1}")
println(matches) //[he3, he2]
//much more...
Pick any of the upcoming bolts to implement.
To contribute to Bolt_Swift: 1. Email me (email at the bottom) so I can add your Bolt to bolts being worked on 2. Fork project 3. Implement new Bolt 4. Implement Bolt Tests 5. Add documentation 6. Submit a pull request
Email me at [email protected] for questions