Reserves capacity for at least `additional` more elements to be inserted.
(&mut self, additional: usize)
| 66 | /// Reserves capacity for at least `additional` more elements to be |
| 67 | /// inserted. |
| 68 | pub fn reserve(&mut self, additional: usize) { |
| 69 | self.0.reserve(additional); |
| 70 | } |
| 71 | |
| 72 | /// Returns `true` if the given block reference is valid. |
| 73 | pub fn is_valid(&self, block: Block) -> bool { |
no outgoing calls
no test coverage detected