Files
2024-10-06 21:41:07 +08:00

13 lines
245 B
Swift

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