( self: Schema<A, I, R> )
| 6520 | * @since 3.10.0 |
| 6521 | */ |
| 6522 | export const getNumberIndexedAccess = <A extends ReadonlyArray<any>, I extends ReadonlyArray<any>, R>( |
| 6523 | self: Schema<A, I, R> |
| 6524 | ): SchemaClass<A[number], I[number], R> => make(AST.getNumberIndexedAccess(self.ast)) |
| 6525 | |
| 6526 | /** |
| 6527 | * Get the first element of a `ReadonlyArray`, or `None` if the array is empty. |
no test coverage detected