We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! Thinking about adding a wrapper for system props, similar to what Env is for env vars. I came up with
Env
trait Prop[F[_]] { def get(name: String): F[Option[String]] def modify(name: String, f: String => (String, String)): F[Option[String]] def set(name: String, value: String): F[Unit] def update(name: String, f: String => String): F[Unit] }
(don't really like the name).
I can provide a PR if it sounds useful.
The text was updated successfully, but these errors were encountered:
I could have used this today. It seems like a helpful addition.
Sorry, something went wrong.
Same. I have several use cases where Prop would be helpful.
Prop
SystemProperties
No branches or pull requests
Hi! Thinking about adding a wrapper for system props, similar to what
Env
is for env vars.I came up with
(don't really like the name).
I can provide a PR if it sounds useful.
The text was updated successfully, but these errors were encountered: