* @internal
| 106 | * @internal |
| 107 | */ |
| 108 | class FastRange implements IFastList { |
| 109 | public static readonly instance = new FastRange(); |
| 110 | public get(index: number) { |
| 111 | return index; |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * @internal |
nothing calls this directly
no outgoing calls
no test coverage detected