MCPcopy Index your code
hub / github.com/tailscale/tailscale / Concise

Method Concise

types/netmap/netmap.go:319–327  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

317}
318
319func (nm *NetworkMap) Concise() string {
320 buf := new(strings.Builder)
321
322 nm.printConciseHeader(buf)
323 for _, p := range nm.Peers {
324 printPeerConcise(buf, p)
325 }
326 return buf.String()
327}
328
329func (nm *NetworkMap) VeryConcise() string {
330 buf := new(strings.Builder)

Callers 2

StringMethod · 0.95
TestNetworkMapConciseFunction · 0.80

Calls 3

printConciseHeaderMethod · 0.95
printPeerConciseFunction · 0.85
StringMethod · 0.65

Tested by 1

TestNetworkMapConciseFunction · 0.64