ptrto is a tiny library that exposes functions that return pointers to the Go builtin types (http://golang.org/pkg/builtin).
The following types are supported:
boolbytefloat32float64intint8int16int32int64interfacestringstructuintuint8uint16uint32uint64uintptr
This library is only really useful when testing functions and structs with interface{} arguments, types and parameters. Using this library in actual implementation code is probably not a good idea.
If you really want to use this, install it by running go get github.com/mcos/ptrto