First of Array
提出詳細
type First<T extends any[]> = T extends [infer F, ...infer Rest] ? F : never;
提出日時 | 2024-08-27 14:01:34 |
---|---|
問題 | First of Array |
ユーザー | Katsukiniwa |
ステータス | Accepted |
import type { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect<Equal<First<[3, 2, 1]>, 3>>, Expect<Equal<First<[() => 123, { a: string }]>, () => 123>>, Expect<Equal<First<[]>, never>>, Expect<Equal<First<[undefined]>, undefined>>, ] type errors = [ // @ts-expect-error First<'notArray'>, // @ts-expect-error First<{ 0: 'arrayLike' }>, ]