using CheckingPred = bool (Entity::*)();
auto my_entity = this;
return std::all_of(
predicates.begin(), predicates.end(),
[my_entity]( CheckingPred stored_pred ) -> bool
{
return (my_entity->*stored_pred)();
}
);
UnicodeDecodeError: 'ascii' codec can't decode byte 0xec in position 0: ordinal not in range(128)