|
You are here |
eyakubovich.github.io | ||
| | | | |
www.cppstories.com
|
|
| | | | | Before C++20, gave us a solid foundation for working with clocks, durations, and time points - but it didn't really know anything about the civil calendar. If you needed to represent "March 15", check whether a date is valid, compute "the third Monday of November", or add a few months to a date, you had to rely on custom utilities, std::tm, or external libraries like Howard Hinnant's excellent date. | |
| | | | |
google.github.io
|
|
| | | | | ||
| | | | |
entangledlogs.com
|
|
| | | | | Generic Programming: Generating part of programs Introduction Generic Programming: Programming with generic parameters to avoid unnecessary code duplication and encourage code reuse. Polymorphism is also another technique to solve code reuse Puts implicit constraints on the generic types that are to be fulfilled by concrete types. template T adder(T LHS, T RHS) { return LHS + RHS; } struct Foo { inv Val = 0; } Foo f = adder(Foo{}, Foo{}): In this code snippet, we assume that Foo meets the requirement tha... | |
| | | | |
www.greyblake.com
|
|
| | | A blog about software development. | ||