Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DictPtr (0.16 sec)

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

      /// Retrieves underlying value from a TaggedValue with type DICT.
      impl::Dict& dict() { return *get<impl::DictPtr>(); }
      /// Retrieves underlying value from TaggedValues with type DICT.
      const impl::Dict& dict() const { return *get<impl::DictPtr>(); }
    
      /// Retrieves underlying value from a TaggedValue with type FUNC.
      impl::Func func() const { return get<impl::Func>(); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/value_iostream.h

        OutList(o_, x->begin(), x->end(), '[', ']');
        return o_;
      }
      std::ostream& operator()(const TuplePtr& x) {
        OutList(o_, x->begin(), x->end(), '(', ')');
        return o_;
      }
      std::ostream& operator()(const DictPtr& x) {
        o_ << *x;
        return o_;
      }
      std::ostream& operator()(const Capsule& x) {
        o_ << "Capsule(" << x.get() << ")";
        return o_;
      }
      std::ostream& operator()(const Func& x) {
        o_ << "Func";
    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