dquery.query

Members

Structs

DQuery
struct DQuery(QueryType, QueryElements...)

Templates

all
template all(alias Pred)

Tests if all elements in a query satisfy a predicate template or function.

any
template any(alias Pred)

Tests if any elements in a query statisfy a template predicate or function.

each
template each(alias Pred)

Iterates over elements in a query using a unary template or function.

filter
template filter(alias Pred)

Applies a filter transformation to a query using a unary template or function.

map
template map(alias Pred)

Applies a map transformation to a query using a unary template or function.

Meta