From Jason Turner

[map.access]

Diff to HTML by rtfpessoa

tmp/tmpethwb_vf/{from.md → to.md} RENAMED
@@ -8,11 +8,12 @@ mapped_type& operator[](const key_type& x);
8
 
9
  ``` cpp
10
  mapped_type& operator[](key_type&& x);
11
  ```
12
 
13
- *Effects:* Equivalent to: `return try_emplace(move(x)).first->second;`
 
14
 
15
  ``` cpp
16
  mapped_type& at(const key_type& x);
17
  const mapped_type& at(const key_type& x) const;
18
  ```
 
8
 
9
  ``` cpp
10
  mapped_type& operator[](key_type&& x);
11
  ```
12
 
13
+ *Effects:* Equivalent to:
14
+ `return try_emplace(std::move(x)).first->second;`
15
 
16
  ``` cpp
17
  mapped_type& at(const key_type& x);
18
  const mapped_type& at(const key_type& x) const;
19
  ```