oxend rpc code, pysogs and many other code bases would greatly benefit from adding / removing connection ids into a group and being able to send to the group and everyone in the group gets that message sent to them.
Something akin to:
struct BuddyGroup
{
std::unordered_set<ConnectionID> _buddies;
void add(ConnectionID);
void remove(ConnectionID);
template<typename Args>
void send(Args && ...) const; // blah blah blah send to all the buddies
};
oxend rpc code, pysogs and many other code bases would greatly benefit from adding / removing connection ids into a group and being able to send to the group and everyone in the group gets that message sent to them.
Something akin to: