Documentation ¶
Index ¶
- func GetValueAsBool(dict map[string]any, key string) bool
- func GetValueAsInt32(dict map[string]any, key string) int32
- func GetValueAsInt64(dict map[string]any, key string) int64
- func GetValueAsString(dict map[string]any, key string) string
- func GetValueOrDefaultAsBool(dict map[string]any, key string, defaultValue bool) bool
- func GetValueOrDefaultAsInt32(dict map[string]any, key string, defaultValue int32) int32
- func GetValueOrDefaultAsInt64(dict map[string]any, key string, defaultValue int64) int64
- func GetValueOrDefaultAsString(dict map[string]any, key string, defaultValue string) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetValueAsBool ¶
以布尔形式从字典中获取指定键的值。
入参:
- dict: 字典。
- key: 键。
出参:
- 字典中键对应的值。如果指定键不存在或者值的类型不是布尔,则返回 false。
func GetValueAsInt32 ¶
以 32 位整数形式从字典中获取指定键的值。
入参:
- dict: 字典。
- key: 键。
出参:
- 字典中键对应的值。如果指定键不存在或者值的类型不是 32 位整数,则返回 0。
func GetValueAsInt64 ¶
以 64 位整数形式从字典中获取指定键的值。
入参:
- dict: 字典。
- key: 键。
出参:
- 字典中键对应的值。如果指定键不存在或者值的类型不是 64 位整数,则返回 0。
func GetValueAsString ¶
以字符串形式从字典中获取指定键的值。
入参:
- dict: 字典。
- key: 键。
出参:
- 字典中键对应的值。如果指定键不存在或者值的类型不是字符串,则返回空字符串。
func GetValueOrDefaultAsBool ¶
以布尔形式从字典中获取指定键的值。
入参:
- dict: 字典。
- key: 键。
- defaultValue: 默认值。
出参:
- 字典中键对应的值。如果指定键不存在或者值的类型不是布尔,则返回默认值。
func GetValueOrDefaultAsInt32 ¶
以 32 位整数形式从字典中获取指定键的值。
入参:
- dict: 字典。
- key: 键。
- defaultValue: 默认值。
出参:
- 字典中键对应的值。如果指定键不存在或者值的类型不是 32 位整数,则返回默认值。
func GetValueOrDefaultAsInt64 ¶
以 64 位整数形式从字典中获取指定键的值。
入参:
- dict: 字典。
- key: 键。
- defaultValue: 默认值。
出参:
- 字典中键对应的值。如果指定键不存在或者值的类型不是 64 位整数,则返回默认值。
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.