[Add] AlibabacloudBPStudio20210931 4.0.4
[CocoaPods.git] / Specs / 9 / 6 / 7 / MLFunctionalPackage / 1.0.2 / MLFunctionalPackage.podspec.json
blob213df6588c72fcd41f668a45d0dd199d7c971f13
2   "name": "MLFunctionalPackage",
3   "version": "1.0.2",
4   "summary": "A set of map-filter-reduce tools for Objective-C",
5   "description": "# MLFunctionalPackage\n## A set of map-filter-reduce tools for Objective-C\n\nThanks to blocks Objective-C has the potential to support functional programming style. \nThis library provides the basic map-filter-reduce library functions to further expand this opportunity.\n\n## Installation\n  \nUse CocoaPods or copy those 2 files directly into the project. \n\n    pod 'MLFunctionalPackage'\n\n## How to use it?\n\n    #import <MLFunctionalPackage/MLFunctionalPackage.h>\n    \n    NSLog(@\"%@\", [[[[[NSArray rangeFrom:10 to: 21] mll_filter: ^(NSNumber *n) { \n       return n.integerValue % 2 == 0; \n    }] mll_map: ^(NSNumber *n) { \n       return [NSString stringWithFormat:@\"%d\", n.integerValue]; \n    }] mll_reduce: ^(NSString *l, NSString *r) { \n       return [NSString stringWithFormat:@\"%@, %@\", l, r];\n    }] stringByAppendingString: @\".\"]);",
6   "homepage": "https://github.com/mll/MLFunctionalPackage",
7   "license": "MIT",
8   "authors": {
9     "Marek Lipert": "marek.lipert@gmail.com"
10   },
11   "platforms": {
12     "ios": "5.0"
13   },
14   "source": {
15     "git": "https://github.com/mll/MLFunctionalPackage.git",
16     "tag": "1.0.2"
17   },
18   "source_files": "*.{h,m}",
19   "requires_arc": true