0

What does the -> mean here:

(interactive 
  (list 
    (-> (dap--completing-read "Select configuration template: "
          (-mapcat #'funcall dap-launch-configuration-providers)
          'cl-first nil t))))

Tyler
  • 21,719
  • 1
  • 52
  • 92
David
  • 291
  • 1
  • 9

1 Answers1

1

It's the name of a Lisp macro provided by library dash.el. Checkout C-h f.

Drew
  • 75,699
  • 9
  • 109
  • 225
TerryTsao
  • 1,176
  • 4
  • 18
  • 1
    Could you please elaborate by providing what `C-h f` shows for `->`? Thx. Bonus points for explaining what it does in the question's example. – Drew Nov 17 '20 at 04:54