// 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 gvar import ( "github.com/gogf/gf/v2/container/gtype" ) // Set sets `value` to `v`, and returns the old value. func (v *Var) Set(value any) (old any) { if v.safe { if t, ok := v.value.(*gtype.Interface); ok { old = t.Set(value) return } } old = v.value v.value = value return }