_StringSeq is a wrapper / helper class for working with String sequence values while parsing. It assists in collecting the strings as they are parsed, and producing a ReadSeq[String] as a result.
class ref _StringSeq is ReadSeq[String val] box
new val empty() : _StringSeq val^
new val from_string( s: String val) : _StringSeq val^
new val from_concat( ss0: _StringSeq val, ss1: _StringSeq val) : _StringSeq val^
fun box string() : String iso^
fun box size() : USize val
fun box apply( i: USize val) : String val ?
fun box values() : Iterator[String val] ref^
© 2016-2018, The Pony Developers
© 2014-2015, Causality Ltd.
Licensed under the BSD 2-Clause License.
https://stdlib.ponylang.io/cli-_StringSeq