what does the ## represent in following expression:
Manipulate[Plot[Sin[a x],{x,0,4Pi}],
{{a,1},0,4,AngularGauge[##,ImageSize->125]&},ControlPlacement->Left]
In this case, what is the arguments list the ## represent? Does ## represent the arguments list of Manipulate function and what is it? I understant when it is used in this case: f[##]&[a,b,c,d].

##meansSlotSequence. If you go to Menu/Help/WolframDocumentation and type there##you get detailed information. – Alexei Boulbitch Jun 23 '21 at 10:48Manipulatepasses on to the controller, which, in this case is defined as a customAngularGaugefunction. This list of arguments is explained under the documentation ofManipulate> Details & Options: "The form{u, u_min, u_max, func}can also be used; what is evaluated is thenfunc[Dynamic[u],{u_min, u_max}]." – István Zachar Jun 23 '21 at 10:55