@@ -134,7 +134,7 @@ type TernaryCallback<T, U, V, W, X, Y, ThisArg> = TernaryFcn<T, V, X, ThisArg> |
134134type Callback < ThisArg > = ( this : ThisArg , ...args : Array < unknown > ) => any ;
135135
136136/**
137- * Applies a function, inserts results into a format string, and prints the result.
137+ * Inserts the result of a callback function into a format string and prints the result.
138138*
139139* @param str - format string
140140* @param clbk - callback function
@@ -151,7 +151,7 @@ type Callback<ThisArg> = ( this: ThisArg, ...args: Array<unknown> ) => any;
151151declare function logEachMap < ThisArg = unknown > ( str : string , clbk : NullaryCallback < ThisArg > , thisArg ?: ThisParameterType < NullaryCallback < ThisArg > > ) : void ;
152152
153153/**
154- * Applies a function to array elements and prints an interpolated format string.
154+ * Inserts array element values and the result of a callback function into a format string and prints the result .
155155*
156156* @param str - format string
157157* @param arg0 - input array
@@ -171,7 +171,7 @@ declare function logEachMap<ThisArg = unknown>( str: string, clbk: NullaryCallba
171171declare function logEachMap < T = unknown , U extends InputArray < T > = InputArray < T > , ThisArg = unknown > ( str : string , arg0 : U , clbk : UnaryCallback < T , U , ThisArg > , thisArg ?: ThisParameterType < UnaryCallback < T , U , ThisArg > > ) : void ;
172172
173173/**
174- * Applies a function to array elements and prints an interpolated format string.
174+ * Inserts array element values and the result of a callback function into a format string and prints the result .
175175*
176176* ## Notes
177177*
@@ -193,7 +193,7 @@ declare function logEachMap<T = unknown, U extends InputArray<T> = InputArray<T>
193193declare function logEachMap < T = unknown , ThisArg = unknown > ( str : string , arg0 : T , clbk : UnaryCallback < T , [ T ] , ThisArg > , thisArg ?: ThisParameterType < UnaryCallback < T , [ T ] , ThisArg > > ) : void ;
194194
195195/**
196- * Applies a function to array elements and prints an interpolated format string.
196+ * Inserts array element values and the result of a callback function into a format string and prints the result .
197197*
198198* @param str - format string
199199* @param arg0 - first input array
@@ -221,7 +221,7 @@ declare function logEachMap<
221221> ( str : string , arg0 : U , arg1 : W , clbk : BinaryCallback < T , U , V , W , ThisArg > , thisArg ?: ThisParameterType < BinaryCallback < T , U , V , W , ThisArg > > ) : void ;
222222
223223/**
224- * Applies a function to array elements and prints an interpolated format string.
224+ * Inserts array element values and the result of a callback function into a format string and prints the result .
225225*
226226* ## Notes
227227*
@@ -251,7 +251,7 @@ declare function logEachMap<
251251> ( str : string , arg0 : T , arg1 : W , clbk : BinaryCallback < T , [ T ] , V , W , ThisArg > , thisArg ?: ThisParameterType < BinaryCallback < T , [ T ] , V , W , ThisArg > > ) : void ;
252252
253253/**
254- * Applies a function to array elements and prints an interpolated format string.
254+ * Inserts array element values and the result of a callback function into a format string and prints the result .
255255*
256256* ## Notes
257257*
@@ -281,7 +281,7 @@ declare function logEachMap<
281281> ( str : string , arg0 : T , arg1 : V , clbk : BinaryCallback < T , U , V , [ V ] , ThisArg > , thisArg ?: ThisParameterType < BinaryCallback < T , U , V , [ V ] , ThisArg > > ) : void ;
282282
283283/**
284- * Applies a function to array elements and prints an interpolated format string.
284+ * Inserts array element values and the result of a callback function into a format string and prints the result .
285285*
286286* ## Notes
287287*
@@ -308,7 +308,7 @@ declare function logEachMap<
308308> ( str : string , arg0 : T , arg1 : V , clbk : BinaryCallback < T , [ T ] , V , [ V ] , ThisArg > , thisArg ?: ThisParameterType < BinaryCallback < T , [ T ] , V , [ V ] , ThisArg > > ) : void ;
309309
310310/**
311- * Applies a function to array elements and prints an interpolated format string.
311+ * Inserts array element values and the result of a callback function into a format string and prints the result .
312312*
313313* @param str - format string
314314* @param arg0 - first input array
@@ -340,7 +340,7 @@ declare function logEachMap<
340340> ( str : string , arg0 : U , arg1 : W , arg2 : Y , clbk : TernaryCallback < T , U , V , W , X , Y , ThisArg > , thisArg ?: ThisParameterType < TernaryCallback < T , U , V , W , X , Y , ThisArg > > ) : void ;
341341
342342/**
343- * Applies a function to array elements and prints an interpolated format string.
343+ * Inserts array element values and the result of a callback function into a format string and prints the result .
344344*
345345* ## Notes
346346*
@@ -374,7 +374,7 @@ declare function logEachMap<
374374> ( str : string , arg0 : T , arg1 : W , arg2 : Y , clbk : TernaryCallback < T , [ T ] , V , W , X , Y , ThisArg > , thisArg ?: ThisParameterType < TernaryCallback < T , [ T ] , V , W , X , Y , ThisArg > > ) : void ;
375375
376376/**
377- * Applies a function to array elements and prints an interpolated format string.
377+ * Inserts array element values and the result of a callback function into a format string and prints the result .
378378*
379379* ## Notes
380380*
@@ -408,7 +408,7 @@ declare function logEachMap<
408408> ( str : string , arg0 : U , arg1 : V , arg2 : Y , clbk : TernaryCallback < T , U , V , [ V ] , X , Y , ThisArg > , thisArg ?: ThisParameterType < TernaryCallback < T , U , V , [ V ] , X , Y , ThisArg > > ) : void ;
409409
410410/**
411- * Applies a function to array elements and prints an interpolated format string.
411+ * Inserts array element values and the result of a callback function into a format string and prints the result .
412412*
413413* ## Notes
414414*
@@ -442,7 +442,7 @@ declare function logEachMap<
442442> ( str : string , arg0 : U , arg1 : W , arg2 : X , clbk : TernaryCallback < T , U , V , W , X , [ X ] , ThisArg > , thisArg ?: ThisParameterType < TernaryCallback < T , U , V , W , X , [ X ] , ThisArg > > ) : void ;
443443
444444/**
445- * Applies a function to array elements and prints an interpolated format string.
445+ * Inserts array element values and the result of a callback function into a format string and prints the result .
446446*
447447* ## Notes
448448*
@@ -474,7 +474,7 @@ declare function logEachMap<
474474> ( str : string , arg0 : T , arg1 : V , arg2 : Y , clbk : TernaryCallback < T , [ T ] , V , [ V ] , X , Y , ThisArg > , thisArg ?: ThisParameterType < TernaryCallback < T , [ T ] , V , [ V ] , X , Y , ThisArg > > ) : void ;
475475
476476/**
477- * Applies a function to array elements and prints an interpolated format string.
477+ * Inserts array element values and the result of a callback function into a format string and prints the result .
478478*
479479* ## Notes
480480*
@@ -506,7 +506,7 @@ declare function logEachMap<
506506> ( str : string , arg0 : T , arg1 : W , arg2 : X , clbk : TernaryCallback < T , [ T ] , V , W , X , [ X ] , ThisArg > , thisArg ?: ThisParameterType < TernaryCallback < T , [ T ] , V , W , X , [ X ] , ThisArg > > ) : void ;
507507
508508/**
509- * Applies a function to array elements and prints an interpolated format string.
509+ * Inserts array element values and the result of a callback function into a format string and prints the result .
510510*
511511* ## Notes
512512*
@@ -538,7 +538,7 @@ declare function logEachMap<
538538> ( str : string , arg0 : U , arg1 : V , arg2 : X , clbk : TernaryCallback < T , U , V , [ V ] , X , [ X ] , ThisArg > , thisArg ?: ThisParameterType < TernaryCallback < T , U , V , [ V ] , X , [ X ] , ThisArg > > ) : void ;
539539
540540/**
541- * Applies a function to array elements and prints an interpolated format string.
541+ * Inserts array element values and the result of a callback function into a format string and prints the result .
542542*
543543* ## Notes
544544*
@@ -567,7 +567,7 @@ declare function logEachMap<
567567> ( str : string , arg0 : T , arg1 : V , arg2 : X , clbk : TernaryCallback < T , [ T ] , V , [ V ] , X , [ X ] , ThisArg > , thisArg ?: ThisParameterType < TernaryCallback < T , [ T ] , V , [ V ] , X , [ X ] , ThisArg > > ) : void ;
568568
569569/**
570- * Applies a function to array elements and prints an interpolated format string.
570+ * Inserts array element values and the result of a callback function into a format string and prints the result .
571571*
572572* ## Notes
573573*
0 commit comments