abstract datatype: cd()
chunk/2 | |
conv/2 | |
conv/3 | |
iconv/2 | |
ignores/1 | |
open/2 | |
reset/1 |
chunk(CD::cd(), Data::iodata()) -> {done, iodata()} | {more, iodata()} | {error, atom()} | {ok, eilseq, integer(), binary()}
conv(CD::cd(), Data::iodata()) -> {ok, binary()} | {error, atom()}
conv(To::string() | binary(), From::string() | binary(), Data::iodata()) -> {ok, binary()} | {error, atom()}
iconv(Cd::cd(), Binary::binary()) -> {ok, e2big, integer(), binary()} | {ok, eilseq, integer(), binary()} | {ok, einval, integer(), binary()} | {ok, integer(), binary()} | {error, atom()} | {error, integer()}
ignores(Cd::cd()) -> true | false
open(To::string() | binary(), From::string() | binary()) -> cd() | {error, unsupported | any()}
reset(Cd::cd()) -> ok | {error, atom()} | {error, integer()}
Generated by EDoc