Tags C++ Multiobjective Optimization (MOO) in Lisp and Prolog admin November 22, 2024 Recently I came across a nice article by Jose Crespo, where the author stresses that the future of programming revolves around
Tags C++ std::is_scoped_enum<> admin August 13, 2023 The type trait “std::is_scoped_enum<T>::value” was introduced in C++23 to check whether the type “T” is a scoped enum type. Another
Tags C++ Std::tie admin December 25, 2022 std::tuple is a widely used abstraction in C++ and has been around since C++11. It is a generalization of std::pair.
Tags C++ Why Learn C++ admin November 7, 2022 This is the third and the last article in the series “Why Learn Language-XYZ?”. I talked about Prolog and Lisp
Tags C++ Book Review: Embracing Modern C++ Safely admin September 18, 2022 Title: Embracing Modern C++ Safely Authors: John Laos, Vittorio Romeo, Rostislav Khlebnikov, and Alisdair Meredith Publisher: Pearson Education, Inc. Year:
Tags C++ Using DLL Functions in Rust admin May 4, 2022 When you program in Rust, especially in a non-trivial project, there is a good chance that you will need to
Tags Abstract Class Rust Trait vs. C++ Abstract Class admin April 3, 2022 Traits in Rust are an amazing feature and contribute significantly to the expressive power of the language. For someone coming
Tags C++ First Encounter with the Ring Programming Language admin August 7, 2021 The Ring Programming Language, designed by Mahmoud Fayed, has been around since 2016. I came to know of it quite
Tags .NET Implementing iLexicon using LiteDB admin March 28, 2021 iLexicon is an “intelligent” dictionary that can be used to build Natural Language applications. I have two implementations, one in
Tags Automation Calling C# Methods from LispWorks Lisp – Part 2 admin March 14, 2021 In the last article, I showed how we can invoke C# methods from LispWorks Enterprise Edition, through the COM/Automation interface.