Short but very interesting question ahead of you. Write a type which will represent not empty array NonEmptyArray. Type should behave in the same way as original Array is behaving, with this difference that empty array is a value which is not a valid member of NonEmptyArray
type NonEmptyArray<T> = /* your type level code here 💪 */
const a: NonEmptyArray<string> = [] // should be compilation error 🛑
const b: NonEmptyArray<string> = ['Hi TS'] // should be ok! 👌
Watch out, there is not one possible solution. How many solutions can you make? Post your answers in comments (preferred links to the playground). Have fun! Answer will be published soon!
This series will continue. If you want to know about new exciting questions from advanced TypeScript please follow me on dev.to and twitter.
Top comments (5)
My first solution :D
So why doesn't this work for an array of length 2?
TypeScript has endless magic, doesn’t stop to amaze me.
@macsikora I actually added a NonEmptyArray type to my codebase a while ago. It’s been useful, but not as much as I had hopped.
Have you found this type useful in a real world setting?
From memory the main “problem” was things like ‘map’ don’t “flow” the underlying type through...