golang.org/x/net/html.Node.PrevSibling (field)
19 uses
golang.org/x/net/html (current package)
node.go#L45: Parent, FirstChild, LastChild, PrevSibling, NextSibling *Node
node.go#L60: if newChild.Parent != nil || newChild.PrevSibling != nil || newChild.NextSibling != nil {
node.go#L65: prev, next = oldChild.PrevSibling, oldChild
node.go#L75: next.PrevSibling = newChild
node.go#L80: newChild.PrevSibling = prev
node.go#L88: if c.Parent != nil || c.PrevSibling != nil || c.NextSibling != nil {
node.go#L99: c.PrevSibling = last
node.go#L114: c.NextSibling.PrevSibling = c.PrevSibling
node.go#L117: n.LastChild = c.PrevSibling
node.go#L119: if c.PrevSibling != nil {
node.go#L120: c.PrevSibling.NextSibling = c.NextSibling
node.go#L123: c.PrevSibling = nil
parse.go#L286: prev = table.PrevSibling
github.com/andybalholm/cascadia
selector.go#L605: for c := parent.LastChild; c != nil; c = c.PrevSibling {
selector.go#L794: for n = n.PrevSibling; n != nil; n = n.PrevSibling {
selector.go#L804: for c := n.PrevSibling; c != nil; c = c.PrevSibling {
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |