diff --git a/folly/Traits.h b/folly/Traits.h index 3c6b86e1301..c1d550a823f 100644 --- a/folly/Traits.h +++ b/folly/Traits.h @@ -159,13 +159,17 @@ struct is_bounded_array : std::bool_constant> {}; /// is_instantiation_of_v /// is_instantiation_of +/// instantiated_from +/// uncvref_instantiated_from /// /// A trait variable and type to check if a given type is an instantiation of a -/// class template. +/// class template. And corresponding concepts. /// /// Note that this only works with type template parameters. It does not work /// with non-type template parameters, template template parameters, or alias /// templates. +/// +/// NOTE: there is also `instantiation_of` concept template