fn encode_blocked_range<W: Write + ?Sized, F>( out: &mut W, start: usize, end: usize, write_item: F, ) -> Result<(), ArrowError>where F: FnMut(&mut W, usize) -> Result<(), ArrowError>,
使用 Avro 数组块的帧格式编码一个分块范围内的项目。
为保持“输出优先”的约定,write_item 必须接受 (out, index) 作为参数。
write_item
(out, index)