Updated meeting notes from later conversation

This commit is contained in:
Joseph Musser 2023-05-27 16:32:15 -04:00 коммит произвёл GitHub
Родитель d16fdec5b4
Коммит 854a560d21
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -32,7 +32,7 @@ The compiler should prefer calling `AddRange(ReadOnlySpan<T>)` if such a method
The ideal API for constructing collections with contiguous backing storage is to pass the capacity and receive a span to the backing storage. The collection could be passed back using an `out` parameter to enable overloading on collection type.
The type parameter to use when calling the creation method could be taken from the generic type argument of the collection's `IEnumerable<>` implementation. This strategy would not work for collections which implement `IEnumerable<>` more than once.
The type parameter to use when calling the creation method could be the iteration type of the collection being constructed.
```cs
[CollectionLiteralBuilder(