docudb  1.0
Loading...
Searching...
No Matches
docudb::query::logic_or< A, B > Struct Template Reference

Represents a LOGIC OR gate. More...

#include <docudb.hpp>

Inheritance diagram for docudb::query::logic_or< A, B >:
docudb::query::logic_gate< A, B >

Public Member Functions

 logic_or (A &&a, B &&b)
 
- Public Member Functions inherited from docudb::query::logic_gate< A, B >
 logic_gate (A &&a, B &&b, std::string const &gate)
 
std::string to_query_string () const
 
binder const & get_binder () const
 
binderget_binder ()
 

Detailed Description

template<Queryable A, Queryable B>
struct docudb::query::logic_or< A, B >

Represents a LOGIC OR gate.

Definition at line 229 of file docudb.hpp.

Constructor & Destructor Documentation

◆ logic_or()

template<Queryable A, Queryable B>
docudb::query::logic_or< A, B >::logic_or ( A && a,
B && b )
inlineexplicit

Definition at line 232 of file docudb.hpp.

232 : logic_gate<A, B>(std::move(a), std::move(b), "OR")
233 {
234 }
logic_gate(A &&a, B &&b, std::string const &gate)
Definition docudb.hpp:185

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