MCPcopy Create free account
hub / github.com/apache/arrow-rs / from_iter

Method from_iter

arrow-buffer/src/buffer/immutable.rs:526–531  ·  view source on GitHub ↗
(iter: I)

Source from the content-addressed store, hash-verified

524/// Create a `Buffer` instance by storing the boolean values into the buffer
525impl FromIterator<bool> for Buffer {
526 fn from_iter<I>(iter: I) -> Self
527 where
528 I: IntoIterator<Item = bool>,
529 {
530 MutableBuffer::from_iter(iter).into()
531 }
532}
533
534impl std::ops::Deref for Buffer {

Callers

nothing calls this directly

Calls 1

from_iterFunction · 0.70

Tested by

no test coverage detected