Static Propertyscinfu.swiftsoup 2.8.7SwiftSoup
dataTerminators
CharacterReader.swift:597static let dataTerminators: ParsingStrings
static let dataTerminators: ParsingStrings
s9SwiftSoup15CharacterReaderC15dataTerminatorsAA14ParsingStringsVvpZ
What are these?2KI30
import SwiftSoup
final class CharacterReader
struct ParsingStrings
convenience init(_ input: String)
init(_ input: [UInt8])
static let EOF: UnicodeScalar
static let tagNameTerminators: ParsingStrings
var debugDescription: String { get }
let end: [UInt8].Index
let input: [UInt8]
var pos: [UInt8].Index
func advance()
@discardableResult func consume() -> UnicodeScalar
func consumeAsString() -> String
func consumeData() -> ArraySlice<UInt8>
func consumeDigitSequence() -> ArraySlice<UInt8>
func consumeHexSequence() -> ArraySlice<UInt8>
func consumeLetterSequence() -> ArraySlice<UInt8>
func consumeLetterThenDigitSequence() -> ArraySlice<UInt8>
func consumeTagName() -> ArraySlice<UInt8>
func consumeTo(_ seq: String) -> String
func consumeTo(_ seq: [UInt8]) -> ArraySlice<UInt8>
func consumeTo(_ c: UnicodeScalar) -> ArraySlice<UInt8>
func consumeToAny(_ chars: ParsingStrings) -> String
func consumeToAny(_ chars: ParsingStrings) -> ArraySlice<UInt8>
func consumeToEnd() -> String
func consumeToEndUTF8() -> ArraySlice<UInt8>
func containsIgnoreCase(_ seq: String) -> Bool
func containsIgnoreCase(_ seq: [UInt8]) -> Bool
func current() -> UnicodeScalar
func currentUTF8() -> ArraySlice<UInt8>
func getPos() -> Int
func isEmpty() -> Bool
func markPos()
@discardableResult func matchConsume(_ seq: [UInt8]) -> Bool
@discardableResult func matchConsumeIgnoreCase(_ seq: [UInt8]) -> Bool
func matches(_ c: UnicodeScalar) -> Bool
func matches(_ seq: String, ignoreCase: Bool = false, consume: Bool = false) -> Bool
func matches(_ seq: [UInt8], ignoreCase: Bool = false, consume: Bool = false) -> Bool
func matchesAny(_ seq: ParsingStrings) -> Bool
func matchesAny(_ seq: [[UInt8]]) -> Bool
func matchesAny(_ seq: [UInt8]...) -> Bool
func matchesAny(_ seq: [UnicodeScalar]) -> Bool
func matchesAny(_ seq: UnicodeScalar...) -> Bool
func matchesDigit() -> Bool
func matchesIgnoreCase(_ seq: String) -> Bool
func matchesIgnoreCase(_ seq: [UInt8]) -> Bool
func matchesLetter() -> Bool
func nextIndexOf(_ seq: String) -> String.UTF8View.Index?
func nextIndexOf(_ c: UnicodeScalar) -> String.UTF8View.Index?
func nextIndexOf(_ targetUtf8: [UInt8]) -> [UInt8].Index?
func rewindToMark()
func toString() -> String
func unconsume()