numerix_doc 0.4
rounded_opposite< V > Struct Template Reference

#include <rounded.hpp>

List of all members.

Static Public Member Functions


Detailed Description

template<typename V>
struct mmx::rounded_opposite< V >

Definition at line 361 of file rounded.hpp.


Member Function Documentation

static C add ( const C x1,
const C x2 
) [inline, static]

Definition at line 362 of file rounded.hpp.

References mmx::C.

                                                      {
    C tmp= -x1; tmp -= x2; return -tmp; }
static C div ( const C x1,
const C x2 
) [inline, static]

Definition at line 368 of file rounded.hpp.

References mmx::C.

                                                      {
    C tmp= -x1; tmp /= x2; return -tmp; }
static C mul ( const C x1,
const C x2 
) [inline, static]

Definition at line 366 of file rounded.hpp.

References mmx::C.

                                                      {
    C tmp= -x1; tmp *= x2; return -tmp; }
static C square ( const C x1) [inline, static]

Definition at line 370 of file rounded.hpp.

References mmx::C.

                                            {
    C tmp= -x1; tmp *= x1; return -tmp; }
static C sub ( const C x1,
const C x2 
) [inline, static]

Definition at line 364 of file rounded.hpp.

References mmx::C.

                                                      {
    C tmp=  x2; tmp -= x1; return -tmp; }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Friends Defines