PDF loads text data from an io.Reader.
| 11 | |
| 12 | // PDF loads text data from an io.Reader. |
| 13 | type PDF struct { |
| 14 | r io.ReaderAt |
| 15 | s int64 |
| 16 | password string |
| 17 | } |
| 18 | |
| 19 | var _ Loader = PDF{} |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected