...

Source file src/github.com/huandu/xstrings/stringbuilder_go110.go

Documentation: github.com/huandu/xstrings

     1  //go:build !go1.10
     2  // +build !go1.10
     3  
     4  package xstrings
     5  
     6  import "bytes"
     7  
     8  type stringBuilder struct {
     9  	bytes.Buffer
    10  }
    11  

View as plain text