Files
carbon-lang/docs/project
642fcd3b77 Replace keyword is with impls (#2483)
Use the keyword `impls` instead of `is` when writing a `where` constraint that a type variable needs to implement an interface or named constraint.

What was previously (provisionally) written:
```
fn Sort[T:! Container where .ElementType is Ordered](x: T*);
```
will now be written:
```
fn Sort[T:! Container where .ElementType impls Ordered](x: T*);
```

---------

Co-authored-by: Geoff Romer <gromer@google.com>
Co-authored-by: Chandler Carruth <chandlerc@gmail.com>
2023-03-22 21:45:32 -07:00
..
2022-09-21 16:10:36 -07:00
2022-08-09 09:09:33 -07:00
2020-07-20 14:15:04 -07:00

Project

This directory contains project-related documentation for Carbon. Information about how the project works, goals, and community information belong here.