Checks if the container is empty.
(&self)
| 1075 | |
| 1076 | /// Checks if the container is empty. |
| 1077 | pub fn is_empty(&self) -> bool { |
| 1078 | self.len() == 0 |
| 1079 | } |
| 1080 | |
| 1081 | /// Helper internal: Locates the shard node and local index for a global index. |
| 1082 | /// Used by `ParcodeCollectionPromise::get_lazy`. |
no test coverage detected