Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Append ¶
func Append[T comparable](a []T, b ...T) []T
Append appends elements of b to the slice a. Append DOESN'T make NEW duplicates. (But it respects the old duplicates).
Note: quick.Append is ~300x faster than append but the cost is ~3x more memory to be used. Also, keep it mind, quick.Append can load GC much more than simple append.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.