FastWalker

class FastWalker(val node: Node)

The FastWalker is a walker that implements a cache to speed up subsequent walks. The first walk will take the same time of a normal walk. This walker will ignore any change to the nodes.

Constructors

Link copied to clipboard
constructor(node: Node)

Functions

Link copied to clipboard
fun walk(root: Node = node): Sequence<Node>

Properties

Link copied to clipboard
val node: Node