(&mut self, value: V::Native)
| 321 | /// Panics if the resulting length of the dictionary values array would exceed `T::Native::MAX` |
| 322 | #[inline] |
| 323 | pub fn append_value(&mut self, value: V::Native) { |
| 324 | self.append(value).expect("dictionary key overflow"); |
| 325 | } |
| 326 | |
| 327 | /// Infallibly append a value to this builder repeatedly `count` times. |
| 328 | /// This is the same as `append_value` but allows to append the same value multiple times without doing multiple lookups. |