mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-31 14:13:09 +02:00
restructured the project to comply community guideline, for others check release note
This commit is contained in:
8
internal/utils/functional/map_utils.go
Normal file
8
internal/utils/functional/map_utils.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package functional
|
||||
|
||||
func FirstValueOf[KT comparable, VT any](m map[KT]VT) (_ VT, ok bool) {
|
||||
for _, v := range m {
|
||||
return v, true
|
||||
}
|
||||
return
|
||||
}
|
||||
Reference in New Issue
Block a user