pub unsafe extern "C" fn aws_json_value_remove_array_element(
    array: *mut aws_json_value,
    index: usize
) -> c_int
Expand description

Removes the aws_json_value at the given index in the array aws_json_value. @param array The array aws_json_value. @param index The index containing the aws_json_value you want to remove. @return AWS_OP_SUCCESS if the aws_json_value at the index was removed. Will return AWS_OP_ERR if the array passed is invalid or if the index passed is out of range.