functional-objc
functional-objc copied to clipboard
Functional operators for Objective-C
When I try setup this library to my project by Swift Packages Manager I have error `package 'FBLFunctional' contains no products` I think you should add `products` field to Package.swift...
Conventionally, Objective C methods which return a value by operating on a parameter adhere to the `[ReturnType]with[ParamType]` or `[ReturnType]by[Operation][ParamType]` format. Examples of this in Foundation include [NSNumber's numberWithInteger:](https://developer.apple.com/documentation/foundation/nsnumber/1551473-numberwithinteger?language=objc), [NSString's stringByApplyingTransform:reverse:](https://developer.apple.com/documentation/foundation/nsstring/1407787-stringbyapplyingtransform?language=objc),...
Original `Package.swift` is missing products property. This leads to `package 'FBLFunctional' contains no products` error in Xcode. I updated `Package.swift` file and included missing property. This allows FBLFunctional to be...