#include <iostream>
#include <vector>

int main()
{
std::cout << std::is_member_pointer<decltype(&std::vector<int>::begin)>::value;
}
