byter 0.0.1
byter: ^0.0.1 copied to clipboard
Efficiently and Easy handle fixed sized byte data for example, unsigned 8 byte integers types.
example/example.dart
import 'dart:convert';
import 'package:byter/byter.dart';
Future<void> main() async {
var byter=Byter('hello-world'.codeUnits);
print(byter);
byter.byte();
byter.byte();
print(byter);
byter.eat(Byter('He'.codeUnits));
print(utf8.decode(byter.all));
}