Function: bs--nth-wrapper

bs--nth-wrapper is a byte-compiled function defined in bs.el.gz.

Signature

(bs--nth-wrapper COUNT FUN &rest ARGS)

Documentation

Call COUNT times function FUN with arguments ARGS.

Source Code

;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defun bs--nth-wrapper (count fun &rest args)
  "Call COUNT times function FUN with arguments ARGS."
  (dotimes (_i (or count 1))
    (apply fun args)))