mirror of
https://github.com/VinGarcia/ksql.git
synced 2025-05-31 11:42:25 +00:00
fixup! Improve tests for the Update() function
This commit is contained in:
parent
417ea4660f
commit
2f386e8541
16
nullable/nullable.go
Normal file
16
nullable/nullable.go
Normal file
@ -0,0 +1,16 @@
|
||||
package nullable
|
||||
|
||||
// Int ...
|
||||
func Int(i int) *int {
|
||||
return &i
|
||||
}
|
||||
|
||||
// Float64 ...
|
||||
func Float64(f float64) *float64 {
|
||||
return &f
|
||||
}
|
||||
|
||||
// String ...
|
||||
func String(s string) *string {
|
||||
return &s
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user