by malibor
Potentially-evaluated expressions
|
|
[19 replies] Last: [quote=malibor] static_assert is a good trick to see if it's evaluate... (by Peter87)
|
by JUANDENT
parsing durations using %q or %Q??
|
|
[5 replies] Last: Maybe something like: #include <chrono> #include <iostream> #includ... (by seeplus)
|
by JUANDENT
parsing a formatted string
|
|
[6 replies] Last: To just obtain a number from std::string, there are the stoxxx functio... (by seeplus)
|
by JUANDENT
I don't understand ISO week
|
|
[1 reply] : [quote=JUANDENT]week 1 starts with Jan 1 for every year... Nope. Eve... (by Peter87)
|
by JUANDENT
now() returns same as current_zone()->to_local(now())
|
|
[1 reply] : A quick search reveals: https://en.cppreference.com/w/cpp/chrono/utc_... (by TheIdeasMan)
|
by malibor
Should destructors be noexcept?
|
|
[13 replies] Last: There is nothing in the C++ standard that demands that this should ge... (by malibor)
|
by shekharsahoo
Need Help to find the error
|
|
[3 replies] Last: Now I understand, the problem. Yes thanks to both of you for the clari... (by shekharsahoo)
|
by JUANDENT
where can I find trim() in std C++?
|
|
[4 replies] Last: Using ranges, then possibly something like this which will trim white-... (by seeplus)
|
by JUANDENT
is this object dangling?
|
|
[1 reply] : it's OK and it is destroyed when assert returns. (by malibor)
|
by LukeProducts
Neuronal Network not working properly..
|
|
[4 replies] Last: You implementation is missing a "Neuron" class, "Layer" class, "Synaps... (by malibor)
|
by JUANDENT
how can a function name be an lvalue?
|
|
[8 replies] Last: [quote=seeplus]In my mind (and the language lawyers will probably squa... (by Peter87)
|
by Cplusc
blockMesh generator
|
|
[10 replies] Last: > Actually this is not a big code at all Big enough for you to dump on... (by salem c)
|
by seeplus
Age calculation
|
|
[1 reply] : We've come up with this: struct Age { unsigned years {}; unsigned... (by seeplus)
|
by Cplusc
Building project from github
|
|
[4 replies] Last: vcpkg is used with Visual Studio. step 1: install all deps with corre... (by malibor)
|
by malibor
Force implicit conversion of a string literal in templated class?
|
|
[3 replies] Last: C++17! https://en.cppreference.com/w/cpp/language/class_template_argu... (by mbozzi)
|
by Cplusc
generate mesh inside .STL file
|
|
[18 replies] Last: I would strongly appreciate any idea on my way of generating mesh insi... (by Cplusc)
|
by seeplus
year_month_day vs sys_days
|
|
[9 replies] Last: [quote=seeplus]When do you get 8 for sys_days? libstdc++ (64-bit) htt... (by Peter87)
|
by seeplus
Chrono date literals
|
|
[4 replies] Last: I get forward thinking & future planning, but c++ has no business stan... (by jonnin)
|
by JUANDENT
How can I find the maximium number of decimal digits representable in a double?
|
|
[3 replies] Last: https://en.cppreference.com/w/cpp/types/numeric_limits/digits10 (by Peter87)
|
by allenmaki
output will show only the end.
|
|
[6 replies] Last: What exactly do you want to know? Let's say your terminal/cmd has 100 ... (by Ganado)
|