| 70 | } |
| 71 | |
| 72 | bool entityIdInSpace(EntityId entityId, ConnectionId connectionId) { |
| 73 | auto pair = connectionEntitySpace(connectionId); |
| 74 | return entityId >= pair.first && entityId <= pair.second; |
| 75 | } |
| 76 | |
| 77 | ConnectionId connectionForEntity(EntityId entityId) { |
| 78 | if (entityId > 0) |
no test coverage detected