Implementing LINQ’s Enumerable methods in C++ with GCC and CLion for Linux
Hi Community, Today’s post is about my personal implementation of some Enumerable methods available in .NET but written in C++. My implementation is pretty generic, because it uses a template class that returns a std::vector<T> as if it were IEnumerable<T>. C++ has always provided templates to allow developers write generic code; even when they might […]
Continue Reading