A248 πŸ‡΅πŸ‡ΈπŸ‡ͺπŸ‡­

Results 174 comments of A248 πŸ‡΅πŸ‡ΈπŸ‡ͺπŸ‡­

Even if `Object` does not have a defined order, it is still possible to create a `Hash` implementation for it. See https://github.com/rust-lang/rust/pull/48366 for an implementation of Hash on an unordered...

Your link is oddly broken. I suggest editing it. There are a number of factors which could explain why commits are slow. Most likely, you have a large transaction -...

Can you elaborate on and clarify the matter? Also, can you state whether this is a bug or a feature request?

This is a bug, but it is a design bug rather than a functional bug. The fix is more difficult than it seems. When you load the configuration with fallback-to-default...

@m4nya raised a good point. I've always avoided null values because the concept of null is ambiguous. It's usually a bad idea to instruct users to leave a configuration option...

This feature needs careful consideration. It would very much improve consumer code; in fact, remembering to replace placeholders is now the most error-prone part of my own code. One of...

Thanks for the suggestion, I just took a look at TOMLJ. However, it seems they do not currently support writing toml - https://github.com/tomlj/tomlj/issues/16

I think what you are suggesting is a configuration instance whose data can be reloaded. I've considered this before, but never got around to implementing it. Example sketch: ```java interface...

@jwpjrdev Here is the state of toml support: * Someone opened a PR to tomlj which adds a writer: https://github.com/tomlj/tomlj/pull/19. As such, that's likely what we'll be using to write...

I noticed you moved to Gradle and published 2.2.0-SNAPSHOT. Is there anything that needs to be done which blocks releasing a stable version? I'd like to depend on the Floodgate...