Rezultati pretraživanja
  1. prije 10 sati

    Activity Indicators - Example of a Modern C++ Library a guest post by Pranav Srinivas Kumar

  2. 27. sij
  3. 23. sij

    Have a look at what happened in 2019 in our C++ world! C++ at the end of 2019

  4. 23. sij

    Alright, it's done. We have just published a new update of SeqAn (3.0.1)🎉 See the release announcement for more infos on new features and improvements. Many thanks to all contributors and

  5. 21. sij

    Threading in C++17: Loopers & Dispatchers this is a guest post from

  6. 23. pro 2019.

    After some discussion with on I finally finished a blog post about a collection of corner cases in std::filesystem on , , , found while testing my own implementation:

    Prikaži ovu nit
  7. A while back, I made a modern C++ take on 's tracery tool called tracerz, written with C++17 and contained in a single header file, with one dependency: Maybe somebody will find it useful

    Prikaži ovu nit
  8. 18. stu 2019.

    This week on Fluent C++ we have a guest series written by ! It's about the features of that now has in the standard. Check it out!

  9. 28. lis 2019.

    have a look at our new blog post: Lazy Initialisation in C++

  10. 24. ruj 2019.

    We just switched the code base from to because fear is the mind killer.

  11. 20. kol 2019.

    R3D31: Lots of changes are going into these class just because I decided to use std::string_view instead of std::string. Down there I implemented my own version of trim functions for std::string_views.

    C++ code in qtcreator
  12. 15. kol 2019.

    | Finding the index of a type in a pack or type list | | No recursion, no extra structs. | std::is_same_v can be replaced with builtins on GCC & Clang. |

    template <typename query_t, typename ... pack_t>
constexpr ptrdiff_t find()
{
    ptrdiff_t i = 0;
    return ((std::is_same_v<query_t, pack_t> ? false : ++i) && ...) ? -1 : i;
}

static_assert(find<int, float, double, int, int, long, int>() == 2);
static_assert(find<int, long, double>() == -1);
    Prikaži ovu nit
  13. 25. lip 2019.
  14. 23. lip 2019.

    Does anyone with std::filesystem experience have a suggestion as to the best way to recognize "you can't access that directory" programatically in and more? My knowledge of filesystem is still superficial, so I'm wondering about idiomatic practice here

  15. 12. lip 2019.

    Next week I will be giving a course on C++11/14/17 at in Germany. I have been told that around 200 students have registered to my course. C++ is cool.

  16. 6. svi 2019.

    Didn't know that Visual C++ supports the standard-conforming values of __cplusplus with a special option (only): /Zc:__cplusplus Has value 201703L for C++17 mode as it should be. See for details

  17. 23. tra 2019.

    "C++17 - The Complete Guide" has a new update with - New functions described (try_emplace(), insert_or_assign(), data() for non-const strings) - Several fixes and updates Thank you all so much for the feedback and fixes sent to me.

  18. 17. tra 2019.

    Basic C++17 example of application 'user interface' with std::variant-based state machine originally by and inspired on 's CppCon 2016 talk "Using Types Effectively" (gist).

  19. 2. tra 2019.

    I am trying out something new - this time a C++17 quiz. What is the value of p.x and p.y after a and b get assigned 1 and 2, respectively?

  20. 14. velj 2019.

    Here's a new version of my "Initialisation in C++17" overview table! With the help of , I fixed the subtle errors in the last version, and added a few more footnotes explaining some additional subtleties that I missed before.

Čini se da učitavanje traje već neko vrijeme.

Twitter je možda preopterećen ili ima kratkotrajnih poteškoća u radu. Pokušajte ponovno ili potražite dodatne informacije u odjeljku Status Twittera.