FreeTensor
Loading...
Searching...
No Matches
stream_utils.h
Go to the documentation of this file.
1#ifndef FREE_TENSOR_STREAM_UTILS_H
2#define FREE_TENSOR_STREAM_UTILS_H
3
4#include <iostream>
5
6namespace freetensor {
7
12template <typename Func>
13auto operator<<(std::ostream &os, const Func &func) -> decltype(func(os)) {
14 return func(os);
15}
16
17} // namespace freetensor
18
19#endif // FREE_TENSOR_STREAM_UTILS_H
Definition: allocator.h:9
std::ostream & operator<<(std::ostream &os, const Dependence &dep)
Definition: deps.cc:1404