parse(_:into:)
Attempts to parse the given input completely by applying this rule repeatedly.
Available because
Self
conforms toParsingRule
.
static func parse<Source, Vector>(_ source: Source, into _: Vector.Type = Vector.self) throws -> Vector where Source : Collection, Vector : RangeReplaceableCollection, Self.Construction == Vector.Element, Self.Location == Source.Index, Self.Terminal == Source.Element
Overview
This function does not parse with diagnostics.