Returns the number of byte arrays in this buffer
(&self)
| 48 | |
| 49 | /// Returns the number of byte arrays in this buffer |
| 50 | pub fn len(&self) -> usize { |
| 51 | self.offsets.len() - 1 |
| 52 | } |
| 53 | |
| 54 | pub fn is_empty(&self) -> bool { |
| 55 | self.len() == 0 |
no outgoing calls