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

https://github.com/gregoryv/vars

Package vars provides copy functions for variables
https://github.com/gregoryv/vars

Last synced: 11 months ago
JSON representation

Package vars provides copy functions for variables

Awesome Lists containing this project

README

          

Package [vars](https://pkg.go.dev/github.com/gregoryv/vars) provides
copy functions for variables.

## Quick start

go get github.com/gregoryv/vars


## Usage

import github.com/gregoryv/vars

var (
i int
s string
)

_ = vars.Copy(
&i, 0,
&s, "hello",
)