2021-01-17 21:46:25 +08:00
|
|
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
2018-03-27 15:09:17 +08:00
|
|
|
//
|
|
|
|
|
// 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,
|
2019-02-02 16:18:25 +08:00
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-03-27 15:09:17 +08:00
|
|
|
|
2021-09-20 12:58:10 +08:00
|
|
|
// Package gtype provides high performance and concurrent-safe basic variable types.
|
2018-03-27 15:09:17 +08:00
|
|
|
package gtype
|
2018-08-28 17:06:49 +08:00
|
|
|
|
2019-09-29 15:59:09 +08:00
|
|
|
// New is alias of NewInterface.
|
2019-04-15 22:55:12 +08:00
|
|
|
// See NewInterface.
|
2021-09-20 12:58:10 +08:00
|
|
|
func New(value ...interface{}) *Interface {
|
2019-06-19 09:06:52 +08:00
|
|
|
return NewInterface(value...)
|
|
|
|
|
}
|