gonull icon indicating copy to clipboard operation
gonull copied to clipboard

Go package simplifies nullable fields handling using Go Generics.

Results 2 gonull issues
Sort by recently updated
recently updated
newest added

In the provided code, when unmarshalling the JSON the `Weight` attribute is correctly set to `present: false, valid: false` as `"Weight"` isn't specified in the JSON. However, when marshalling the...

bug

For example ``` func NullIsEqual[T comparable](a gonull.Nullable[T], b gonull.Nullable[T]) bool { // If both are not present, they are considered equal if !a.Present && !b.Present { return true } //...

bug