bkmgit commented on a change in pull request #11882: URL: https://github.com/apache/arrow/pull/11882#discussion_r776705668
########## File path: cpp/src/arrow/compute/api_scalar.h ########## @@ -1240,5 +1255,22 @@ ARROW_EXPORT Result<Datum> AssumeTimezone(const Datum& values, AssumeTimezoneOptions options, ExecContext* ctx = NULLPTR); +/// \brief Between compares each element in `values` +/// with `left` as a lower bound and 'right' as an upperbound +/// +/// \param[in] values input to compare between left and right +/// \param[in] left used as the lower bound for comparison +/// \param[in] right used as the upper bound for comparison +// \param[in] options between options, optional +/// \param[in] ctx the function execution context, optional +/// +/// \return the resulting datum +/// +/// \note API not yet finalized +ARROW_EXPORT +Result<Datum> Between(const Datum& values, const Datum& left, const Datum& right, + BetweenOptions options = BetweenOptions(), Review comment: Done -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org