#include <serialise.hh>
Public Member Functions | |
StringSource (std::string &&)=delete | |
StringSource (std::string_view s) | |
StringSource (const std::string &str) | |
size_t | read (char *data, size_t len) override |
![]() | |
void | operator() (char *data, size_t len) |
void | operator() (std::string_view data) |
virtual bool | good () |
void | drainInto (Sink &sink) |
std::string | drain () |
Public Attributes | |
std::string_view | s |
size_t | pos |
A source that reads data from a string.
Store up to ‘len’ in the buffer pointed to by ‘data’, and return the number of bytes stored. It blocks until at least one byte is available.
Implements nix::Source.