basix_doc 0.1
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 409 of file int.hpp.


Member Typedef Documentation

typedef unsigned_of_helper<C>::type uC

Definition at line 410 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 414 of file int.hpp.

                                                              {
    if (s1 > t1) return true;
    if (s1 < t1) return false;
    return s0 >= t0;
  }

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