Returns whether this array is empty.
(&self)
| 135 | |
| 136 | /// Returns whether this array is empty. |
| 137 | pub fn is_empty(&self) -> bool { |
| 138 | self.values.is_empty() |
| 139 | } |
| 140 | |
| 141 | /// Returns a zero-copy slice of this array with the indicated offset and length. |
| 142 | pub fn slice(&self, offset: usize, length: usize) -> Self { |
no outgoing calls
no test coverage detected