package
1.3.3
Repository: https://github.com/veeainc/utils.go.git
Documentation: pkg.go.dev

# README

interfaces

import "github.com/veeainc/utils.go/interfaces"

Example

func takePointer(obj interface{}) {
	interfaces.EnsurePointer(obj)
}

# Functions

Take an object and enforce a pointer.
Ensure that an interface{} is passed as a pointer.
Return obj type.