/
githubmirror
/
GoFrame
Обзор
Документация
Войти
/
githubmirror
/
GoFrame
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
container/gtype/gtype.go
14 строк
488 B
John
remove usage of package unsafe for package gtype/grand
20 сен 2021, 07:58
20 сен 2021, 07:58
fe2eccf
Код
Авторство
О чём код?
// 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 // New is alias of NewInterface. // See NewInterface. func New(value ...interface{}) *Interface { return NewInterface(value...) }