Every line of 'golang io writer to string' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Go code is secure.
130 func (w Writer) String() string { 131 if inner, ok := w.Writer.(fmt.Stringer); ok { 132 return inner.String() 133 } 134 135 return "<writer>" 136 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
432 func writeStr(w io.Writer, s string) (err error) { 433 _, err = w.Write([]byte(s)) 434 return 435 }
552 func (e *String) writeTo(s *strings.Builder) { 553 if e.Queries == nil { 554 s.WriteString(strconv.Quote(e.Str)) 555 return 556 } 557 s.WriteByte('"') 558 for _, e := range e.Queries { 559 if e.Term.Str == nil { 560 s.WriteString(`\`) 561 e.writeTo(s) 562 } else { 563 es := e.String() 564 s.WriteString(es[1 : len(es)-1]) 565 } 566 } 567 s.WriteByte('"') 568 }
22 func (dockerfile *Dockerfile) Write(writer io.Writer) { 23 fmt.Fprint(writer, dockerfile.tostring()) 24 }
948 func (c *Comment) writeTo(w *bufio.Writer, s *WriteSettings) { 949 w.WriteString("<!--") 950 w.WriteString(c.Data) 951 w.WriteString("-->") 952 }
1562 func (m *TriNode) String() string { 1563 w := NewDefaultWriter() 1564 m.writeToString(w, false) 1565 return w.String() 1566 }
590 func (m *BookMessage) MarshalToWriter(writer jspb.Writer) { 591 if m == nil { 592 return 593 } 594 595 switch t := m.Content.(type) { 596 case *BookMessage_Name: 597 if len(t.Name) > 0 { 598 writer.WriteString(1, t.Name) 599 } 600 case *BookMessage_Message: 601 if len(t.Message) > 0 { 602 writer.WriteString(2, t.Message) 603 } 604 } 605 606 return 607 }
3413 func (m *FileInfoRequest) MarshalToWriter(writer jspb.Writer) { 3414 if m == nil { 3415 return 3416 } 3417 3418 if len(m.Path) > 0 { 3419 writer.WriteString(1, m.Path) 3420 } 3421 3422 return 3423 }
90 func (w *writer) write(elem ...string) { 91 for _, s := range elem { 92 w.buf.WriteString(s) 93 } 94 }
36 func (p *Printer) PrintStr(val interface{}) string { 37 buf := new(bytes.Buffer) 38 p.print(val, whitespace{}, newWriter(buf)) 39 return buf.String() 40 }