qxLib
Functions
transform.inl File Reference

Go to the source code of this file.

Functions

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...
 

Detailed Description

Author
Khrapov
Date
1.10.2023

Definition in file transform.inl.

Function Documentation

◆ 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;
}
// vs
{
return qx::transform_return<std::vector>(
numbers,
[](int nNumber)
{
return qx::string::static_from(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.