1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-07 14:12:28 +08:00

fix: fix issue for PR #334, usge Pair struct to instance enum items

This commit is contained in:
dudaodong
2025-10-16 18:43:24 +08:00
parent cd43004a91
commit 3f12b34eea
5 changed files with 83 additions and 94 deletions

View File

@@ -3,9 +3,9 @@ package enum
import "fmt"
func ExampleNewItem() {
items := NewItems[Status](
Active, "Active",
Inactive, "Inactive",
items := NewItems(
Pair[Status]{Value: Active, Name: "Active"},
Pair[Status]{Value: Inactive, Name: "Inactive"},
)
fmt.Println(items[0].Name(), items[0].Value())