Explorar el Código

Refresh the ValueStore api description in idioms.md (#4586)

There is no `Set` method, so remove that, and include `AddDefaultValue`
instead.
Dana Jansens hace 1 año
padre
commit
dcfdf12315
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      toolchain/docs/idioms.md

+ 2 - 1
toolchain/docs/idioms.md

@@ -145,7 +145,8 @@ The indices typically use `IdBase`.
 `ValueStore`s APIs follow the shape of simple array access and mutation:
 
 -   `Add` which takes a value and returns the index.
--   `Set` which takes a value and index to modify.
+-   `AddDefaultValue` which adds a default-constructed value and returns the
+    index.
 -   `Get` takes an index and returns a reference to the value (possibly a
     constant reference).
 -   Other vector-like functionality, including `size` or `Reserve`