* garrow_input_stream_advance: * @input_stream: A #GArrowInputStream. * @n_bytes: The number of bytes to be advanced. * @error: (nullable): Return location for a #GError or %NULL. * * Returns: %TRUE on success, %FALSE on error. * * Since: 0.11.0 */
| 240 | * Since: 0.11.0 |
| 241 | */ |
| 242 | gboolean |
| 243 | garrow_input_stream_advance(GArrowInputStream *input_stream, |
| 244 | gint64 n_bytes, |
| 245 | GError **error) |
| 246 | { |
| 247 | auto arrow_input_stream = garrow_input_stream_get_raw(input_stream); |
| 248 | auto status = arrow_input_stream->Advance(n_bytes); |
| 249 | return garrow_error_check(error, status, "[input-stream][advance]"); |
| 250 | } |
| 251 | |
| 252 | /** |
| 253 | * garrow_input_stream_align: |
nothing calls this directly
no test coverage detected