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

@ -18,12 +18,12 @@ pub fn new_builder(initial_size int) Builder {
return []u8{cap: initial_size}
}
[deprecated: 'Use write_byte() instead']
[deprecated: 'Use write_u8() instead']
pub fn (mut b Builder) write_b(data u8) {
b << data
}
pub fn (mut b Builder) write_byte(data u8) {
pub fn (mut b Builder) write_u8(data u8) {
b << data
}