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
V version: 0.4.8 2ab1523 UI version: Latest as of Nov 24 OS: macOS
What did you do?
v run sample.v
What did you expect to see? A basic window with a couple of text boxes.
What did you see instead? /Users/bruce/.vmodules/ui/libvg/raster_tool.v:419:21: error: unknown function: encoding.utf8.get_rune . Did you mean encoding.utf8.get_uchar? 417 | c_len := ((0xe5000000 >> ((chr >> 3) & 0x1e)) & 3) + 1 418 | if c_len > 1 { 419 | tmp_char := utf8.get_rune(in_string, i) | ~~~~~~~~~~~~~~~~~~~~~~ Docs say: fn get_uchar # deprecated: use .get_rune(s string, index int) instead deprecated_after: 2024-11-17 fn get_uchar(s string, index int) int
encoding.utf8.get_uchar
.get_rune(s string, index int)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
V version: 0.4.8 2ab1523
UI version: Latest as of Nov 24
OS: macOS
What did you do?
What did you expect to see?
A basic window with a couple of text boxes.
What did you see instead?
/Users/bruce/.vmodules/ui/libvg/raster_tool.v:419:21: error: unknown function: encoding.utf8.get_rune .
Did you mean
encoding.utf8.get_uchar
?417 | c_len := ((0xe5000000 >> ((chr >> 3) & 0x1e)) & 3) + 1
418 | if c_len > 1 {
419 | tmp_char := utf8.get_rune(in_string, i)
| ~~~~~~~~~~~~~~~~~~~~~~
Docs say:
fn get_uchar #
deprecated: use
.get_rune(s string, index int)
instead deprecated_after: 2024-11-17fn get_uchar(s string, index int) int
The text was updated successfully, but these errors were encountered: