Searched refs:FastAssign (Results 1 – 1 of 1) sorted by relevance
205 void FastAssign(const T& source) { value_ = source; } in FastAssign() function207 void FastAssign(T&& source) { value_ = std::move(source); } in FastAssign() function277 typed_ptr->FastAssign(std::forward<T>(value)); in Assign()