#include <MultipleChoiceSelection.h>
 | 
| static bool  | equal (std::string const &a, std::string const &b) | 
|   | Returns whether strings a and b are equal.  More...
  | 
|   | 
| static bool  | less (std::string const &a, std::string const &b) | 
|   | Returns whether a is lexicographically smaller than b.  More...
  | 
|   | 
 | 
| static bool  | cmp_lower (unsigned char a, unsigned char b) | 
|   | 
| static bool  | eq_lower (unsigned char a, unsigned char b) | 
|   | 
Definition at line 35 of file MultipleChoiceSelection.h.
 
  
  
      
        
          | bool util::details::CaseInsensitiveComparer::cmp_lower  | 
          ( | 
          unsigned char  | 
          a,  | 
         
        
           | 
           | 
          unsigned char  | 
          b  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
staticprivate   | 
  
 
 
  
  
      
        
          | bool util::details::CaseInsensitiveComparer::eq_lower  | 
          ( | 
          unsigned char  | 
          a,  | 
         
        
           | 
           | 
          unsigned char  | 
          b  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
staticprivate   | 
  
 
 
  
  
      
        
          | bool util::details::CaseInsensitiveComparer::equal  | 
          ( | 
          std::string const &  | 
          a,  | 
         
        
           | 
           | 
          std::string const &  | 
          b  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
Returns whether strings a and b are equal. 
Definition at line 546 of file MultipleChoiceSelection.h.
static bool eq_lower(unsigned char a, unsigned char b)
 
bool equal(double a, double b)
Comparison tolerance, in centimeters. 
 
 
 
 
  
  
      
        
          | bool util::details::CaseInsensitiveComparer::less  | 
          ( | 
          std::string const &  | 
          a,  | 
         
        
           | 
           | 
          std::string const &  | 
          b  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
static   | 
  
 
Returns whether a is lexicographically smaller than b. 
Definition at line 552 of file MultipleChoiceSelection.h.
  554   return std::lexicographical_compare
 
  555     (
a.begin(), 
a.end(), b.begin(), b.end(), 
cmp_lower);
 
static bool cmp_lower(unsigned char a, unsigned char b)
 
 
 
 
The documentation for this struct was generated from the following file: