You'll need to modify the groupBy extension to group into an array of 2-tuples rather than an dictionary, where the first tuple element corresponds to a non-unique "key", and the 2nd tuple element is an array of subsequent elements in the self array that can be categorized to the given key.
Modified SequenceType extension
extension SequenceType {
func groupBy<U : Comparable>(@noescape keyFunc: Generator.Element -> U) -> [(U,[Generator.Element])] {
var tupArr: [(U,[Generator.Element])] = []
for el in self {
let key = keyFunc(el)
if tupArr.last?.0 == key {
tupArr[tupArr.endIndex-1].1.append(el)
}
else {
tupArr.append((key,[el]))
}
}
return tupArr
}
}
Note also that is now suffices that the generic U in the extension conforms to Comparable, as we only use the U elements as "fake" keys in a tuple.
Call to extension
With this modification, we can call the groupBy(..) method as
let array = ["23.88", "24", "30", "24.16#C", "25#C", "12", "24.44", "50" , "31#O", "40#O" , "44#C", "55#C"]
/* assuming we know the last character always describe the mode,
given one is included (#) */
let groupedArray: [(String,[String])] = array.groupBy {
guard $0.characters.contains("#") else { return "No mode" }
return "mode = " + String($0.characters.last!)
}
print(groupedArray)
/* [("No mode", ["23.88", "24", "30"]),
("mode = C", ["24.16#C", "25#C"]),
("No mode", ["12", "24.44", "50"]),
("mode = O", ["31#O", "40#O"]),
("mode = C", ["44#C", "55#C"])] */
Removing original mode markings (#X) from grouped array
If you'd like to remove original mode markings (#X) in the resulting array, you can apply an additional map operation following the call to groupBy.
Removing markings with resulting values as String:
let groupedArrayClean = groupedArray.map { ($0.0, $0.1.map {
String($0.characters.prefixUpTo($0.characters.indexOf("#") ?? $0.characters.endIndex))
})
}
print(groupedArrayClean)
/* [("No mode", ["23.88", "24", "30"]),
("mode = C", ["24.16", "25"]),
("No mode", ["12", "24.44", "50"]),
("mode = O", ["31", "40"]),
("mode = C", ["44", "55"])] */
Or, with resulting values as Double:
let groupedArrayClean = groupedArray.map { ($0.0, $0.1.flatMap {
Double(
String(($0.characters.prefixUpTo($0.characters.indexOf("#") ?? $0.characters.endIndex))))
})
}
print(groupedArrayClean)
/* [("No mode", [23.879999999999999, 24.0, 30.0]),
("mode = C", [24.16, 25.0]),
("No mode", [12.0, 24.440000000000001, 50.0]),
("mode = O", [31.0, 40.0]),
("mode = C", [44.0, 55.0])] */
Alternatively: group and clean up mode markings in single chained call
Or, both groupBy followed by map at once, without an intermediate assignment:
let groupedArrayClean: [(String,[String])] = array.groupBy {
guard $0.characters.contains("#") else { return "No mode" }
return "mode = " + String($0.characters.last!)
}
.map { ($0.0, $0.1.map {
String($0.characters
.prefixUpTo($0.characters.indexOf("#") ?? $0.characters.endIndex))
})
}
(Analogously for the resulting Double values case.)
keyFunccode and the actual invocation of your extension method.