#include <concepts>
#include <qx/algo/transform.inl>
Go to the source code of this file.
|
template<template< class... > class result_container_t, class input_container_t , class transform_callable_t , class... result_container_rest_t> |
auto | qx::transform_return (input_container_t &&input, const transform_callable_t &transformCallable) |
| std::transform equivalent that makes the code a bit shorter More...
|
|
- Author
- Khrapov
- Date
- 1.10.2023
- Copyright
- © Nick Khrapov, 2023. All right reserved.
Definition in file transform.h.
◆ transform_return()
template<template< class... > class result_container_t, class input_container_t , class transform_callable_t , class... result_container_rest_t>
auto qx::transform_return |
( |
input_container_t && |
input, |
|
|
const transform_callable_t & |
transformCallable |
|
) |
| |
std::transform equivalent that makes the code a bit shorter
std::vector numbers { 1, 2, 3 };
{
std::vector<qx::string> strings;
strings.resize(numbers.size());
std::transform(
numbers.begin(),
numbers.end(),
strings.begin(),
[](int nNumber)
{
return qx::string::static_from(nNumber);
});
return strings;
}
{
return qx::transform_return<std::vector>(
numbers,
[](int nNumber)
{
});
}
static basic_string static_from(const from_t &data)
Construct string from custom type and get it.
- Template Parameters
-
result_container_t | - any container type, that supports iteration and .insert(it, value) |
input_container_t | - any container type, that supports iteration |
transform_callable_t | - callable type, that takes input_container_t's element type, the return value of this callable forms result_container_t's element type |
result_container_rest_t | - any types required for result_container_t after element type |
- Parameters
-
input | - input container, may be moved |
transformCallable | - transformation callable |
- Return values
-
- | container with transformed elements |
Definition at line 38 of file transform.inl.