Go to the source code of this file.
|  | 
| template<typename T > | 
| static std::ostream & | std::operator<< (std::ostream &out, const std::vector< T > &v) | 
|  | 
| template<typename T > | 
| static std::ostream & | std::operator<< (std::ostream &out, const std::initializer_list< T > &v) | 
|  | 
| template<typename T , std::size_t N> | 
| static std::ostream & | std::operator<< (std::ostream &out, const std::array< T, N > &a) | 
|  | 
◆ operator<<() [1/3]
template<typename T > 
  
  | 
        
          | static std::ostream& std::operator<< | ( | std::ostream & | out, |  
          |  |  | const std::vector< T > & | v |  
          |  | ) |  |  |  | static | 
 
Definition at line 22 of file grid.cc.
   23   auto column = out.tellp();
 
   25   for (
const auto &x : v) {
 
   26     if (out.tellp() - column >= 100) {
 
 
 
 
◆ operator<<() [2/3]
template<typename T > 
  
  | 
        
          | static std::ostream& std::operator<< | ( | std::ostream & | out, |  
          |  |  | const std::initializer_list< T > & | v |  
          |  | ) |  |  |  | static | 
 
Definition at line 36 of file grid.cc.
   38   auto column = out.tellp();
 
   40   for (
const auto &x : v) {
 
   41     if (out.tellp() - column >= 100) {
 
 
 
 
◆ operator<<() [3/3]
template<typename T , std::size_t N> 
  
  | 
        
          | static std::ostream& std::operator<< | ( | std::ostream & | out, |  
          |  |  | const std::array< T, N > & | a |  
          |  | ) |  |  |  | static | 
 
Definition at line 51 of file grid.cc.
   52   auto column = out.tellp();
 
   54   for (
const auto &x : a) {
 
   55     if (out.tellp() - column >= 100) {