Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CopyIntoUnion (0.27 sec)

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

      TaggedValue(TaggedValue&& v) : type_(NONE) { MoveIntoUnion(std::move(v)); }
      /// Copy constructor.
      TaggedValue(const TaggedValue& v) : type_(NONE) { CopyIntoUnion(v); }
      /// Copy assignment operator.
      TaggedValue& operator=(const TaggedValue& v) {
        destroy();
        CopyIntoUnion(v);
        return *this;
      }
      /// TaggedValue constructor for type TENSOR.
      explicit TaggedValue(TaggedValueTensor tensor)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top