Files
umbrix/ios/Network/Extension+Iterator.swift
problematicconsumer b1d6c56a3e Add ios command client
2024-02-03 21:23:04 +03:30

13 lines
239 B
Swift

import Foundation
import Libcore
extension LibboxStringIteratorProtocol {
func toArray() -> [String] {
var array: [String] = []
while hasNext() {
array.append(next())
}
return array
}
}