OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Analyzer::OrderEntry Struct Reference

#include <Analyzer.h>

Public Member Functions

 OrderEntry (int t, bool d, bool nf)
 
 ~OrderEntry ()
 
std::string toString () const
 
void print () const
 

Public Attributes

int tle_no
 
bool is_desc
 
bool nulls_first
 

Detailed Description

Definition at line 2468 of file Analyzer.h.

Constructor & Destructor Documentation

Analyzer::OrderEntry::OrderEntry ( int  t,
bool  d,
bool  nf 
)
inline

Definition at line 2469 of file Analyzer.h.

Analyzer::OrderEntry::~OrderEntry ( )
inline

Definition at line 2470 of file Analyzer.h.

2470 {}

Member Function Documentation

void Analyzer::OrderEntry::print ( ) const
inline

Definition at line 2472 of file Analyzer.h.

References toString().

2472 { std::cout << toString(); }
std::string toString() const
Definition: Analyzer.cpp:3104

+ Here is the call graph for this function:

std::string Analyzer::OrderEntry::toString ( ) const

Definition at line 3104 of file Analyzer.cpp.

References is_desc, nulls_first, tle_no, and to_string().

Referenced by print().

3104  {
3105  std::string str{std::to_string(tle_no)};
3106  if (is_desc) {
3107  str += " desc";
3108  }
3109  if (nulls_first) {
3110  str += " nulls first";
3111  }
3112  str += " ";
3113  return str;
3114 }
int tle_no
Definition: Analyzer.h:2473
std::string to_string(char const *&&v)
bool nulls_first
Definition: Analyzer.h:2475
bool is_desc
Definition: Analyzer.h:2474

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Member Data Documentation

bool Analyzer::OrderEntry::is_desc

Definition at line 2474 of file Analyzer.h.

Referenced by toString().

bool Analyzer::OrderEntry::nulls_first

Definition at line 2475 of file Analyzer.h.

Referenced by toString().


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