all: byte => u8

This commit is contained in:
Alexander Medvednikov 2022-04-15 14:58:56 +03:00
parent b49d873217
commit d4a0d6f73c
221 changed files with 1365 additions and 1365 deletions

View file

@ -124,7 +124,7 @@ fn test_bin() {
assert x3 == -1
x4 := 0b11111111
assert x4 == 255
x5 := byte(0b11111111)
x5 := u8(0b11111111)
assert x5 == 255
x6 := char(0b11111111)
assert int(x6) == -1
@ -196,21 +196,21 @@ fn test_int_decl() {
fn test_int_to_hex() {
// array hex
/*
st := [byte(`V`), `L`, `A`, `N`, `G`]
st := [u8(`V`), `L`, `A`, `N`, `G`]
assert st.hex() == '564c414e47'
assert st.hex().len == 10
st1 := [byte(0x41)].repeat(100)
st1 := [u8(0x41)].repeat(100)
assert st1.hex() == '41'.repeat(100)*/
// --- int to hex tests
c0 := 12
// 8Bit
assert byte(0).hex() == '0'
assert byte(c0).hex() == 'c'
assert u8(0).hex() == '0'
assert u8(c0).hex() == 'c'
assert i8(c0).hex() == 'c'
assert byte(127).hex() == '7f'
assert u8(127).hex() == '7f'
assert i8(127).hex() == '7f'
assert byte(255).hex() == 'ff'
// assert byte(-1).hex() == 'ff'
assert u8(255).hex() == 'ff'
// assert u8(-1).hex() == 'ff'
// 16bit
assert u16(0).hex() == '0'
assert i16(c0).hex() == 'c'
@ -238,7 +238,7 @@ fn test_int_to_hex() {
}
fn test_repeat() {
b := byte(`V`)
b := u8(`V`)
assert b.repeat(5) == 'VVVVV'
assert b.repeat(1) == b.ascii_str()
assert b.repeat(0) == ''