Operatorscinfu.swiftsoup 2.8.7SwiftSoup
==(_:_:)
Entities.swift:55static func == (left: EscapeMode, right: EscapeMode) -> Bool
static func == (left: EscapeMode, right: EscapeMode) -> Bool
import SwiftSoup
class EscapeMode
class Entities
HTML entities, and escape routines. Source: W3C HTML named character references.
@frozen struct Bool
A value type whose instances are either true
or false
.
static let base: EscapeMode
Default HTML output entities.
static let extended: EscapeMode
Complete HTML entities.
static let xhtml: EscapeMode
Restricted entities suitable for XHTML output: lt, gt, amp, and quot only.
func codepointForName(_ name: String) -> UnicodeScalar?
func codepointForName(_ name: [UInt8]) -> UnicodeScalar?
func codepointForName(_ name: ArraySlice<UInt8>) -> UnicodeScalar?
func nameForCodepoint(_ codepoint: UnicodeScalar) -> String?
func nameForCodepoint(_ codepoint: [UInt8]) -> [UInt8]?