Enumerationscinfu.swiftsoup 2.8.7SwiftSoup
TokenType
Token.swift:408enum TokenType
enum TokenType
import SwiftSoup
class Token
case Doctype
case StartTag
case EndTag
case Comment
case Char
case EOF
var debugDescription: String { get }
@discardableResult func reset() -> Token
Reset the data represent by this token, for reuse. Prevents the need to create transfer objects for every piece of data, which immediately get GCed.
func toString() throws -> String
protocol Equatable
A type that can be compared for value equality.
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.
static func != (lhs: Self, rhs: Self) -> Bool
Returns a Boolean value indicating whether two values are not equal.