-
Introduce support for specialization between impls. Probably best to try and implement the current RFC before considering variations.
-
auto-reduced (treereduce-rust):
````rust
#![feature(specialization)]
trait Spec {
type Assoc;
}
default impl Spec for T
where
T: IntoIterator,
{
type Assoc = U;
}
impl Spec for [T; 0]…
-
The code
```c++
#include
#include
#include
struct SomeDescription {
unsigned size;
};
struct MOType {
const SomeDescription description;
MOType(const MOType &) = delete;
…
-
I have followed steps from README:
* Step 1: Add a package dependency to Package.swift
* Step 2: Add benchmark exectuable targets using benchmark init
Then I try running newly created benchmark…
-
This bug exists in all released clang versions with C++20 support up to trunk.
The following code defined classes `Publ`/`Priv`/`Prot` with different visibility of member `x`, and inherit into a te…
-
We (Baron_Minedox and I) were wondering what kind of (interactive) buildings we are going to need, and if so, what buildings always should be presented in a village, city and stuff. I suggest that we'…
-
# Proposal
Implement `AsRef` for all of the Standard Library's types (or at least for primitives)
## Problem statement
`AsRef` cannot be reflexive, so we don't get `AsRef for T` for free.
A lot of tim…
-
##### Brief Description
How can I get function templates specializations (similar to class templates specializations)?
I am using the following code:
foreach (var template in so…
-
Currently, DXIL bytecode is emitted by the compiler for every shader permutation in a process typically managed by the user. These permutations are generally controlled via pound-defs specified as arg…
-
Might be nice if the package.json file is more customized with the information the user provides.
i'd propose an extra prompt be added (for the description of the project). the the package.json fil…