Simple extension that makes creating tuples from arrays a breeze.
Originally created for Mock 'N Stub.
Just add:
import ArrayPlusTuple
to the files where you need tuples from arrays.
Non optional Any:
let tuple = [1, 2, "three"].tuple
Typed optional:
let tuple = [1, 2, "three"].tuple as? (Int, Int, String)
ArrayPlusTuple currently supports creating tuples from arrays with up to 24 elements.
When creating tuples from arrays with more than 24 elements, a warning will be logged and a tuple with the first 24 elements of the array is still returned.
Create a feature request and it will likely be picked up.
Or add it yourself and create a pull request, if the tests pass i'll merge it.
ArrayPlusTuple is available through Swift Package Manager. To install it, simply add it to your project using this repository's URL as explained here.
ArrayPlusTuple is available under the MIT license. See the LICENSE file for more info.