ADDED: * slicesx.First * slicesx.FirstIndex * slicesx.Remove * slicesx.RemoveAll * slicesx.RemoveReverse
8 lines
324 B
Go
8 lines
324 B
Go
/*
|
|
Package slicesx aims to extend functionality of the stdlib [slices] module.
|
|
|
|
Most are convenience functions that aid in readability (sometimes at a VERY negligible performance hit),
|
|
but others can be quite useful (e.g. [Remove], [RemoveAll], [RemoveReverse]) that will save on significant boilerplate.
|
|
*/
|
|
package slicesx
|