Explore >> Select a destination


You are here

ostash.dev
| | codewithstyle.info
4.8 parsecs away

Travel
| | In previous posts we've discussed how to deal with arrays in a functional way. We've learned about an important concept in Functional Programming: hig
| | www.helmutgranda.com
4.2 parsecs away

Travel
| | [AI summary] The article explains how to use the Spread Operator in JavaScript for array and object manipulation, including copying arrays, concatenating arrays, passing arguments, and merging objects.
| | mariusschulz.com
3.7 parsecs away

Travel
| | TypeScript 3.4 added a bit of syntactic sugar to the language that makes it easier to work with read-only array and tuple types.
| | rodusek.com
25.4 parsecs away

Travel
| Getting the name of a type in C++ is a hassle. For something that should be trivially known by the compiler at compile-time, the closest thing we have to getting the type in a cross-platform way is to use std::type_info::name which is neither at compile-time, nor is it guaranteed to be human-readable. In fact, both GCC and Clang actually return the compiler's mangled name rather than the human-readable name we are used to. Let's try to make something better using the modern utilities from c++17 and a little creative problem solving!