()
| 415 | } |
| 416 | |
| 417 | func ExampleIsZeroValue() { |
| 418 | result1 := IsZeroValue("") |
| 419 | result2 := IsZeroValue(0) |
| 420 | result3 := IsZeroValue("abc") |
| 421 | result4 := IsZeroValue(1) |
| 422 | |
| 423 | fmt.Println(result1) |
| 424 | fmt.Println(result2) |
| 425 | fmt.Println(result3) |
| 426 | fmt.Println(result4) |
| 427 | |
| 428 | // Output: |
| 429 | // true |
| 430 | // true |
| 431 | // false |
| 432 | // false |
| 433 | } |
| 434 | |
| 435 | func ExampleIsGBK() { |
| 436 | str := "你好" |
nothing calls this directly
no test coverage detected
searching dependent graphs…