template <typename T, bool IsLValueReference = std::is_lvalue_reference<T>::value>
struct PassByValue
Defined at line 46 of file ../../third_party/abseil-cpp/absl/functional/internal/function_ref.h
Chooses the best type for passing T as an argument.
Attempt to be close to SystemV AMD64 ABI. Objects with trivial copy ctor are
passed by value.