Skip to content
This repository was archived by the owner on Oct 17, 2021. It is now read-only.
mattt edited this page Apr 7, 2020 · 4 revisions

Node

open class Node: RawRepresentable, Equatable, Hashable, CustomStringConvertible

Inheritance

Constructable, CustomStringConvertible, Equatable, Hashable, RawRepresentable

Initializers

init?(rawValue:)

public required init?(rawValue: UnsafeMutableRawPointer)

init?(_:)

public convenience init?(_ node: Node?)

Properties

line

var line: Int

isBlank

var isBlank: Bool

spacePreservingBehavior

var spacePreservingBehavior: SpacePreservingBehavior?

content

var content: String?

xpath

var xpath: String?

rawValue

var rawValue: UnsafeMutableRawPointer

description

var description: String

parent

var parent: Node?

previous

var previous: Node?

next

var next: Node?

Methods

construct(with:)

public static func construct(with rawValue: xmlNodePtr) -> Node?

construct(with:)

public static func construct(with rawValue: xmlNodePtr) -> Node?
Types
Protocols
Global Functions
Extensions

Clone this wiki locally