func stride(to end:Int, by stride:Int, task:(Int) -> Void){
for i in Swift.stride(from: self, to: end, by: stride) {
task(i)
}
}
for i in Swift.stride(from: self, to: end, by: stride) {
task(i)
}
}
2019-03-17