Text file src/go/doc/comment/testdata/text4.txt

     1  {"TextWidth": 29}
     2  -- input --
     3  Package gob manages streams of gobs - binary values exchanged between an
     4  Encoder (transmitter) and a Decoder (receiver). A typical use is
     5  transporting arguments and results of remote procedure calls (RPCs) such as
     6  those provided by package "net/rpc".
     7  
     8  The implementation compiles a custom codec for each data type in the stream
     9  and is most efficient when a single Encoder is used to transmit a stream of
    10  values, amortizing the cost of compilation.
    11  -- text --
    12  Package gob manages streams
    13  of gobs - binary values
    14  exchanged between an Encoder
    15  (transmitter) and a Decoder
    16  (receiver). A typical use
    17  is transporting arguments
    18  and results of remote
    19  procedure calls (RPCs) such
    20  as those provided by package
    21  "net/rpc".
    22  
    23  The implementation compiles
    24  a custom codec for each data
    25  type in the stream and is
    26  most efficient when a single
    27  Encoder is used to transmit a
    28  stream of values, amortizing
    29  the cost of compilation.
    30  

View as plain text