Tags: #reversing #function
I wanted to take some time to write about dealing with virtual functions in large, ‘enterprisy’ code-bases.
https://alschwalm.com/blog/static/2016/12/17/reversing-c-virtual-functions/
I wanted to take some time to write about dealing with virtual functions in large, ‘enterprisy’ code-bases.
https://alschwalm.com/blog/static/2016/12/17/reversing-c-virtual-functions/
Security Through Obscurity
Reversing C++ Virtual Functions: Part 1
There are a few posts in various parts of the internet discussing reverse engineering C++, and these often address virtual functions to...
Tags: #function #to #function
"Since the advent of C++11 writing more functional code has become easier. Functional programming patterns and ideas are powerful additions to the C++ developer's huge toolbox..."
https://vittorioromeo.info/index/blog/passing_functions_to_functions.html
"Since the advent of C++11 writing more functional code has become easier. Functional programming patterns and ideas are powerful additions to the C++ developer's huge toolbox..."
https://vittorioromeo.info/index/blog/passing_functions_to_functions.html
Tags: #alternative #syntax #function #cpp11 #pros #cons
"C++11 introduced an alternative syntax for writing function declarations. Instead of putting the return type before the name of the function..."
https://blog.petrzemek.net/2017/01/17/pros-and-cons-of-alternative-function-syntax-in-cpp/
"C++11 introduced an alternative syntax for writing function declarations. Instead of putting the return type before the name of the function..."
https://blog.petrzemek.net/2017/01/17/pros-and-cons-of-alternative-function-syntax-in-cpp/
Tags: #implement #function_view
http://foonathan.net/blog/2017/01/20/function-ref-implementation.html
http://foonathan.net/blog/2017/01/20/function-ref-implementation.html
foonathan.net
Implementing function_view is harder than you might think
function_view is a simple type that can refer to any callable without overhead. However, the trivial implementation has issues with temporaries. In this post, we'll implement one that does not have these issues, while still keeping the same convenience. But…
Tags: #fold #function
"With fold expressions you can implement the from Haskell known functions foldl, foldr, foldl1 and foldr1 directly in C++. These four functions successively reduce a list to a single value."
http://www.modernescpp.com/index.php/fold-expressions
"With fold expressions you can implement the from Haskell known functions foldl, foldr, foldl1 and foldr1 directly in C++. These four functions successively reduce a list to a single value."
http://www.modernescpp.com/index.php/fold-expressions
Modernescpp
Fold Expressions - ModernesCpp.com