Diogo Sousa

Results 46 issues of Diogo Sousa

According to the contribution guidelines old, unmaintained, crates can be added. Also, crates that are not established can be added (e.g. a crate with 500 download is probably no "web...

discussion

This is syntactically supported by rustdoc: https://doc.rust-lang.org/rustdoc/linking-to-items-by-name.html#namespaces-and-disambiguators

enhancement
consolidation
new-feature

Intralinks do not resolve re-exports. This means that if you have ```rust mod foo { pub mod bar { struct Bar {} } } pub use foo::bar; ``` you cannot...

bug
consolidation

There is currently no way to link to `usize` or other primitive types.

enhancement

For instance ```markdown [`foo::Foo`] ```

enhancement
consolidation

Hi, In the "Usage" section of the readme the `HamtMap::remove()` is used as if `self` is passed by reference, but it is actually passed by move. To keep the previous...

The ability to mark files as already reviewed can be very useful, since reviewing is often (almost always?) non-linear. Something that has some sort of nice clear visual indication, like...

In version 0.3 it was possible to have a `assert_eq_size!()` inside a function, and refer to the type parameters of that function. In version 1.0.0 that is no longer possible:...

**Monadless Version**: 0.0.13 **Scala-Logging Version**: 3.9.0 There seems to be a problem when using monadless and [scala-logging](https://github.com/lightbend/scala-logging). If you try to compile ```scala import cats.effect.IO import com.typesafe.scalalogging.StrictLogging import io.monadless.cats.MonadlessMonad object...

Empty data structures should need no heap allocation. - [ ] `Vector` (See #28) - [ ] `HashTrieMap` See #24 We can test this with https://github.com/Windfisch/rust-assert-no-alloc

performance