FastArduino v1.10
C++ library to build fast but small Arduino/AVR projects
Loading...
Searching...
No Matches
iomanip.h File Reference

C++-like std::iostream facilities. More...

#include <ctype.h>
#include <stddef.h>
#include "ios.h"
Include dependency graph for iomanip.h:

Go to the source code of this file.

Namespaces

namespace  streams
 Defines C++-like streams API, based on circular buffers for input or output.
 

Functions

constexpr const setw_ streams::setw (uint8_t width)
 Set the field width to be used on output (and some input) operations. More...
 
constexpr const setprecision_ streams::setprecision (uint8_t precision)
 Set the decimal precision to be used to format floating-point values on output operations. More...
 
constexpr const setbase_ streams::setbase (int base)
 Set the ios::basefield to one of its possible values (ios::dec, ios::bin, ios::oct or ios::hex) according to base, which must be one of 10, 2, 8 or 16. More...
 
constexpr const setfill_ streams::setfill (char fill)
 Set a new fill character. More...
 
constexpr const setiosflags_ streams::setiosflags (ios::fmtflags mask)
 Set the format flags specified by mask. More...
 
constexpr const resetiosflags_ streams::resetiosflags (ios::fmtflags mask)
 Unset the format flags specified by mask. More...
 

Detailed Description

C++-like std::iostream facilities.

Definition in file iomanip.h.