Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kellyiscute/bytes_io.dart

a python-like bytes_io implementation for dart
https://github.com/kellyiscute/bytes_io.dart

binary dart reader-writer

Last synced: about 1 month ago
JSON representation

a python-like bytes_io implementation for dart

Awesome Lists containing this project

README

        

# bytes_io

A python-like bytes_io implementation for dart
A powerful helper for processing raw binary data

## Usage

A simple usage example:

```dart
import 'package:bytes_io/bytes_io.dart';

main() {
var reader = BytesReader([your_byte_buffer]);
reader.readByte();
}
```

## docs are in doc comments!