17. implement LastChar<T>
シェアしよう
- accepted / - tried
FirstChar<T>の逆、LastChar<T>
も実装してください。
type A = LastChar<'BFE'> // 'E'type B = LastChar<'dev'> // 'v'type C = LastChar<''> // never
- accepted / - tried
FirstChar<T>の逆、LastChar<T>
も実装してください。
type A = LastChar<'BFE'> // 'E'type B = LastChar<'dev'> // 'v'type C = LastChar<''> // never