Replies: 1 comment 1 reply
-
Abseil's primary purpose is to be used as a dependency by Google's open source C++ projects. This means that Abseil contains the most used pieces of what was once our internal-only codebase.
No. Google-internal is on C++17 now, so we have |
Beta Was this translation helpful? Give feedback.
-
Hi everyone, thanks for making and maintaining this great library!
I am using abseil in a C++14 codebase to get support for newer C++ features. I find myself frequently wanting to use
std::invoke
, which is a C++17 feature. Looking into abseil, I foundabsl/base/internal/invoke.h
, which implements a version ofstd::invoke
. However, this implementation is placed into the internal namespace asabsl::base_internal::invoke
, which AFAIK should not be used from the outside.absl::invoke
outside of the internal namespace?Beta Was this translation helpful? Give feedback.
All reactions