From ab6977b40a4d2be418716c16bb0d38c35e62b62f Mon Sep 17 00:00:00 2001 From: Daanturo Date: Fri, 2 Jul 2021 09:43:27 +0700 Subject: [PATCH] Better apply-rpartially documentation * doc/lispref/functions.texi (Calling Functions): provide comparison with apply-partially --- doc/lispref/functions.texi | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 80d0c96687..9e08affd1e 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi @@ -847,17 +847,21 @@ built-in function: @defun apply-rpartially func &rest args This function does mostly the same as @code{apply-partially}, but -@var{args} are aligned to the right of @var{func}'s parameters -instead. +@var{args} are the last arguments to be passed to @var{func}'s +parameters instead. @example @group -(defalias 'square (apply-rpartially #'expt 2) - "Return argument squared.") +(defalias '**2 (apply-rpartially #'expt 2) + "Return argument ** 2.") +(defalias '2** (apply-partially #'expt 2) + "Return 2 ** argument.") @end group @group -(square 3) +(**2 3) @result{} 9 +(2** 3) + @result{} 8 @end group @end example @end defun -- 2.32.0