summaryrefslogtreecommitdiff
path: root/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_iolist_0_type.txt
blob: aa17b96ab85eb29908d944ff56ada926df522abe (plain)
1
2
3
4
5
6
7
8
9
10

  -type iolist() ::
            maybe_improper_list(byte() | binary() | iolist(),
                                binary() | []).

  A list containing bytes and/or iodata. This datatype is used to
  represent data that is meant to be output using any I/O module.
  For example: file:write/2 or gen_tcp:send/2.

  In most use cases you want to use iodata() instead of this type.