An open API service indexing awesome lists of open source software.

https://github.com/hyperoslo/nsstring-hypformula

Creating and running string-based formulas have never been this easy
https://github.com/hyperoslo/nsstring-hypformula

Last synced: about 1 year ago
JSON representation

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

Awesome Lists containing this project

README

          

# NSString-HYPFormula

[![Build Status](https://img.shields.io/travis/hyperoslo/NSString-HYPFormula.svg?style=flat)](https://travis-ci.org/hyperoslo/NSString-HYPFormula)

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

## Number formulas
``` objc

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

## String formulas
``` objc

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](http://hyper.no) 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](https://raw.githubusercontent.com/hyperoslo/NSString-HYPFormula/master/LICENSE.md) file for more info.