Jordan Terrell
Jordan Terrell
I expected that might be a concern. What if the annotations only applied to DomElement? There would be much fewer of those per document and they are the most likely...
Has anyone made progress on this?
I could see the `nom` crate really benefiting from this. Right from the `nom` documentation, this example: ``` named!(hex_primary, map_res!(take_while_m_n!(2, 2, is_hex_digit), from_hex) ); ``` would become a lot easier...
cc @Geal who might find this RFC interesting re: nom
We now have many different ways to represent code as an object model - CodeDom, LINQ Expression Trees, and now Roslyn. Since Roslyn is the most complete of all the...
@tokahuke Unchanged since it was filed. What would help is confirmation on whether this is a bug with this Rust wrapper library, or if it is an issue with the...
I believe addressing this issue is critical before we can label this library `v1.0`. I'm sure there are other similar issues, but this is one of them.
Is this satisfied by #250?
I reread @rrichardson earlier comments and I think this issue is referring to the "pessimistic" version of transactional RocksDB, whereas #250 is adding the "optimistic" version. I think we should...
There are some missing methods in C API to make `TransactionalDB` roughly equivalent `DB` (see facebook/rocksdb#4999). That needs to be resolved before we can land this feature.