add go reference

This commit is contained in:
hdt3213
2021-05-11 22:48:06 +08:00
parent 66172721c5
commit 55ada39252
3 changed files with 11 additions and 8 deletions

View File

@@ -316,11 +316,3 @@ func Make(vals ...interface{}) *LinkedList {
}
return &list
}
func MakeBytesList(vals ...[]byte) *LinkedList {
list := LinkedList{}
for _, v := range vals {
list.Add(v)
}
return &list
}