Returns the length of this array.
(&self)
| 130 | |
| 131 | /// Returns the length of this array. |
| 132 | pub fn len(&self) -> usize { |
| 133 | self.values.len() |
| 134 | } |
| 135 | |
| 136 | /// Returns whether this array is empty. |
| 137 | pub fn is_empty(&self) -> bool { |
no outgoing calls