Lines Matching full:f
36 static char F(FS<U, nullptr> *);
38 static int F(...);
48 static constexpr bool value = sizeof(F<Value>(0)) == 1 && sizeof(G<Value>(0)) == 1;
121 template <typename F, typename L, std::enable_if_t<IsLazyStream<F>::value, int> = 0>
122 auto Transform(F fetcher, L converter) in Transform()
132 template <typename F, typename L, std::enable_if_t<IsLazyStream<F>::value, int> = 0>
133 auto Filter(F fetcher, L filter) in Filter()
145 template <typename F, std::enable_if_t<IsLazyStream<F>::value, int> = 0>
146 auto Enumerate(F fetcher, size_t from = 0)
191 template <typename F, std::enable_if_t<IsLazyStream<F>::value, int> = 0>
192 auto Iterable(F fetcher) in Iterable()
196 explicit SomeClass(F f) : Fetcher_ {f} {}; in Iterable()
199 explicit Iterator(std::optional<F> f) : Fetcher_ {std::move(f)} in Iterable()
224 std::optional<F> Fetcher_; in Iterable()
237 F Fetcher_; in Iterable()