Files
gf/container/gtype/gtype.go

15 lines
488 B
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
// Package gtype provides high performance and concurrent-safe basic variable types.
package gtype
2018-08-28 17:06:49 +08:00
// New is alias of NewInterface.
// See NewInterface.
func New(value ...interface{}) *Interface {
2019-06-19 09:06:52 +08:00
return NewInterface(value...)
}