2 "name": "DZAUnsafeMutableArray",
4 "summary": "An Objective-C wrapper around a c auto-growing pointer array.",
5 "description": "I built this library because I'm rewriting [RouletteBetter](https://itunes.apple.com/us/app/roulettebetter-odds-calculator-betting-strategies-for/id310598685?mt=8) and I wanted a way to make *lot* of statistics calculation on vectors. To do so, we can use the [iOS Accelerate framework](https://developer.apple.com/documentation/accelerate) to 'Make large-scale mathematical computations and image calculations, optimized for high performance'. Unfortunately the Accelerate framework wants basic c pointer array as input/output parameters, so we can't use NSMutableArray or high level NSObjects.\n\nWith this wrapper library, we can easily create and manupulate the c pointer array as an high level object and, whenewer we need it, access the low level pointer property (for example to pass it to the Accelerate framework c functions).",
6 "homepage": "https://github.com/Dzamir/DZAUnsafeMutableArray",
8 "https://raw.githubusercontent.com/Dzamir/DZAUnsafeMutableArray/master/screen_2.jpg",
9 "https://raw.githubusercontent.com/Dzamir/DZAUnsafeMutableArray/master/screen_1.jpg"
16 "Davide Di Stefano": "dzamirro@gmail.com"
19 "git": "https://github.com/Dzamir/DZAUnsafeMutableArray.git",
22 "social_media_url": "https://twitter.com/dzamir",
29 "source_files": "DZAUnsafeMutableArray/Classes/**/*"