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
|
|
|
|
2024-03-24 21:18:30 +08:00
|
|
|
// New is alias of NewAny.
|
|
|
|
|
// See NewAny, NewInterface.
|
|
|
|
|
func New(value ...interface{}) *Any {
|
|
|
|
|
return NewAny(value...)
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|