Namespace: go.std.mime.quotedprintable
v1.0Contents
Summary
Provides a low-level interface to the mime/quotedprintable package.
Package quotedprintable implements quoted-printable encoding as specified by
RFC 2045.
Index
Legend
-
Constant
Variable
Function
Macro
Special form
Type
GoVar
Receiver/Method
Constants
Constants are variables with :const true in their metadata. Joker currently does not recognize them as special; as such, it allows redefining them or their values.-
(None.)
Variables
-
(None.)
Functions, Macros, and Special Forms
-
NewReader
Function v1.0(NewReader r)
NewReader returns a quoted-printable reader, decoding from r.
Go input arguments: (r io.Reader)
Go returns: *Reader
Joker input arguments: [^go.std.io/Reader r]
Joker returns: ^*Reader -
NewWriter
Function v1.0(NewWriter w)
NewWriter returns a new Writer that writes to w.
Go input arguments: (w io.Writer)
Go returns: *Writer
Joker input arguments: [^go.std.io/Writer w]
Joker returns: ^*Writer
Types
-
*Reader
Concrete Type v1.0Reader is a quoted-printable decoder.
-
Read
Receiver for *Reader v1.0([p])
Read reads and decodes quoted-printable data from the underlying reader.
-
*Writer
Concrete Type v1.0A Writer is a quoted-printable writer that implements io.WriteCloser.
-
Close
Receiver for *Writer v1.0([])
Close closes the Writer, flushing any unwritten data to the underlying
io.Writer, but does not close the underlying io.Writer.
-
Write
Receiver for *Writer v1.0([p])
Write encodes p using quoted-printable encoding and writes it to the
underlying io.Writer. It limits line length to 76 characters. The encoded
bytes are not necessarily flushed until the Writer is closed.
-
Reader
Concrete Type v1.0Reader is a quoted-printable decoder.
-
Writer
Concrete Type v1.0A Writer is a quoted-printable writer that implements io.WriteCloser.
-
arrayOfReader
Concrete Type v1.0Reader is a quoted-printable decoder.
-
arrayOfWriter
Concrete Type v1.0A Writer is a quoted-printable writer that implements io.WriteCloser.