Validates the combination of `views` and `buffers` is a valid BinaryView
(views: &[u128], buffers: &[Buffer])
| 146 | |
| 147 | /// Validates the combination of `views` and `buffers` is a valid BinaryView |
| 148 | pub fn validate_binary_view(views: &[u128], buffers: &[Buffer]) -> Result<(), ArrowError> { |
| 149 | validate_view_impl(views, buffers, |_, _| Ok(())) |
| 150 | } |
| 151 | |
| 152 | /// Validates the combination of `views` and `buffers` is a valid StringView |
| 153 | pub fn validate_string_view(views: &[u128], buffers: &[Buffer]) -> Result<(), ArrowError> { |
no test coverage detected