Skip to content
/ xlinq Public
forked from Allanxl/xlinq

A simply implementation to support LINQ like operations in C++.

License

Notifications You must be signed in to change notification settings

Qlinzpc/xlinq

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

xlinq

A simply implementation to support LINQ like operations in C++. This library is tested mainly using as an example.

Supported STL Containers:

  • vector
  • list
  • deque
  • map
  • tr1/unordered_map
  • set
  • tr1/unordered_set Note: If it is compiled by C++ 11, <forward_list>, <unordered_map> and <unordered_set> can also be supported.

Limitation:

  • I am not guarantee all features work on others. For example, Sum() for unordered_set may be a problem because pair<TKey, TValue> may not define operator +().

Check src/main.cpp for examples. Enjoy it!

About

A simply implementation to support LINQ like operations in C++.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%