FLUTTER ECOSYSTEM

isoos/buffer

Biblioteca Dart para buffers e streams de bytes.

Capa do projeto buffer
Stars
22
Forks
10
Último push (UTC)
11 de mar. de 2024
Status do projeto
Ativo
István Soós GitHub avatar
GITHUB User

István Soós ↗

software engineer

@agilordBudapest, HungarySite oficial ↗
LinguagensDart

Pacotes publicados por este repositório

Dependências usadas

Lista de dependências 2 itens
  • lintsDesenvolvimento^3.0.0
  • testDesenvolvimento^1.16.7

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher README

Buffer - Dart library for byte buffers and streams.

Pub

Utility functions and classes to work with byte buffers and streams efficiently, to read and write binary data formats.

Examples

Here are some examples of how you can use the buffer package:

Writing to a ByteDataWriter and reading from a ByteDataReader

This example demonstrates how to write unsigned integers of different sizes to a ByteDataWriter and then read them back using a ByteDataReader.

final writer = ByteDataWriter();
writer.writeUint8(255);
writer.writeUint16(65535);
writer.writeUint32(4294967295);

final reader = ByteDataReader();
reader.add(writer.toBytes());
print(reader.readUint8()); // Output: 255
print(reader.readUint16()); // Output: 65535
print(reader.readUint32()); // Output: 4294967295