-
At least one iana-interface-types entry needed: ethernetPon to designate EPON-type interfaces, which have specific set of objects associated with MPCP operation
Also, ethernetEfm (EFM = Ethernet in t…
-
Related: #706, #829
## General roadmap
- [x] for `FnArg`
already implemented in #828, #937
```rust
fn f(a: T) {
let b = a.clo~
}
```
- [x] for struct member
implemented in #948 , #975
…
-
[Given an incorrect order of associated types](https://play.rust-lang.org/?gist=c8c0e4db2b08eba0281157ef683278c3&version=stable&mode=debug):
```
type Bar = Foo;
struct Foo {
a: A,
b: …
-
### Feature Name
Use new generics notation
### Description
It would be nice if DocC had the ability to rewrite function signatures using the new generics notation. Package developers who need to su…
karwa updated
10 months ago
-
This is a tracking issue for complex generic expressions in constants which is still highly experimental.
The feature gate for the issue is `#![feature(generic_const_exprs)]`.
On stable all const gen…
-
There are some additional auto-conversions to consider:
- [x] Add support for indexed properties
- [x] Iterators/IEnumerable/IEnumerator
- [x] Compiler created iterators coming from functions…
-
The try_collect method in itertools is shadowing the method of the same name in std::iter on nightly :
https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.try_collect
https://play.rust-l…
-
One of the ways we can save people time in entering tasks is to guess at the task type. Eventually it would be great if this was more flexible, but for now a basic list of types, and words that are as…
-
### Page URL
https://dart.dev/language/generics.html
### Page source
https://github.com/dart-lang/site-www/tree/main/src/language/generics.md
### Describe the problem
The "Note" under h…
-
I tried this code:
```rust
#![feature(generic_associated_types)]
use std::marker;
trait Trait {
type Gat = &'this mut T where Self: 'this;
fn function(self, _: F)
where
…