g ++の標準タイププロパティのサポートはいつ期待できますか?libstdc ++は、ほとんどの型プロパティのサポートを提供しますが、特別なGNU拡張機能からのサポートが必要なものもあります。ただし、の完全なサポートがあればいいのですが<type_traits>
、いつになるのでしょうか。libstdc ++メーリングリストに問い合わせてみましたが、残念ながら応答がありませんでした。
どのタイプのプロパティがサポートされていないのか疑問に思っている場合は、次のようなものがあります。
行方不明、is_trivially_copyable is_assignable、is_copy_assignable、is_move_assignable、is_trivially_constructible、is_trivially_default_constructible、is_trivially_copy_constructible、is_trivially_move_constructible、is_trivially_assignable、is_trivially_default_assignable、is_trivially_copy_assignable、is_trivially_move_assignable、is_trivially_destructible、is_nothrow_assignable、is_nothrow_copy_assignable、is_nothrow_move_assignable、is_nothrow_destructible
出典:ここで「タイププロパティ」を検索してください。
ご協力いただきありがとうございます!