Wrapped
Last updated
Was this helpful?
Last updated
Was this helpful?
Wrapped<Opening, Text, Closing>
The Wrapped
type indicates the text wrapped by the opening characters at the beginning and the closing characters at the end of the text. It's built from generic type variables in order , and on the template ${Opening}${Text}${Closing}
.
Opening
extends
string
=
''
A generic type variable determines the opening characters placed before the text on the template ${Opening}${Text}${Closing}
.
Text
extends
string
=
''
A generic type variable determines the text between the opening and closing characters on the template ${Opening}${Text}${Closing}
.
Closing
extends
string
=
''
A generic type variable determines the closing characters placed after the text on the template ${Opening}${Text}${Closing}
.
The type returns of generic type variables in order , and indicating wrapped text.