summaryrefslogtreecommitdiff
path: root/Ix/CPP
AgeCommit message (Collapse)Author
2018-08-06fix #390Yatao Li
2016-11-01ix sum (no-args, projection, with seed)Daniel Leite
2015-12-22* fixed select_many crashAlexey Markov
2015-12-22* fixed a crash with an empty collection in select_many when calling begin()Alexey Markov
2015-12-22 * fixed select_many -> it deleted a collection and acceessed it afterwards ↵Alexey Markov
which leaded to crashes * added to_list and to_set * fixed ::from(Collection& c) compile errors -> it required "using namespace std;" to be able to find begin(c) and end (c)
2015-07-23Update linq_iterators.hppMatt
2015-07-23Update testbench.cppMatt
2015-07-23Update linq.hppMatt
2015-07-23Update linq_cursor.hppMatt
2015-07-23Update linq_select.hppMatt
2015-07-23Update linq_take.hppMatt
2015-07-23Update linq_skip.hppMatt
2015-07-23Update testbench.hppMatt
2015-07-23Update linq_cursor.hppMatt
2015-07-23Update linq_iterators.hppMatt
2015-07-23Update testbench.cppMatt
2015-04-26Including cstddef for ptrdiff_tIgor Mikushkin
2015-04-11Don't return std::move(t); It prevents NRVO and is almost always wrongben
2013-09-27fix bug when using where on an empty collectionKirk Shoop (MS Open Tech)
2013-06-18pushing min/max macrosKirk Shoop
don't need to wrap push_macro/pop_macro in ifdefs because gcc, clang and msvc support them.
2013-06-17clang warningKirk Shoop
2013-03-31adds from_iterableKirk Shoop
from_iterable(r, opt - scheduler) adapts any r that satisfies std::begin(r) and std::end(r) into an Observable<decltype(*begin(r))>
2013-03-13added select_many, traits and ADL chainKirk Shoop
also fix threading bugs and improve operator syntax and fixes for bugs found on windows
2013-03-07add scheduler impl and usageKirk Shoop
added basic schedulers (Immediate, CurrentThread, EventLoop, NewThread) added subscribe_on and observe_on used these in the test and sample code added WindowScheduler
2013-03-07publish Rx CPP a little more formallyKirk Shoop
2013-02-07Restore the intended include dependenciesKirk Shoop
clang commandline: clang++ -stdlib=libc++ -std=c++0x -I<path from root>/Rx/rx/Ix/CPP/src/ SampleCppLinq.cpp
2013-02-07Get the CPP linq sample compiling on clang 4.1 (OSX)Kirk Shoop
2013-01-17New directory structure.Scott Blomquist