mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-22 14:20:19 +00:00
925ea1970c
Bumps the golang-dependencies group with 3 updates: [golang.org/x/crypto](https://github.com/golang/crypto), [golang.org/x/net](https://github.com/golang/net) and [golang.org/x/sys](https://github.com/golang/sys). Updates `golang.org/x/crypto` from 0.28.0 to 0.29.0 - [Commits](https://github.com/golang/crypto/compare/v0.28.0...v0.29.0) Updates `golang.org/x/net` from 0.30.0 to 0.31.0 - [Commits](https://github.com/golang/net/compare/v0.30.0...v0.31.0) Updates `golang.org/x/sys` from 0.26.0 to 0.27.0 - [Commits](https://github.com/golang/sys/compare/v0.26.0...v0.27.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-type: direct:production update-type: version-update:semver-minor dependency-group: golang-dependencies - dependency-name: golang.org/x/net dependency-type: direct:production update-type: version-update:semver-minor dependency-group: golang-dependencies - dependency-name: golang.org/x/sys dependency-type: direct:production update-type: version-update:semver-minor dependency-group: golang-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
// Copyright 2024 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build go1.23
|
|
|
|
package html
|
|
|
|
import "iter"
|
|
|
|
// Ancestors returns an iterator over the ancestors of n, starting with n.Parent.
|
|
//
|
|
// Mutating a Node or its parents while iterating may have unexpected results.
|
|
func (n *Node) Ancestors() iter.Seq[*Node] {
|
|
_ = n.Parent // eager nil check
|
|
|
|
return func(yield func(*Node) bool) {
|
|
for p := n.Parent; p != nil && yield(p); p = p.Parent {
|
|
}
|
|
}
|
|
}
|
|
|
|
// ChildNodes returns an iterator over the immediate children of n,
|
|
// starting with n.FirstChild.
|
|
//
|
|
// Mutating a Node or its children while iterating may have unexpected results.
|
|
func (n *Node) ChildNodes() iter.Seq[*Node] {
|
|
_ = n.FirstChild // eager nil check
|
|
|
|
return func(yield func(*Node) bool) {
|
|
for c := n.FirstChild; c != nil && yield(c); c = c.NextSibling {
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
// Descendants returns an iterator over all nodes recursively beneath
|
|
// n, excluding n itself. Nodes are visited in depth-first preorder.
|
|
//
|
|
// Mutating a Node or its descendants while iterating may have unexpected results.
|
|
func (n *Node) Descendants() iter.Seq[*Node] {
|
|
_ = n.FirstChild // eager nil check
|
|
|
|
return func(yield func(*Node) bool) {
|
|
n.descendants(yield)
|
|
}
|
|
}
|
|
|
|
func (n *Node) descendants(yield func(*Node) bool) bool {
|
|
for c := range n.ChildNodes() {
|
|
if !yield(c) || !c.descendants(yield) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|