What is the meaning of something like:
function f<T extends E>(obj: T) {}
where E
is some enum
like, say
enum E {
X
}
Since enum
s can't actually be extended, can't this constraint be dropped and the function rewritten to:
function f(obj: E) {}
PS: this is the code in question.
If you don't need the type of
T
in your function, then you are right is doesn't need to be generic.However, in the file you linked the type is used within the class.
Here's the relevant bits, with other stuff trimmed away:
This says that an
id
of typeEditorOption
is passed to the constructor. This is saved in the generic class typeK1
. Later when you access theid
property, it will return the same enum option that was passed to the constructor. This requires generics in order to capture a subtype of an enum (a specific value of that enum), and use it in the return value of that function, or the instance of a class.To clarify with your own example:
When you type the argument as
MyEnum
here, you can't use the enum that was provided in the return type, so the best you can do is type the return value asMyEnum
, because you can't know which value of that enum was provided.But when you use a generic:
Now you can use the exactly provided type of the argument in the return type.
This is, more or less, what the code you linked is doing.
Playground