Looking at C++ Core Guidelines as a new C++ Programmer, and seeing this kind of declaration is very weird to me coming from a C# background.
Example taken here.
void use()
{
blink_led(2s);
blink_led(1500ms);
}
Would someone like to explain or give me pointers to understand what's going on?
Thanks!