completed member export and removed some "breaking" bugs, still work to be done on the XML output

This commit is contained in:
2026-02-26 16:19:24 -07:00
parent c74563be51
commit 344562c55c
10 changed files with 141 additions and 23 deletions
+8
View File
@@ -189,3 +189,11 @@ func IIF[A any](expr bool, v1, v2 A) A {
return v2
}
}
// SRef dereferences the string pointer if it's not nil, or returns an empty string if it is nil.
func SRef(s *string) string {
if s == nil {
return ""
}
return *s
}