TS
namespace std {
ostream& operator<< (ostream&, ...
}
Size: a a a
TS
namespace std {
ostream& operator<< (ostream&, ...
}
DP
std::cout.operator<<(10)
TS
std::cout.operator<<(10)
std::cout.operator<<("10");
0x4007b4
TS
std::cout.operator<<(10)
D
std::cout.operator<<("10");
0x4007b4
TS
DP
TS
TS
D
DP
TS
std::cout << "hello, world";
здесь работает ADL, а ты говоришь что нетd
BH
std::cout << "hello, world";
здесь работает ADL, а ты говоришь что нетDP
std::cout.operator<<(10)
DP
Е
requires (Kekkable<T> && ...)
TS
std::cout << "hello, world";здесь тоже вызов member
std::cout << 10;
DP
std::cout << "hello, world";здесь тоже вызов member
std::cout << 10;
AZ