drop_while.hpp File Reference
#include <atria/xform/transducer_impl.hpp>
#include <atria/xform/state_wrapper.hpp>
#include <atria/xform/skip.hpp>
#include <atria/prelude/constantly.hpp>
#include <atria/estd/functional.hpp>
Go to the source code of this file.
Namespaces | |
atria | |
C++ amazing templates and reusable implementations awesomeness. | |
atria::xform | |
Efficient and flexible C++ implementation of transducers. | |
Typedefs | |
template<typename T > | |
using | drop_while_t = transducer_impl< detail::drop_while_rf_gen, T > |
Functions | |
template<typename PredicateT > | |
auto | drop_while (PredicateT &&n) -> drop_while_t< estd::decay_t< PredicateT > > |
Similar to clojure.core/drop_while$1. More... | |