Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TaggedValueIOStreamVisitor (0.49 sec)

  1. tensorflow/cc/experimental/libtf/value_iostream.h

      o << start;
      for (IT p = v_start; p != v_end; ++p) {
        o << *p;
        o << ", ";
      }
      o << end;
      return o;
    }
    
    class TaggedValueIOStreamVisitor {
      std::ostream& o_;
    
     public:
      explicit TaggedValueIOStreamVisitor(std::ostream& o) : o_(o) {}
    
      std::ostream& operator()(const ListPtr& x) {
        OutList(o_, x->begin(), x->end(), '[', ']');
        return o_;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top