Querying Type Transformations
Use the TV::type_transformation command to return a list of supported type transformations.
For example, the following command finds the type transformations registered with a description matching GNU std:: and returns the name and validate_callback property for GNU std::deque type transformation:
d1.<> exec <<[join [TV::type_transformation get -all id type_transformation_description] "\n"] grep "GNU std::"
1|26 {GNU std::deque<>}
1|38 {GNU std::tuple}
1|39 {GNU std::array}
1|40 {GNU std::initializer_list}
1|41 {GNU std::reverse_iterator}
1|42 {GNU std::vector<>::iterator}
1|43 {GNU std::deque<>::iterator}
1|44 {GNU std::list<>::iterator}
1|45 {GNU std::{multi,}{map,set}<>::iterator}
1|46 {GNU std::unordered_{multi,}{map,set}<>::iterator}
1|47 {GNU std::unordered_{multi,}{map,set}<>::local_iterator}
d1.<>