namedChild

@JvmName(name = "namedChild")
actual external fun namedChild(index: UInt): Node?(source)

Get the node's named child at the given index, if any.

This method is fairly fast, but its cost is technically log(i), so if you might be iterating over a long list of children, you should use namedChildren or walk instead.

Throws

expect fun namedChild(index: UInt): Node?(source)

Get the node's named child at the given index, if any.

This method is fairly fast, but its cost is technically log(i), so if you might be iterating over a long list of children, you should use namedChildren or walk instead.

Throws

@JvmName(name = "namedChild")
actual external fun namedChild(index: UInt): Node?(source)

Get the node's named child at the given index, if any.

This method is fairly fast, but its cost is technically log(i), so if you might be iterating over a long list of children, you should use namedChildren or walk instead.

Throws

actual fun namedChild(index: UInt): Node?(source)

Get the node's named child at the given index, if any.

This method is fairly fast, but its cost is technically log(i), so if you might be iterating over a long list of children, you should use namedChildren or walk instead.

Throws