Skip to content

nafisayaz/Xperimental-Library

Repository files navigation

Xperimental-Library

Xperimental Library is a collection of small cross-platform C++ libraries and utilities written in C++17- powerfull and easy to implement. Some of the libraries are datastructures as in C++/stl. Example: std::list . Instead of using heap memory, used shared-memory that enhancing inter-process communications. It's fast and concise, increases industrial productivity.

#include<xperimental/pipe.h++>

 int main(){
   std::vector<int> int_v = { 12, 34, 33, 160, 45 };
   auto filtered_value = xperimental::from(v_int) | xperimental::filter([](auto x){
      return x%3 == 0;
   });

   auto transformed_value = xperimental::from(v_int) | xperimental::filter([](auto x){
               return x%3 == 0;
       }) | xperimental::transform([](auto x){
               return x*100;
   });
     
}

#Documentation

###See Espresso Framework Documentation

###Source - Espresso Framework Source

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published