Categorygithub.com/golang-infrastructure/go-tuple
repositorypackage
0.0.0-20221215155811-4ed54fe7d579
Repository: https://github.com/golang-infrastructure/go-tuple.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

Tuple

一、安装

go get -u github.com/golang-infrastructure/go-tuple

二、示例代码

package main

import (
	"fmt"
	"github.com/golang-infrastructure/go-tuple"
)

func main() {

	t2 := tuple.New2(1, "test")
	fmt.Println(t2)

}