pitrou commented on code in PR #36415:
URL: https://github.com/apache/arrow/pull/36415#discussion_r1251145922
##########
cpp/src/arrow/type_traits.h:
##########
@@ -1179,6 +1179,22 @@ constexpr bool is_fixed_width(Type::type type_id) {
return is_primitive(type_id) || is_dictionary(type_id) ||
is_fixed_size_binary(type_id);
}
+/// \brief Check for a var-length list type
+///
+/// \param[in] type_id the type-id to check
+/// \return whether type-id is a var-length list type one
Review Comment:
Nit (and consistency with the other docstring you added)
```suggestion
/// \brief Check for a variable-length list type
///
/// \param[in] type_id the type-id to check
/// \return whether type-id is a variable-length list type one
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]