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

https://github.com/takkyuuplayer/v-bytebuf

Port of Go's bytes.Buffer
https://github.com/takkyuuplayer/v-bytebuf

vlang vlang-module

Last synced: 5 months ago
JSON representation

Port of Go's bytes.Buffer

Awesome Lists containing this project

README

          

# v-bytebuf

![CI](https://github.com/takkyuuplayer/v-bytebuf/workflows/CI/badge.svg)

Port of Go's bytes.Buffer

```v
import takkyuuplayer.bytebuf

fn main() {
mut buf := bytebuf.Buffer{}
buf.write('abc'.bytes()) ?

println(buf.str()) // Output: abc
}
```