You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
None yet, just writing the properties back to a file using some kind of writer would be nice. Also, you could also implement the properties by something like this:
typePropertiesmap[string]stringfunc (p*Properties) Load() error {
// do stuff, p["thing"] = "that"returnnil
}
func (p*Properties) GetAsBool(keystring, defbool) bool {
// use strconv to convert to bool, or return def if // conversion failed.returnfalse
}
func (p*Properties) GetAsInt8(keystring, defint8) int8 {
// use strconv to convert to int8return0
}
Any chance you'll be working on Write function(s) for this project in the near future?
The text was updated successfully, but these errors were encountered: