all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg <incal@dataswamp.org>
To: help-gnu-emacs@gnu.org
Subject: Re: apply function
Date: Mon, 07 Aug 2023 20:44:32 +0200	[thread overview]
Message-ID: <878ramk7zj.fsf@dataswamp.org> (raw)
In-Reply-To: 7bea436f-42ab-4fa4-9b28-e5fe34776691@gmail.com

Karan Ahlawat wrote:

>> What might be the reasons for doing so ?
>
> The most common use case I've seen for this is that apply
> can take in a list as the arguments to the function, where
> a list would not work, and then spread the elements of the
> list as individual arguments. So
>
>     (+ (list 1 2 3))
>
> doesn't work, but doing
>
>     (apply #'+ (list 1 2 3)) ; outputs 6
>
> does work

The other use case is when one has the function stored in
a variable or provided as an argument, i.e. it is not known
from the static code perspective what function will be
executed. Observe:

(require 'cl-lib)

(defun test-final-line-f (fun pos-list)
  (cl-loop for p in pos-list do
    (goto-char p)
    (apply fun nil) ))

Here is a better example, maybe, where the function is either
`re-search-backward' or `re-search-forward' depending on the
argument REV (as in "reverse").

;;; -*- lexical-binding: t -*-
;;
;; this file:
;;   https://dataswamp.org/~incal/emacs-init/regexp.el

(require 'cl-lib)
(require 'dwim)

(defun replace-regexp-1 (re rep &optional beg end rev)
  (interactive
   `(,(read-string "regexp: ")
     ,(read-string "replace: ")
     ,@(use-region t)
     ,current-prefix-arg))
  (or beg (setq beg (point-min)))
  (or end (setq end (point-max)))
  (pcase-let ((`(,start ,sfun ,stop)
               (if rev
                   (list end #'re-search-backward beg)
                 (list beg #'re-search-forward end) )))
    (save-excursion
      (goto-char start)
      (let ((c 0))
        (while (apply sfun re stop '(t))
          (cl-incf c)
          (replace-match rep) )
        (message "matches replaced: %d" c) ))))

(defalias 'rr #'replace-regexp-1)

(provide 'regexp)

Source:
  https://dataswamp.org/~incal/emacs-init/dwim.el
  https://dataswamp.org/~incal/emacs-init/measure.el
  https://dataswamp.org/~incal/emacs-init/regexp.el

-- 
underground experts united
https://dataswamp.org/~incal




      parent reply	other threads:[~2023-08-07 18:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-07  5:45 apply function Heime
2023-08-07  6:12 ` Karan Ahlawat
2023-08-07  6:42   ` Heime
2023-08-07 18:44   ` Emanuel Berg [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=878ramk7zj.fsf@dataswamp.org \
    --to=incal@dataswamp.org \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.