Код: Выделить всё
auto DeadPlayers() {
return std::views::filter(
Players, &Player::isDead);
}
Код: Выделить всё
isDead()Код: Выделить всё
bool isDead() const { return mHealth
Подробнее здесь: [url]https://stackoverflow.com/questions/79067158/ampersand-before-function-argument-in-c[/url]