C++ with LINQ
May 18, 2018
Author: Shinji Chikugi
I found an interesting C++ libraly.That is “LINQ for C++”.
What’s “LINQ”?
LINQ (Integrated Language Query) is a function of C#. LINQ issues a query to the container and gets the result.
For details, please refer to MSDN.
https://docs.microsoft.com/en-us/dotnet/csharp/linq/
LINQ for C++
“LINQ for C++” is the libraly enable to use LINQ…