Skip to content

Latest commit

 

History

History
273 lines (223 loc) · 12.6 KB

0000-undisambiguated-generics.md

File metadata and controls

273 lines (223 loc) · 12.6 KB
  • Feature Name: undisambiguated_generics
  • Start Date: 2018-09-17
  • RFC PR:
  • Rust Issue:

Summary

Make disambiguating generic arguments in expressions with :: optional, allowing generic arguments to be specified without :: (making the "turbofish" notation no longer necessary). This makes the following valid syntax:

struct Nooper<T>(T);

impl<T> Nooper<T> {
    fn noop<U>(&self, _: U) {}
}

fn id<T>(t: T) -> T {
    t
}

fn main() {
    id<u32>(0u32); // ok
    let _: fn(u8) -> u8 = id<u8>; // ok
    let n = Nooper<&str>(":)"); // ok
    n.noop<()>(()); // ok
}

Motivation

The requirement to write :: before generic arguments in expressions is an unexpected corner case in the language, violating the principle of least surprise. There were historical reasons for its necessity in the past, acting as a disambiguator for other uses of < and > in expressions. However, now the ambiguity between generic arguments and comparison operators has been reduced to two edge cases that are very unlikely to appear in Rust code (and have been demonstrated to occur in none of the existing crates in the Rust ecosystem as of 2018-09-14). Making :: optional in expressions takes a step towards eliminating an oddity in the Rust syntax, making it more uniform and less confusing (e.g. 1, 2, 3, 4, 5) to beginners.

There have been two historical reasons to require :: before generic arguments in expressions.

Syntax ambiguity

Originally, providing generic arguments without :: meant that some expressions were ambiguous in meaning.

// Take the following:
a < b > ( c );
// Is this a generic function call..?
a<b>(c);
// Or a chained comparison?
(a < b) > (c);

However, chained comparisons are now banned in Rust: the previous example results in an error.

a < b > ( c ); // error: chained comparison operators require parentheses

This chained comparison syntax is therefore no longer ambiguous. There are, however, two cases in which the syntax is currently ambiguous.

First:

// The following:
(a < b, c > (d))
// Could be a generic function call...
( a<b, c>(d) )
// Or a pair of comparisons...
(a < b, c > (d))

// This is true with both `<` and `<<`:
(a << B as C > ::D, E < F >> (g))
// Could be a generic function call (with two arguments)...
( a<<B as C>::D, E<F>>(g) )
// Or a pair of bit-shifted comparisons...
(a << B as C > ::D, E < F >> (g))

Second:

// The following:
a < b >> c
// Could be a comparison of a generic expression...
a<b> > c
// Or a bit-shift followed by a comparison...
a < b >> c

Ultimately, these cases do not seem occur naturally in Rust code. A Crater run on over 20,000 crates determined that no crates regress if the ambiguity is resolved in favour of a generic expression rather than tuples of comparisons of this form. However, there are some occurrences of syntax similar to the second ambiguity (1, 2). These ambiguities may always be resolved by adding parentheses if ambiguities are resolved in favour of generic expresions. We propose that resolving this ambiguity in favour of generic expressions to eliminate :: is worth this small alteration to the existing parse.

Performance

Apart from parsing ambiguity, the main concern regarding allowing :: to be omitted was the potential performance implications. Although by the time we reach the closing angle bracket > we know whether we're parsing a comparison or a generic argument list, when we initially encounter <, we are not guaranteed to know which case we're parsing. To solve this problem, we need to first start parsing a generic argument list and then backtrack if this fails (or use a parser that can deal with ambiguous grammars). We generally prefer to avoid backtracking, as it can be slow. However, up until now, the concern with using backtracking for <-disambiguation was purely theoretical, without any empirical testing to validate it.

A recent experiment to allow generic arguments without ::-disambiguation showed no performance regressions using the backtracking technique. This indicates that in existing codebases, allowing :: to be omitted is unlikely to lead to any performance regressions.

Similarly, the performance implications of deleting all occurrences of :: (and simply using generic arguments directly) also showed no performance regressions. This is likely to be due to the relative uncommonness of providing explicit generic arguments and using comparison operators in the cases of ambiguous prefixes, relative to typical codebases.

Guide-level explanation

To explicitly pass generic arguments to a type, value or method, you may write the lifetime, type and const arguments in angle brackets (< and >) directly after the expression. (Note that the "turbofish" notation is no longer necessary.)

struct Nooper<T>(T);

impl<T> Nooper<T> {
    fn noop<U>(&self, _: U) {}
}

fn id<T>(t: T) -> T {
    t
}

fn main() {
    id<u32>(0u32);
    let _: fn(u8) -> u8 = id<u8>;
    let n = Nooper<&str>(":)");
    n.noop<()>(());
}

Reference-level explanation

An initial implementation is present in rust-lang/rust#53578, upon which the implementation may be based. The parser will now attempt to parse generic argument lists without ::, falling back on attempting to parse a comparison if that fails.

The ambiguous case a < b >> c will be warn-by-default linted against (suggesting the form a < (b >> c)). Note that we can restrict this lint to the >> token, so the standard formatting of the generic expression a<b> > c will not be warned against. This syntax was not encountered in the Crater run, so this is a safe change to make.

The feature will initially be gated (e.g. #![feature(undisambiguated_generics)]). However, note that the parser changes will be present regardless of whether the feature is enabled or not, because feature detection occurs after parsing. However, because it has been shown that there are little-to-no performance regressions when modifying the parser and without taking advantage of :: optionality, this should not be a problem.

When undisambiguated_generics is not enabled, the parser modifications will allow us to provide better diagnostics: specifically, we'll be able to correctly suggest (in a machine-applicable manner) using :: whenever the user has actually typed undisambiguated generic arguments. The current diagnostic suggestions suggesting the use of :: trigger whenever there are chained comparisons, which has false positives and does not provide a fix suggestion.

An allow-by-default lint disambiguated_generics will be added to suggest removing :: when the feature is enabled. This is undesirable in most existing codebases, as the number of linted expressions is likely to be large, but could be useful for new codebases and in the future.

Note that, apart from for those users who explicitly increase the level of the lint, no steps are taken to discourage the use of :: at this stage (including in tools, such as rustfmt). (In the future we could consider raising the level to warn-by-default.)

Drawbacks

The primary drawback is that resolving ambiguities in favour of generics means changing the interpretation of the two cases described above. However this has been demonstrated (1) not to cause issues in practice (in the former case particularly the syntax is unnatural and is actively warned against by the compiler).

Additionally, there is potential for performance regressions due to backtracking (this change means that in theory parsing Rust requires unlimited lookahead, because ambiguous sequences of tokens could potentially be unlimited in length). However, empirical evidence (1 and 2) suggests this should not be a problem. Although it is probable that a pathological example could be constructed that does result in poorer performance, such an example would not be representative of typical Rust code and therefore is not helpful to seriously consider.

The other potential drawback is that other parsers for Rust's syntax (for example in external tools) would also have to implement some form of backtracking (or similar) to handle this case. However, backtracking is straightforward to implement in many forms of parser (such as recursive decent or combinatory parsers) and it is likely this will not cause significant problems.

Rationale and alternatives

If we want to allow :: to be omitted, there are two solutions:

  • Backtracking, as suggested here.
  • Using a parser for nondeterministic grammars, such as GLL.

Although using a more sophisticated parser would come with its own advantages, it's an overly complex solution to this particular problem. Backtracking seems to work well in typical codebases and provides an immediate solution to the problem.

Alternatively we could continue to require ::. This would ensure there would be no performance implications, but would leave the nonconformal and surprising syntax in place. We could potentially use backtracking to provide the improved diagnostic suggestions to use ::, while still preventing :: from being omitted.

Future frequency of disambiguated generic expressions

It is likely that, should the generalised type ascription RFC be accepted and implemented, the number of cases where generic type arguments have to be provided is reduced, making users less likely to encounter the :: construction. However, type ascription can still be more verbose than explicitly specifying type arguments when the respective type parameters appear in nested type constructors. For example:

// Given the following...
fn foo<T>() -> Vec<HashSet<T>> { /* ... */ }
// With type ascription we have:
let x = foo(): Vec<HashSet<u8>>;
// Whereas using generic arguments we have:
let x = foo<u8>();

On top of that, the const generics feature, currently in implementation, is conversely likely to increase the number of cases (especially where const generic arguments are not used as parameters in types).

Interaction with future features

Note that this proposal does not conflict with:

  • Intuitive chained comparisons: i.e. a < b < c as being shorthand for a < b && b < c (and similar), should this syntax be proposed in the future.
  • Specifying const generic arguments in expressions without ::, once they have been implemented.

Prior art

Kotlin and C# 7.0 both have similar ambiguities with generic arguments in expressions and choose to resolve this ambiguity in favour of generic arguments, using a similar technique to that proposed here.

Unresolved questions

  • Should we warn against the ambiguous pair case initially? This would be more conservative, but considering that this pattern has not been encountered in the wild, this is probably unnecessary.
  • Should (a < b, c > d) parse as a pair of comparisons? In the aforementioned Crater run, this syntax was resolved as a generic expression followed by d (also causing no regressions), but we could hypothetically parse this unambiguously as a pair (though this would probably require more complex backtracking).