Conversation
…r; N] To make it more convenient to work with fixed-size ascii arrays (`[AsciiChar; N]`), add the following trait impls: - Just as there is an impl of `From` in the direction `[AsciiChar] → AsciiStr`, add also `[AsciiChar; N] → AsciiStr`. - Just as there is an impl of `AsRef` in the direction `[AsciiChar] → AsciiStr`, add also `[AsciiChar; N] → AsciiStr`.
`literal!("An ascii string")` enables us to write a fixed-size,
compile-time ascii string in the same manner as we would use `b"A byte
string"` to write a fixed-size, compile-time byte string.
This is the only way to (safely) have a const ascii string.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This macro enables us to write literal, compile-time, fixed-size ascii strings by writing
just as we would write literal, compile-time, fixed-size byte strings by writing
This seems to be currently the only way to (safely) write a string such that its validity is checked at compile-time.