NSString-HYPFormula 1.6.2

NSString-HYPFormula 1.6.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Sep 2015

Maintained by Elvis Nuñez, Christoffer Winterkvist.



Creating and running string-based formulas have never been this easy

Number formulas

NSDictionary *values = @{
    @"hourly_pay"    : @150,
    @"work_per_week" : @32.5
};
NSNumber *result = [@"hourly_pay * work_per_week" hyp_runFormulaWithDictionary:values];
// result: 4875

String formulas

NSDictionary *values = @{
    @"first_name" : @"John",
    @"last_name"  : @"Appleseed"
};
NSString *result = [@"first_name last_name" hyp_runFormulaWithDictionary:values];
// result: "John Appleseed"

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Credits

Hyper made this. We're a digital communications agency with a passion for good code, and if you're using this library we probably want to hire you.

License

NSString-HYPFormula is available under the MIT license. See the LICENSE file for more info.