-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Allow element access of literal type strings (which enables the auxiliary proposal: improve Array.split return type for tuples) #56332
Comments
I’m like 99% positive this exact thing has been proposed before, but I can’t seem to find the duplicate issue. Huh. |
Thank you. There are plenty of suggestions there for applications.
The goal of This proposal the is main proposal, is it not? Nowhere in This proposal does not in anyway suggest adding using a complex type expression with inference to the library, which is what #53362 suggests. |
You literally wrote "auxiliary proposal", where you propose to add a complex type to the library. Only slight difference is that with the option to index characters in string literals it wouldn't require inference.
|
@MartinJohns - As far as I can see this already a duplicate of #34692 - again, thank you for that. So there is no point in adding more use cases. |
🔍 Search Terms
"allow element access of literal string type" - Nothing found.
"Literal String should have literal length"
Turned up Template Literal Types with fixed or limited Length #52243 and Regex-validated string types (feedback reset) #41160, but those are both more complicated proposals with string ranges.
Anyway, this proposal doesn't use length, but does use character access, because length is less precise.
With regards to split (which is an auxiliary proposal here):
✅ Viability Checklist
⭐ Suggestion
Main Proposal: Type element access to Literal String types
Allow type element access to Literal String types. (Formatted string access could be a future extension of this proposal.)
This parallels the way in which tuples are treated.
Oddly, I haven't found a previous proposal for this, so one might conclude there is no practical need for it. However, it can be used to add other features, such as a more precise type for "String.split", which was proposed multiple times, but always closed without considering this prerequisite proposal which would make it possible.
The library definition for character access of
String
as it appears in lib.es5.d.tsis not unlike that for
ReadonlyArray<T>
which is used to allow element access of readonly tuple types (all tuple types are readonly).
In a tuple the acessed element type value is calculated internally by the compiler, and is made available to the TypeScript user at development time. Notably, in an tuple like
where the length must be reported as
number
, the accessed element typeis
string
, and notstring | undefined
. That shows that element access gives more precise type information thanlength
does.The same can be done for literal strings.
Auxiliary Proposal: Narrowed String.split return type for separators of Literal String types having at least one character.
If literal string element access were available, then we could write a more precise definition for
String.split
as follows:before:
after:
📃 Motivating Example
💻 Use Cases
As described above.
As described above.
This "workaround" is definitely a hack, and I would never actually use this outside of a demonstration, but replacing the literal string element access with a TypeScript conditional type function
CharAtZero
, we can get an solution that works with the example problem shown above:playground
The text was updated successfully, but these errors were encountered: