(iter: T)
| 291 | |
| 292 | impl FromIterator<bool> for NullBuffer { |
| 293 | fn from_iter<T: IntoIterator<Item = bool>>(iter: T) -> Self { |
| 294 | BooleanBuffer::from_iter(iter).into() |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | #[cfg(test)] |
nothing calls this directly
no test coverage detected