class ostream

Declaration

class ostream { /* full declaration omitted */ };

Description

A fast output stream which is not thread-safe.

Declared at: third_party/fmt/include/fmt/os.h:397

Method Overview

  • public void close()
  • public void flush()
  • public ostream(fmt::ostream && other)
  • public template <typename... T>void print(format_string<T...> fmt, T &&... args)
  • public ~ostream()

Methods

void close()

Declared at: third_party/fmt/include/fmt/os.h:415

void flush()

Declared at: third_party/fmt/include/fmt/os.h:410

ostream(fmt::ostream&& other)

Declared at: third_party/fmt/include/fmt/os.h:406

Parameters

fmt::ostream&& other

template <typename... T>
void print(format_string<T...> fmt, T&&... args)

Description

Formats ``args`` according to specifications in ``fmt`` and writes the output to the file.

Declared at: third_party/fmt/include/fmt/os.h:421

Templates

T

Parameters

format_string<T...> fmt
T&&... args

~ostream()

Declared at: third_party/fmt/include/fmt/os.h:408