//
pkg.gl
Category
go.mongodb.org/mongo-driver
internal
ptrutil
package
1.17.3
Repository:
https://github.com/mongodb/mongo-go-driver.git
Documentation:
pkg.go.dev
Overview
Versions
2
Dependencies
0
Dependents
2
Files
24 SLOC
#
Functions
CompareInt64
CompareInt64 is a piecewise function with the following return conditions: (1) 2, ptr1 != nil AND ptr2 == nil (2) 1, *ptr1 > *ptr2 (3) 0, ptr1 == ptr2 or *ptr1 == *ptr2 (4) -1, *ptr1 < *ptr2 (5) -2, ptr1 == nil AND ptr2 != nil.