coconut icon indicating copy to clipboard operation
coconut copied to clipboard

Compile variadic generic typing syntax to Unpack calls

Open evhub opened this issue 3 years ago • 0 comments

Should compile

class Array(Generic[*Shape]): ...

to the equivalent of

from typing_extensions import Unpack
class Array(Generic[Unpack[Shape]]): ...

evhub avatar May 27 '22 03:05 evhub