#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/DataTypes.h"
#include <cassert>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <optional>
#include <string>
#include <string_view>
#include <system_error>
#include <type_traits>
Go to the source code of this file.
|
template<typename OStream , typename T > |
std::enable_if_t<!std::is_reference_v< OStream > &&std::is_base_of_v< raw_ostream, OStream >, OStream && > | llvm::operator<< (OStream &&OS, const T &Value) |
| Call the appropriate insertion operator, given an rvalue reference to a raw_ostream object and return a stream of the same type as the argument.
|
|
raw_fd_ostream & | llvm::outs () |
| This returns a reference to a raw_fd_ostream for standard output.
|
|
raw_fd_ostream & | llvm::errs () |
| This returns a reference to a raw_ostream for standard error.
|
|
raw_ostream & | llvm::nulls () |
| This returns a reference to a raw_ostream which simply discards output.
|
|
raw_ostream & | llvm::operator<< (raw_ostream &OS, const indent &Indent) |
|
Error | llvm::writeToOutput (StringRef OutputFileName, std::function< Error(raw_ostream &)> Write) |
| This helper creates an output stream and then passes it to Write .
|
|
raw_ostream & | llvm::operator<< (raw_ostream &OS, std::nullopt_t) |
|
template<typename T , typename = decltype(std::declval<raw_ostream &>() << std::declval<const T &>())> |
raw_ostream & | llvm::operator<< (raw_ostream &OS, const std::optional< T > &O) |
|