1 Star 1 Fork 1

up-zero/gotool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
if.go 209 Bytes
一键复制 编辑 原始数据 按行查看 历史
GetcharZp 提交于 2023-08-20 17:56 +08:00 . feat if
package gotool
// If 三元运算符
//
// condition 条件
// a 条件为真时返回的值
// b 条件为假时返回的值
func If(condition bool, a, b any) any {
if condition {
return a
}
return b
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/up-zero/gotool.git
git@gitee.com:up-zero/gotool.git
up-zero
gotool
gotool
main

搜索帮助