long_int_ge_op< C > Struct Template Reference

#include <int.hpp>

List of all members.

Public Types

Static Public Member Functions


Detailed Description

template<typename C>
struct mmx::long_int_ge_op< C >

Definition at line 442 of file int.hpp.


Member Typedef Documentation

typedef unsigned_of_helper<C>::type uC

Definition at line 443 of file int.hpp.


Member Function Documentation

static bool op ( const uC s1,
const uC s0,
const uC t1,
const uC t0 
) [inline, static]

s1 R + s0 >= t1 R + t0.

Definition at line 447 of file int.hpp.

00447                                                               {
00448     if (s1 > t1) return true;
00449     if (s1 < t1) return false;
00450     return s0 >= t0;
00451   }


The documentation for this struct was generated from the following file:

Generated on 6 Dec 2012 for basix by  doxygen 1.6.1