doc: byte => u8

Alexander Medvednikov 2022-04-16 13:02:56 +03:00 committed by Jef Roosens
parent 2d9d4f86a8
commit e65f602a4f
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
1 changed files with 3 additions and 3 deletions

View File

@ -434,7 +434,7 @@ bool
string string
i8 i16 int i64 i128 (soon) i8 i16 int i64 i128 (soon)
byte u16 u32 u64 u128 (soon) u8 u16 u32 u64 u128 (soon)
rune // represents a Unicode code point rune // represents a Unicode code point
@ -460,7 +460,7 @@ These are the allowed possibilities:
↘ ↘ ↘ ↘
f32 → f64 f32 → f64
↗ ↗ ↗ ↗
byte → u16 → u32 → u64 ⬎ u8 → u16 → u32 → u64 ⬎
↘ ↘ ↘ ptr ↘ ↘ ↘ ptr
i8 → i16 → int → i64 ⬏ i8 → i16 → int → i64 ⬏
``` ```
@ -518,7 +518,7 @@ In V, a string is a read-only array of bytes. All Unicode characters are encoded
s := 'hello 🌎' // emoji takes 4 bytes s := 'hello 🌎' // emoji takes 4 bytes
assert s.len == 10 assert s.len == 10
arr := s.bytes() // convert `string` to `[]byte` arr := s.bytes() // convert `string` to `[]u8`
assert arr.len == 10 assert arr.len == 10
s2 := arr.bytestr() // convert `[]byte` to `string` s2 := arr.bytestr() // convert `[]byte` to `string`