OmniSciDB  72c90bc290
 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 2675 of file Analyzer.h.

Constructor & Destructor Documentation

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

Definition at line 2676 of file Analyzer.h.

Analyzer::OrderEntry::~OrderEntry ( )
inline

Definition at line 2677 of file Analyzer.h.

2677 {}

Member Function Documentation

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

Definition at line 2679 of file Analyzer.h.

References toString().

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

+ Here is the call graph for this function:

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

Definition at line 3233 of file Analyzer.cpp.

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

Referenced by print().

3233  {
3234  std::string str{std::to_string(tle_no)};
3235  if (is_desc) {
3236  str += " desc";
3237  }
3238  if (nulls_first) {
3239  str += " nulls first";
3240  }
3241  str += " ";
3242  return str;
3243 }
int tle_no
Definition: Analyzer.h:2680
std::string to_string(char const *&&v)
bool nulls_first
Definition: Analyzer.h:2682
bool is_desc
Definition: Analyzer.h:2681

+ 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 2681 of file Analyzer.h.

Referenced by toString().

bool Analyzer::OrderEntry::nulls_first

Definition at line 2682 of file Analyzer.h.

Referenced by toString().


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