api/vendor/github.com/laurent22/ical-go/ical/lib.go

19 lines
280 B
Go
Raw Normal View History

2019-05-22 17:48:48 +00:00
package ical
import (
"fmt"
"bytes"
)
type strBuffer struct {
buffer bytes.Buffer
}
func (b *strBuffer) Write(format string, elem ...interface{}) {
b.buffer.WriteString(fmt.Sprintf(format, elem...))
}
func (b *strBuffer) String() string {
return b.buffer.String()
}