Remove c
article thumbnail

Trip report: Autumn ISO C++ standards meeting (Kona, HI, USA)

Sutter's Mill

Today, the ISO C++ committee completed its second meeting of C++26, held in Kona, HI, USA. Our hosts, Standard C++ Foundation and WorldQuant, arranged for high-quality facilities for our six-day meeting from Monday through Saturday. This time, the committee adopted the next set of features for C++26.

C++ 130
article thumbnail

What is Azure Functions?

Dynatrace

Similar to AWS Lambda , Azure Functions is a serverless compute service by Microsoft that can run code in response to predetermined events or conditions (triggers), such as an order arriving on an IoT system, or a specific queue receiving a new message. Dynatrace news. What is Azure Functions? Making the best use of Azure Functions.

Azure 204
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

article thumbnail

C++ and Beyond Session: Lambdas, Lambdas Everywhere

Sutter's Mill

Lambdas, Lambdas Everywhere. We’ll be posting abstracts (summaries) of the C++ and Beyond 2010 sessions over the coming days over at the C&B site. Below is the first, for my talk on “Lambdas, Lambdas Everywhere.” Here’s the abstract: Why care about C++0x lambda functions?

Lambda 40
article thumbnail

Platform Engineering Teams Done Right…

Adrian Cockcroft

Above that there’s a deployment platform such as Kubernetes or AWS Lambda. If you are running serverless with AWS Lambda, you’ve also bypassed the need for a platform team to run it, the serverless platform takes care of those concerns. The introduction of containers brought everyone a similar but lighter weight mechanism.

article thumbnail

cppfront: Midsummer update

Sutter's Mill

Safety and simplicity are the two core things I want to try to dramatically improve in C++, and are why I’m doing my cppfront experiment, so although the above absorbed some time away from cppfront coding it all contributes to the same goal. (If Jul 10, 2024), new things include: Added. Jul 10, 2024), new things include: Added.

C++ 116
article thumbnail

cppfront: Spring update

Sutter's Mill

Simple, mathematically safe, and efficient chained comparisons ( commit ) P0515 “Consistent comparison” (aka “spaceship”) was the first feature derived from this Cpp2 work to be adopted into the ISO Standard for C++, in C++20. Thank you again to everyone who helped land this Cpp2 feature in the ISO C++ Standard.

C++ 97
article thumbnail

GotW #102 Solution: Assertions and “UB” (Difficulty: 7/10)

Sutter's Mill

Briefly, what is the difference among: (a) undefined behavior Undefined behavior is what happens when your program tries to do something whose meaning is not defined at all in the C++ standard language or library (illegal code and/or data). By definition, if a function’s preconditions are violated, then the results are not specified.

C++ 73