kevingurney opened a new issue, #36852:
URL: https://github.com/apache/arrow/issues/36852

   ### Describe the enhancement requested
   
   Now that the MATLAB interface supports creating `Type` objects - like 
`arrow.type.Int64Type`, we can add support for `Field` objects (i.e. name + 
type).
   
   This mirrors the `Field` type in other Arrow interfaces, [like 
PyArrow](https://arrow.apache.org/docs/python/generated/pyarrow.field.html).
   
   **Example**:
   
   ```matlab
   name = "Speed";
   type = arrow.type.uint8();
   field = arrow.field(name, type);
   ```
   
   ### Component(s)
   
   MATLAB


-- 
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]

Reply via email to