removing extra file

This commit is contained in:
0syntrax0 2024-10-21 15:45:42 -05:00
parent f3ba5b98b6
commit 9f63a51280

View file

@ -1,13 +0,0 @@
package underscore
// Convert values to pointers
//
// Instead of:
// v = "value"
// MyPointerVar = &v
//
// Use:
// MyPointerVar = ToPointer("value")
func ToPointer[T any](in T) *T {
return &in
}