Adds a single buffer to the [ArrayData]'s buffers
(mut self, b: Buffer)
| 2113 | |
| 2114 | /// Adds a single buffer to the [ArrayData]'s buffers |
| 2115 | pub fn add_buffer(mut self, b: Buffer) -> Self { |
| 2116 | self.buffers.push(b); |
| 2117 | self |
| 2118 | } |
| 2119 | |
| 2120 | /// Adds multiple buffers to the [ArrayData]'s buffers |
| 2121 | pub fn add_buffers<I: IntoIterator<Item = Buffer>>(mut self, bs: I) -> Self { |