MCPcopy Create free account
hub / github.com/tdewolff/canvas / String

Method String

path_intersection.go:794–806  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

792}
793
794func (s *SweepStatus) String() string {
795 if s.root == nil {
796 return "nil"
797 }
798
799 sb := strings.Builder{}
800 s.root.Print(&sb)
801 str := sb.String()
802 if 0 < len(str) {
803 str = str[:len(str)-1]
804 }
805 return str
806}
807
808//func (s *SweepStatus) First() *SweepNode {
809// if s.root == nil {

Callers

nothing calls this directly

Calls 2

PrintMethod · 0.45
StringMethod · 0.45

Tested by

no test coverage detected