Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kellyiscute/bytes_io.dart
- Owner: kellyiscute
- License: mit
- Created: 2021-05-27T06:18:31.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-28T11:02:47.000Z (over 3 years ago)
- Last Synced: 2024-12-13T06:32:51.371Z (about 1 month ago)
- Topics: binary, dart, reader-writer
- Language: Dart
- Homepage:
- Size: 6.84 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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!