alamb opened a new issue #301: URL: https://github.com/apache/arrow-rs/issues/301
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** Imagine a user who wants to make a StringArray. They go to the docs, and find [StringArray](https://docs.rs/arrow/4.0.0/arrow/array/type.StringArray.html) And now what?  **Describe the solution you'd like** Adding an example (or a pointer to such an example) to each of the Array types (e.g things that implement [Array](https://docs.rs/arrow/4.0.0/arrow/array/trait.Array.html) of how to construct them (from iterators) such as ``` let array = StringArray::from(vec![Some("foo"), None, Some("bar")]); ``` would probably be super helpful. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. -- 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. For queries about this service, please contact Infrastructure at: [email protected]
