godot/modules/enet
A Thousand Ships 955d5affa8
Reduce and prevent unnecessary random-access to List
Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when
accessing a single element)

* Removed subscript operator, in favor of a more explicit `get`
* Added conversion from `Iterator` to `ConstIterator`
* Remade existing operations into other solutions when applicable
2024-05-04 16:08:55 +02:00
..
doc_classes
config.py
enet_connection.cpp
enet_connection.h
enet_multiplayer_peer.cpp Reduce and prevent unnecessary random-access to List 2024-05-04 16:08:55 +02:00
enet_multiplayer_peer.h
enet_packet_peer.cpp Replace error checks against size with is_empty 2024-02-09 12:50:15 +01:00
enet_packet_peer.h
register_types.cpp
register_types.h
SCsub