v0.0.571 add AsAnyPtr() function to ids
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m45s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m45s
This commit is contained in:
parent
20fb1f5601
commit
cbaa283f74
@ -38,6 +38,11 @@ func (i {{.Name}}) Valid() bool {
|
||||
func (i {{.Name}}) AsAny() {{$.AnyDef.Name}} {
|
||||
return {{$.AnyDef.Name}}(i)
|
||||
}
|
||||
|
||||
func (i {{.Name}}) AsAnyPtr() *{{$.AnyDef.Name}} {
|
||||
v := {{$.AnyDef.Name}}(i)
|
||||
return &v
|
||||
}
|
||||
{{end}}
|
||||
|
||||
func New{{.Name}}() {{.Name}} {
|
||||
|
@ -1,5 +1,5 @@
|
||||
package goext
|
||||
|
||||
const GoextVersion = "0.0.570"
|
||||
const GoextVersion = "0.0.571"
|
||||
|
||||
const GoextVersionTimestamp = "2025-04-25T23:20:25+0200"
|
||||
const GoextVersionTimestamp = "2025-04-30T21:06:24+0200"
|
||||
|
Loading…
x
Reference in New Issue
Block a user