vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

Function readAllUTF8

Reads the complete contents of a stream, assuming UTF-8 encoding.

string readAllUTF8(InputStream) (
  InputStream stream,
  bool sanitize = false,
  size_t max_bytes = size_t.max
)
if (isInputStream!InputStream);

Parameters

NameDescription
stream Specifies the stream from which to read.
sanitize If true, the input data will not be validated but will instead be made valid UTF-8.
max_bytes Optional size limit of the data that is read.

Returns

The full contents of the stream, excluding a possible BOM, are returned as a UTF-8 string.

Throws

An exception is thrown if max_bytes != 0 and the stream contains more than max_bytes data. If the sanitize parameter is false and the stream contains invalid UTF-8 code sequences, a UTFException is thrown.

Authors

Sönke Ludwig

Copyright

© 2012-2016 RejectedSoftware e.K.

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.