6 lines
93 B
Go
6 lines
93 B
Go
package array
|
|
|
|
func IsEmpty[TIn any](arr []TIn) bool {
|
|
return arr == nil || len(arr) == 0
|
|
}
|