Fix comment
This commit is contained in:
		
							parent
							
								
									2ee438dece
								
							
						
					
					
						commit
						624fd093f2
					
				|  | @ -59,7 +59,7 @@ export function maximum(xs: number[]): number { | |||
| 
 | ||||
| /** | ||||
|  * Splits an array based on the equivalence relation. | ||||
|  * The concatenation of the result equals to the argument. | ||||
|  * The concatenation of the result is equal to the argument. | ||||
|  */ | ||||
| export function groupBy<T>(f: (x: T, y: T) => boolean, xs: T[]): T[][] { | ||||
| 	const groups = [] as T[][]; | ||||
|  | @ -75,7 +75,7 @@ export function groupBy<T>(f: (x: T, y: T) => boolean, xs: T[]): T[][] { | |||
| 
 | ||||
| /** | ||||
|  * Splits an array based on the equivalence relation induced by the function. | ||||
|  * The concatenation of the result equals to the argument. | ||||
|  * The concatenation of the result is equal to the argument. | ||||
|  */ | ||||
| export function groupOn<T, S>(f: (x: T) => S, xs: T[]): T[][] { | ||||
| 	return groupBy((a, b) => f(a) === f(b), xs); | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue