Type Challenges Judge

Concat

提出詳細

type Concat<T extends any[], U extends any[]> = [...T, ...U]
提出日時2022-07-10 07:41:31
問題Concat
ユーザーyamakenji24
ステータスAccepted
テストケース
import type { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect<Equal<Concat<[], []>, []>>, Expect<Equal<Concat<[], [1]>, [1]>>, Expect<Equal<Concat<[1, 2], [3, 4]>, [1, 2, 3, 4]>>, Expect<Equal<Concat<['1', 2, '3'], [false, boolean, '4']>, ['1', 2, '3', false, boolean, '4']>>, ]