package
Version:
v0.0.0-...-782a3f7
Opens a new window with list of versions in this module.
Published: Nov 21, 2024
License: MIT
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
Package empty 提供检查空/空指针变量的函数。 md5:4be7b468c813f750
func IsEmpty(value interface{}, traceSource ...bool) bool
IsEmpty 检查给定的 `value` 是否为空。
如果 `value` 为以下情况,函数返回 true:0, nil, false, "", slice/映射/通道的长度为0,
否则返回 false。
参数 `traceSource` 用于在 `value` 是指向指针的指针类型时追踪源变量。
当 `traceSource` 为 true 且源变量为空时,返回 true。
注意,这可能使用反射功能,可能会稍微影响性能。
md5:343856f448e80aef
func IsNil(value interface{}, traceSource ...bool) bool
IsNil 检查给定的 `value` 是否为 nil,特别是对于 interface{} 类型的值。
参数 `traceSource` 用于在给定的 `value` 是指向指针的指针类型时,追踪到源变量。
当 `traceSource` 为真且源为 nil 时,它会返回 nil。
注意,该函数可能使用反射功能,这可能稍微影响性能。
md5:c12efd8c176fc73a
Source Files
¶
Click to show internal directories.
Click to hide internal directories.