bkmgit commented on a change in pull request #11882:
URL: https://github.com/apache/arrow/pull/11882#discussion_r787015085



##########
File path: cpp/src/arrow/compute/kernels/scalar_compare.cc
##########
@@ -772,6 +1107,16 @@ const FunctionDoc less_equal_doc{
     ("A null on either side emits a null comparison result."),
     {"x", "y"}};
 
+const FunctionDoc between_doc{
+    "Check if values are in the given range, val between a and b",
+    ("A null on either side emits a null comparison result.\n"
+     "options are used to specify if the endpoints are\n"
+     "inclusive, possible values are NEITHER (a < val < b),\n"
+     "LEFT (a <= val < b), RIGHT (a < val <= b), and \n"
+     "BOTH (a <= val <= b). Default is BOTH."),
+    {"val", "a", "b"},

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: [email protected]

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


Reply via email to