We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need it for the parser #2
type Char = string type CharInterval<T> = { readonly min: Char readonly max: Char readonly value: T } type CharMap<T> = { readonly iterable: () => Iterable<CharInterval<T>> readonly add: (_: CharInterval<T>) => CharMap<T> } const create : <T>(default: T) => CharMap<T>
Simple implementation is a list. In the future, we may consider to use a tree.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We need it for the parser #2
Simple implementation is a list. In the future, we may consider to use a tree.
The text was updated successfully, but these errors were encountered: