rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
14 lines (8 loc) • 400 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [rc-js-util](./rc-js-util.md) > [TNextInt](./rc-js-util.tnextint.md)
## TNextInt type
Gives the next int between 0 - 16.
**Signature:**
```typescript
export type TNextInt<TInt extends number> = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, ...number[]][TInt];
```