Lines Matching defs:last
144 iterator_input_adapter(IteratorType first, IteratorType last)
145 : current(std::move(first)), end(std::move(last))
350 static adapter_type create(IteratorType first, IteratorType last)
352 return adapter_type(std::move(first), std::move(last));
374 static adapter_type create(IteratorType first, IteratorType last)
376 return adapter_type(base_adapter_type(std::move(first), std::move(last)));
382 typename iterator_input_adapter_factory<IteratorType>::adapter_type input_adapter(IteratorType first, IteratorType last)
385 return factory_type::create(first, last);
481 span_input_adapter(IteratorType first, IteratorType last)
482 : ia(input_adapter(first, last)) {}