std::transform container => std::abs(container)



 DEVELOP > c-Plus-Plus > std::transform container => std::abs(container)

LINK TO THIS PAGE  


rating :  0   |  0


  Page 1 of 1

1

 
Topic: DEVELOP > c-Plus-Plus
User: "Steven T. Hatton"
Date: 04 Dec 2004 08:09:42 PM
Object: std::transform container => std::abs(container)
This code works for dividing each element of a boost::array<> by a value of
its element type:

template <typename T, size_t S>
inline boost::array<T, S>& operator/=( boost::array<T, S>& lhs, const T&
rhs ) {
std::transform( lhs.begin()
, lhs.end()
, lhs.begin()
, std::bind2nd( std::divides<T>(), rhs ) );
return lhs;
}
I want to use std::transform in a similar fashion to set each element of a
boost::array<> to the result of applying std::abs() to it.
The result can easily be obtained with this code:
template <typename T, size_t Order_S>
inline boost::array<T, Order_S>& abs( boost::array<T, Order_S>& v ) {
for ( size_t i = 0; i < v.size(); i++ ) {
v[ i ] = std::abs( v[ i ] );
}
return v;
}
I would like to know how to apply a function such as std::abs in a way
similar to the use of std::bind2nd ( std::divides<T>(), rhs ) in the above
example. How can this be done?
--
"If our hypothesis is about anything and not about some one or more
particular things, then our deductions constitute mathematics. Thus
mathematics may be defined as the subject in which we never know what we
are talking about, nor whether what we are saying is true." - Bertrand
Russell
.

User: "Siemel Naran"

Title: Re: std::transform container => std::abs(container) 04 Dec 2004 09:52:08 PM
"Steven T. Hatton" <susudata@setidava.kushan.aa> wrote in message

std::transform( lhs.begin()
, lhs.end()
, lhs.begin()
, std::bind2nd( std::divides<T>(), rhs ) );
I want to use std::transform in a similar fashion to set each element of a
boost::array<> to the result of applying std::abs() to it.

Here is one way
int (*absolute)(int) = &std::abs;
std::transform(lhs.begin()
, lhs.end()
, lhs.begin()
, absolute );
.

User: "Rob Williscroft"

Title: Re: std::transform container => std::abs(container) 05 Dec 2004 12:18:51 AM
Steven T. Hatton wrote in news:AK2dnTrmn5iu8C_cRVn-3w@speakeasy.net in
comp.lang.c++:

This code works for dividing each element of a boost::array<> by a
value of its element type:

template <typename T, size_t S>
inline boost::array<T, S>& operator/=( boost::array<T, S>& lhs,
const T&
rhs ) {
std::transform( lhs.begin()
, lhs.end()
, lhs.begin()
, std::bind2nd( std::divides<T>(), rhs ) );
return lhs;
}

I want to use std::transform in a similar fashion to set each element
of a boost::array<> to the result of applying std::abs() to it.

The result can easily be obtained with this code:

template <typename T, size_t Order_S>
inline boost::array<T, Order_S>& abs( boost::array<T, Order_S>& v
) {
for ( size_t i = 0; i < v.size(); i++ ) {
v[ i ] = std::abs( v[ i ] );
}
return v;
}

I would like to know how to apply a function such as std::abs in a way
similar to the use of std::bind2nd ( std::divides<T>(), rhs ) in the
above example. How can this be done?

Write you're own functor:
template < typename T > struct my_abs
{
typedef T return_type;
T operator () ( T const &arg ) const
{
return std::abs( arg );
/* or even better (ADL friendly version):
*/
using std::abs;
return abs( arg );
}
};
The other alternative is to put a cast into the call to
std::transform:
std::transform(
lhs.begin(), lhs.end(), lhs.begin(),
static_cast< T (*)(T) >( std::abs )
);
The disadvantage here is that for T = short (for example) there
is no overload short std::abs( short ), so the static_cast can't
succeed. Also Argument Dependant Lookup (ADL) can't be used.
Remember to include <cstdlib> and <cmath> so that you get all the
overloads of std::abs, also unless you use an ADL friendly functor
you'll need to include <complex> before calling std::abs if you want
your code to work with std::complex (this also applies valarray).
Rob.
--
http://www.victim-prime.dsl.pipex.com/
.
User: "Siemel Naran"

Title: Re: std::transform container => std::abs(container) 05 Dec 2004 12:46:50 AM
"Rob Williscroft" <rtw@freenet.co.uk> wrote in message

template < typename T > struct my_abs
{
typedef T return_type;

T operator () ( T const &arg ) const
{
return std::abs( arg );

/* or even better (ADL friendly version):
*/
using std::abs;
return abs( arg );
}
};

The standard typedef names are result_type and argument_type. These allow
compatibility with other standard binders in STL and boost like
std::bind2nd.
template < typename T > struct my_abs
{
typedef T argument_type;
typedef T result_type;
T operator () ( T const &arg ) const
{
using std::abs;
return abs( arg );
}
};
My preferred way is to derive from std::unary_function<argument_type,
result_type>.
template < typename T > struct my_abs : std::unary_function<T, T>
{
T operator () ( T const &arg ) const
{
using std::abs;
return abs( arg );
}
};
.
User: "Rob Williscroft"

Title: Re: std::transform container => std::abs(container) 05 Dec 2004 01:10:59 AM
Siemel Naran wrote in
news:u9ysd.1033433$Gx4.375699@bgtnsc04-news.ops.worldnet.att.net in
comp.lang.c++:


The standard typedef names are result_type

Thanks I always get this wrong.

and argument_type.

AIUI (I haven't researched this myself, just going on snippets
from usenet) argument_type isn't needed (used).

These
allow compatibility with other standard binders in STL and boost like
std::bind2nd.

template < typename T > struct my_abs
{
typedef T argument_type;
typedef T result_type;
T operator () ( T const &arg ) const
{
using std::abs;
return abs( arg );
}
};

My preferred way is to derive from std::unary_function<argument_type,
result_type>.

Yep, but that does add an extra byte to the function object in some
cases:
struct my_functor : std::binary_function< int, int, bool >
{
std::less< int > m_less;
// operator here ...
};
The above has 2 subobjects of type std::binary_function< int, int, bool >
so EBO (Empty Base (class) Optimization) can't happen.
I am perhapse being needlessly pedantic (and possibly I'm premeturly
optimizing), OTOH typing "typedef T result_type;" is shorter (and IMO
less cryptic) than writing " : std::unary_function< T, T > ".

If only I could remember result_type not return_type all would be
well :).
Either way I have to lookup result_type or binary_function /
unary_function as I'm actualy not sure the bool return type above
shouldn't be the first argument.
Rob.
--
http://www.victim-prime.dsl.pipex.com/
.




  Page 1 of 1

1

 


Related Articles
 

NEWER

pg.1232     pg.940     pg.716     pg.544     pg.412     pg.311     pg.234     pg.175     pg.130     pg.96     pg.70     pg.50     pg.35     pg.24     pg.16     pg.10     pg.6     pg.3     pg.1

OLDER