Files
ladybird/AK
Lenny Maiorani be5311be99 Vector: Correctly pass args to insert, insert_before_matching, prepend
Problem:
- Using regular functions rather than function templates results in
  the arguments not being deduced. This then requires the same
  function to be written multiple times and for `move` to be used
  rather than `forward`.

Solution:
- Collapse multiple function overloads to a single function template
  with a deduced argument. This allows the argument to be a forwarding
  reference and bind to either an l-value or r-value and forward the
  value.

Note:
- `append` is not being changed because there are several overloads
  for appending single values and concatenating vectors. This
  conflation needs to be addressed first.
2021-01-31 10:48:12 +01:00
..
2021-01-15 09:44:21 +01:00
2020-12-20 21:13:10 +01:00
2021-01-15 09:42:42 +01:00
2021-01-17 20:30:31 +01:00
2021-01-15 09:44:21 +01:00
2020-11-22 16:07:00 +01:00
2020-10-03 12:36:49 +02:00
2020-10-29 11:52:31 +01:00
2021-01-23 16:46:26 +01:00
2020-11-22 10:54:33 +01:00
2020-10-08 09:59:55 +02:00
2021-01-31 10:48:12 +01:00
2020-10-14 11:29:29 +02:00
2021-01-01 22:59:48 +01:00