Kim, DoHyung
Kim, DoHyung
In the case of `encoding/json`, if I set `Inner` of `Test` struct before unmarshalling, it is kept after unmarshalled. But in the case of easyjson, the generated implementation unconditionally do...
ClickHouse sometimes returns multiple tables from single query. For instance, you may specify `GROUP BY WITH ROLLUP` and get multiple tables. So how is it possible to retrieve such results...
`execute_transactions` won't return an `Err`. Change its signature to reflect it. https://github.com/CodeChain-io/foundry/blob/c56248357b5fdfe931a9465ae9aadff9edac4bd4/coordinator/src/lib.rs#L300
Currently there is an option to provide single `TxOwner` to cover all of the Tx types implemented by a module. In relation to #555, it's more natural to expect multiple...
We should separate out the block related methods from TxOwner in the following grounds: 1. Some modules not implementing any Tx may serve `TxOwner`s and may want to have chances...
Currently just adding an empty substorage for ongoing use is considered a state change, resulting in a new root hash. It means that there must conceptually be a transaction to...
For tests and cases where linkme is not available, allow for manual registration of casters.
Different from the plain Micronaut apps, function apps running on the AWS Lambda don't recognize suspend functions in controllers. It would be good if suspend functions are recognized out of...
According to the user guide: ```stringtemplate parens(x) ::= "()" main() ::= "" ``` works and actually does fine. But the following doesn't: ```stringtemplate parens(x, y) ::= "(, )" main() ::=...
Fixes #320. This PR basically tries to enforce the same rule as `rot_map` for `zip_map`, where only anonymous subtemplates get `i0` and `i` automatically added to the list of parameters.