top | item 46019350

(no title)

tomsmeding | 3 months ago

Well, it is the type of that, in TS syntax. Few are the statically-typed languages that can even express that type.

discuss

order

not_kurt_godel|3 months ago

Java: List<Object>

Python: list[Any]

...what am I missing?

rjh29|3 months ago

You're missing the specialisation of Object/Any. For example Array.flat called with [int, [bool, string]] returns a type [int, bool, string]. Admittedly this is somewhat niche, but most other languages can't express this - the type information gets erased.

sli|3 months ago

You're missing the input type, essentially. Those are just array types. The TypeScript type signature more of a function type, it expresses flattening a n-dimensional array (input type) into a flat array (output type).