![]() |
fpmas 1.6
|
Classes | |
class | Breakpoint |
class | Output |
struct | OutputStream |
Typedefs | |
template<typename T > | |
using | Watcher = std::function< T()> |
Functions | |
template<typename T > | |
std::ostream & | operator<< (OutputStream &output, const T &data) |
Program input / output related APIs.
using fpmas::api::io::Watcher = typedef std::function<T()> |
Generic Watcher interface.
A Watcher is a callable object that dynamically returns some underlying data.
std::ostream & fpmas::api::io::operator<< | ( | OutputStream & | output, |
const T & | data | ||
) |
Wrapper around std::ostream& operator<<(std::ostream&, T data)
.
Equivalent to output.get() << data
.