Popularity
1.8
Declining
Activity
0.0
Declining
24
2
3

Programming language: Go
License: Apache License 2.0
Tags: Utilities    
Latest version: v1.0.1

ptr alternatives and similar packages

Based on the "Utilities" category.
Alternatively, view ptr alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ptr or a related project?

Add another 'Utilities' Package

README

ptr GoDoc Go Report Card

ptr contains functions for simplified creation of pointers from constants of basic types.

Installation

go get github.com/gotidy/ptr

Examples

This code:

p := ptr.Int(10)

is the equivalent for:

i := int(10)
p := &i  

Documentation

GoDoc

License

Apache 2.0


*Note that all licence references and agreements mentioned in the ptr README section above are relevant to that project's source code only.