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

Represents a LOGIC AND gate. More...

#include <docudb.hpp>

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

Public Member Functions

 logic_and (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_and< A, B >

Represents a LOGIC AND gate.

Definition at line 217 of file docudb.hpp.

Constructor & Destructor Documentation

◆ logic_and()

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

Definition at line 220 of file docudb.hpp.

220 : logic_gate<A, B>(std::move(a), std::move(b), "AND")
221 {
222 }
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: