Jefffrey commented on code in PR #9062:
URL: https://github.com/apache/arrow-rs/pull/9062#discussion_r2652093805


##########
arrow-arith/src/aggregate.rs:
##########
@@ -809,6 +809,15 @@ where
 
 /// Returns the minimum value in the array, according to the natural order.
 /// For floating point arrays any NaN values are considered to be greater than 
any other non-null value
+///
+/// # Example
+/// ```rust
+/// # use arrow_array::Int32Array;
+/// # use arrow_arith::aggregate::min;
+/// let array = Int32Array::from(vec![5, 6, 7, 8, 9]);

Review Comment:
   Perhaps shuffle the input 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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to