CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

Bolt_Swift 1.1.0

Bolt_Swift 1.1.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Mar 2016
SPMSupports SPM

Maintained by William Falcon.



  • By
  • William Falcon

Bolt_Swift (Bolt underscore Swift)

Library for the missing bolts in Swift. Help shape Bolt_Swift, become a contributor!

To Use

Include the BoltLibrary folder in your app. Cocoapods (coming soon).

Current Bolts

//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...

Notes

  • New bolts are added every few weeks while we continue to build them as we progress with our client apps.

Upcoming Bolts

  • Only additions to existing bolts

Bolts in Development

  • Most bolts will be receiving new functionality throughout the next few months.

Contributors wanted!

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

Contact me

Email me at [email protected] for questions