mrdocs::handlebars::helpers::gt_fn

"gt" helper function

Synopsis

Declared in <mrdocs/Handlebars/Helpers/Logical.hpp>

bool
gt_fn(dom::Array const& args);

Description

The "gt" helper returns true if the first argument compares greater than the second, via dom::Value's operator<=>.

Return Value

True if the first value is greater than the second.

Parameters

NameDescription
argsThe two values to compare.