Generic type variables
Wrapper<Opening, ...>
Wrapper<Opening, ...>Opening extends string
A generic type variable constrained by the string, by default of the value captured from the provided opening indicates the opening type of a new Wrapper instance.
Wrapper<..., Closing>
Wrapper<..., Closing>Closing extends string
A generic type variable constrained by the string, by default of the value captured from the provided closing indicates the closing type of a new Wrapper instance.
class Wrapper<
Opening extends string = string,
Closing extends string = string
> extends Wrap<Opening, Closing> ...Last updated
Was this helpful?