/
githubmirror
/
xorm
Обзор
Документация
Войти
/
githubmirror
/
xorm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
internal/utils/reflect.go
14 строк
342 B
Lunny Xiao
Fix some comments lint and bug (#1888)
10 апр 2021, 05:57
10 апр 2021, 05:57
4bfe685
Код
Авторство
О чём код?
// Copyright 2020 The Xorm Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package utils import ( "reflect" ) // ReflectValue returns value of a bean func ReflectValue(bean interface{}) reflect.Value { return reflect.Indirect(reflect.ValueOf(bean)) }