Skip to content

Commit 67824bb

Browse files
authored
Merge pull request #13 from golang-infrastructure/dev
docs: 增加英文文档
2 parents 019926a + e9ceb36 commit 67824bb

File tree

2 files changed

+138
-0
lines changed

2 files changed

+138
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Golang的三元表达式实现
22

3+
[中文文档](./README.md) | [English Document](./README_en.md)
4+
35
# 一、开发初衷
46

57
Golang中缺少三元表达式,就导致某些情况三元表达式一行就能搞定的事情到Golang里面就得写得很啰嗦,

README_en.md

+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
# Golang's ternary expression implementation
2+
3+
[中文文档](./README.md) | [English Document](./README_en.md)
4+
5+
# 1. The original intention of development
6+
7+
The lack of ternary expressions in Golang has led to the fact that in some cases, things that can be done in one line with ternary expressions have to be written very verbosely in Golang.
8+
This is unbearable, ~~this library uses a large number of custom if functions to achieve functions similar to ternary expressions~~, the latest version is implemented based on generics.
9+
10+
Before using this library:
11+
12+
```go
13+
if a % 2 == 0 {
14+
return "even number"
15+
} else {
16+
return "odd number"
17+
}
18+
```
19+
20+
After using this library:
21+
22+
```go
23+
return if_expression.Return(a % 2 == 0, "even", "odd")
24+
```
25+
26+
Compared:
27+
28+
``` diff
29+
- if a % 2 == 0 {
30+
- return "even number"
31+
- } else {
32+
- return "odd number"
33+
- }
34+
+ return if_expression.Return(a % 2 == 0, "even", "odd")
35+
```
36+
37+
## 2. Introduce dependencies
38+
39+
go get install:
40+
41+
```text
42+
go get -u github.com/golang-infrastructure/go-if-expression
43+
```
44+
45+
If you don't want to add new dependencies, just copy the following code into your utils, the generic version is very concise:
46+
47+
```go
48+
package if_expression
49+
50+
// Return
51+
//
52+
// @Description: The ternary expression implemented by if
53+
// @param boolExpression: Boolean expression, finally returns a Boolean value
54+
// @param trueReturnValue: The value returned when the return value of boolExpression is true
55+
// @param falseReturnValue: The value returned when boolExpression returns false
56+
// @return bool: The result of the ternary expression, which is one of trueReturnValue or falseReturnValue
57+
func Return[T any](boolExpression bool, trueReturnValue, falseReturnValue T) T {
58+
if boolExpression {
59+
return trueReturnValue
60+
} else {
61+
return falseReturnValue
62+
}
63+
}
64+
65+
// ReturnByFunc
66+
//
67+
// @Description: The ternary expression implemented by if
68+
// @param boolExpression: Boolean expression, finally returns a Boolean value
69+
// @param trueReturnValue: When the return value of boolExpression is true, execute this function and return the value
70+
// @param falseReturnValue: Execute this function and return value when boolExpression returns false
71+
// @return bool: The result of the ternary expression, which is one of trueReturnValue or falseReturnValue
72+
func ReturnByFunc[T any](boolExpression bool, trueFuncForReturnValue, falseFuncForReturnValue func() T) T {
73+
if boolExpression {
74+
return trueFuncForReturnValue()
75+
} else {
76+
return falseFuncForReturnValue()
77+
}
78+
}
79+
```
80+
81+
# 3. Example
82+
83+
For example, the most common default value scenario:
84+
85+
```go
86+
threadNum := 0
87+
fmt.Printf("Number of threads: %d", if_expression.Return(threadNum == 0, 1, threadNum))
88+
```
89+
90+
Example of use:
91+
92+
```go
93+
package main
94+
95+
import (
96+
"fmt"
97+
if_expression "github.com/golang-infrastructure/go-if-expression"
98+
)
99+
100+
func main() {
101+
102+
r := if_expression.Return(true, "Yes", "No")
103+
fmt.Println(r)
104+
//Output:
105+
// yes
106+
107+
}
108+
109+
```
110+
111+
Or use a function to return, only the function that is hit by the branch will be executed, but this method is not concise and is not recommended:
112+
113+
```go
114+
package main
115+
116+
import (
117+
"fmt"
118+
if_expression "github.com/golang-infrastructure/go-if-expression"
119+
)
120+
121+
func main() {
122+
123+
r := if_expression. ReturnByFunc(true, func() string {
124+
fmt.Println("True branch is executed")
125+
return "yes"
126+
}, func() string {
127+
fmt.Println("False branch is executed")
128+
return "no"
129+
})
130+
fmt.Println(r)
131+
//Output:
132+
// True branch is executed
133+
// yes
134+
135+
}
136+
```

0 commit comments

Comments
 (0)