🍌
C++ Feed
@cpp_aggregator
302
subscribers
218
photos
12.5K
links
Агрегатор всего подряд про C++.
Для связи:
@smertig
Powered by
https://github.com/Smertig/banana
Download Telegram
Join
🍌
C++ Feed
302 subscribers
🍌
C++ Feed
Inside STL: The shared_ptr constructor vs make_shared
Источник:
The Old New Thing
Microsoft News
Inside STL: The shared_ptr constructor vs make_shared
Where to hide the control block.
🍌
C++ Feed
Parameter Passing in Flux versus Ranges
Источник:
tristanbrindle.com
Tristanbrindle
Parameter Passing in Flux versus Ranges
Regular readers of this irregular blog will know that I’m a huge fan of C++20 Ranges and the ‘collection-orientated’ style of code that they allow. For the l...
🍌
C++ Feed
Inside STL: The shared_ptr constructor and enable_shared_from_this
Источник:
The Old New Thing
Microsoft News
Inside STL: The shared_ptr constructor and enable_shared_from_this
Working together through a secret signal.
🍌
C++ Feed
Let's Enumerate the UB -- Shafik Yaghmour
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
How to convert an enum to string in C++
Источник:
Marius Bancila's Blog
Marius Bancila's Blog | About code. Mostly on C++
How to convert an enum to string in C++
Explore different approaches for converting enumerations to strings in C++.
🍌
C++ Feed
PVS-Studio 7.26: running analysis in VS Code and Qt Creator, integration with DefectDojo, and more
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
What it means when you convert between different shared_ptrs
Источник:
The Old New Thing
Microsoft News
What it means when you convert between different shared_ptrs
Changing the pointer while controlling the same object.
🍌
C++ Feed
Soagen
Источник:
CppCast
Cppcast
Episode 367
Mark Gillard joins Timur and guest co-host Jason Turner. Mark talks to us about reflection, SIMD, and his library soagen, a structure-of-arrays generator for C++.
🍌
C++ Feed
С++: стреляем по ногам по-современному
Источник:
Habr
Автор:
Хабр
С++: стреляем по ногам по-современному
Мы все привыкли к старому-доброму С++ вместе с его старыми-добрыми погрешностями и милыми недостатками. Мы с ними как-то сжились, научились игнорировать, а самые умные-даже избегать. Но тяжелая...
🍌
C++ Feed
[Перевод] Как я вошёл в клуб бага 323
Источник:
Habr
Автор:
Хабр
Как я вошёл в клуб бага 323
Это история о баге, который бы заставил вас рвать на себе волосы. Из-за такого бага вы можете подумать: «Но это невозможно, должно быть, компилятор сломался, других вариантов нет!» А баг компилятора —...
💩
1
🍌
C++ Feed
Первые новинки C++26: итоги летней встречи ISO
Источник:
Habr
Автор:
Хабр
Первые новинки C++26: итоги летней встречи ISO
На недавней встрече комитет C++ активно взялся за C++26. Уже есть первые новинки, которые нас будут ждать в готовящемся стандарте C++: улучшенный static_assert , переменная _ , оптимизация и улучшение...
🍌
C++ Feed
Подводные камни C++. Решаем загадки неопределённого поведения, ч. 2
Источник:
Habr
Автор:
Хабр
Подводные камни C++. Решаем загадки неопределённого поведения, ч. 2
Мы продолжаем цикл статей, посвящённых теме undefined behavior. Ранее мы исследовали предпосылки неопределённого поведения в C++, предоставили формальные определения и рассмотрели несколько примеров....
🍌
C++ Feed
[Перевод] Недостатки корутин в C++
Источник:
Habr
Автор:
Хабр
Недостатки корутин в C++
Эта статья написана с целью подчеркнуть некоторые риски, связанные с переносом базы кода на использование корутин. Я считаю, что продолжающееся неграмотное использование этой функциональности может...
🍌
C++ Feed
Phantom and indulgent shared pointers
Источник:
The Old New Thing
Microsoft News
Phantom and indulgent shared pointers
The phantom controls something yet holds nothing. The indulgent holds something but controls nothing.
🍌
C++ Feed
My Qt World Summit keynote
Источник:
Kate Gregory's Blog - C++
🍌
C++ Feed
Introduction to Programming with C++ For Engineers, Book Review -- Bartlomiej Filipek
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
San Diego C++ Meetup #53 – notes
Источник:
Vorbrodt's C++ Blog
Vorbrodt's C++ Blog
San Diego C++ Meetup #53 – notes
Hello all! We had a great night on Tuesday August 15. The San Diego C++ meetup #53 took place. Here is the recording San Diego C++ Meetup #53 recording Here is a short summary of the topics and dis…
🍌
C++ Feed
My involvement with LLVM 17
Источник:
MaskRay
MaskRay
My involvement with LLVM 17
LLVM 17 will soon be relased. This post provides a summary of my contributions in this release cycle to record my learning progress.
🍌
C++ Feed
Муравьиный алгоритм | Задача коммивояжёра
Источник:
Habr
Автор:
Хабр
Муравьиный алгоритм | Задача коммивояжёра
Всем привет! Меня зовут Нурислам aka tonitaga, данная статья является продолжением статьи Базовые алгоритмы на графах . Задача коммивояжёра — это классическая комбинаторная задача, в которой...
🍌
C++ Feed
How to Use Monadic Operations for `std::optional` in C++23
Источник:
C++ Stories
C++ Stories
How to Use Monadic Operations for `std::optional` in C++23
In this post we’ll have a look at new operations added to std::optional in C++23. These operations, inspired by functional programming concepts, offer a more concise and expressive way to work with optional values, reducing boilerplate and improving code…