Skip to content

Commit

Permalink
Add is_constructor, is_destructor, is_special_member (#115)
Browse files Browse the repository at this point in the history
Dan Katz notes that he used those queries for his work mentioned in P3010.
  • Loading branch information
daveedvdv authored Oct 30, 2023
1 parent d6dbd6d commit 4389a33
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 2996_reflection/reflection.md
Original file line number Diff line number Diff line change
Expand Up @@ -1078,6 +1078,9 @@ namespace std::meta {
consteval auto is_class_template(info entity) -> bool;
consteval auto is_alias_template(info entity) -> bool;
consteval auto has_template_arguments(info r) -> bool;
consteval auto is_constructor(info r) -> bool;
consteval auto is_destructor(info r) -> bool;
consteval auto is_special_member(info r) -> bool;
}
```
:::
Expand Down

0 comments on commit 4389a33

Please sign in to comment.