[T; N]
where each array element T
is returned by the cb
call.let array = core::array::from_fn(|i| i);
assert_eq!(array, [0, 1, 2, 3, 4]);
let array: [u32; 5] = core::array::from_fn(|i| i);
tho xdlet array = core::array::from_fn(|i| i);
assert_eq!(array, [0, 1, 2, 3, 4]);
ca31b49
Rename dump_binds
command to binds
, fix typo in description - Robyt3
43fdeb8
Rename tune_dump
to tunes
, improve descriptions - Robyt3
54aff02
Add success/error message to dump_(local|remote)_console
commands - Robyt3
46ec2e0
Print incorrect tuning parameter name on error - Robyt3
e3bb8bc
Allow tune_reset
to reset a single tune - Robyt3
56d6290
Print the actual tuning value after setting it - Robyt3
85a41f4
Allow tune
command to list current tuning parameter value - Robyt3
680abb6
Encapsulate CTuningParams::ms_apNames
with CTuningParams::Name
- Robyt3
f3eb93b
Extend IConsole::PossibleCommands
, add index to callback - Robyt3
047c88d
Refactor console completion input handling according to upstream - Robyt3
6af8f46
Add CTuningParams::PossibleTunings
to find tune params by name - Robyt3
33bb576
Show completion options for tune params in console - Robyt3
e99f7ab
Extract StrCopyUntilSpace
and use existing str_*
functions - Robyt3
f10edfa
Merge #5724 - bors[bot]