(out io.Writer, re *regexp.Regexp, repl string)
| 7 | ) |
| 8 | |
| 9 | func NewRegexpWriter(out io.Writer, re *regexp.Regexp, repl string) *RegexpWriter { |
| 10 | return &RegexpWriter{out: out, re: *re, repl: repl} |
| 11 | } |
| 12 | |
| 13 | type RegexpWriter struct { |
| 14 | out io.Writer |
no outgoing calls