rambda
Version:
Lightweight faster alternative to Ramda
19 lines (17 loc) • 433 B
text/typescript
import {IterationMap} from './IterationOf'
import {Iteration} from './Iteration'
/** Move **`I`**'s position forward
* @param I to move
* @returns **`Iteration`**
* @example
* ```ts
* import {I} from 'ts-toolbelt'
*
* type i = I.IterationOf<'20'>
*
* type test0 = I.Pos<i> // 20
* type test1 = I.Pos<I.Next<i>> // 21
* ```
*/
export type Next<I extends Iteration> =
IterationMap[I[1]] // continues iterating