MCPcopy Create free account
hub / github.com/AlexInLog/ReactivePlusPlus / window

Function window

src/rpp/rpp/operators/window.hpp:160–163  ·  view source on GitHub ↗

* @brief Subdivide original observable into sub-observables (window observables) and emit sub-observables of items instead of original items * * @marble window { source observable : +-1-2-3-4-5-| operator "window(2)" : { .+1-2| .....+3-4|

Source from the content-addressed store, hash-verified

158 * @see https://reactivex.io/documentation/operators/window.html
159 */
160 inline auto window(size_t count)
161 {
162 return details::window_t{count};
163 }
164} // namespace rpp::operators

Callers 4

test_window.cppFile · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected