absl::operator<=

Returns whether lhs orders lexicographically before or equal to rhs.

Synopsis

Declared in <absl/container/fixed_array.h>

bool
operator<=(
    FixedArray const& lhs,
    FixedArray const& rhs);

Return Value

true if lhs is not lexicographically greater than rhs.

Parameters

NameDescription
lhsThe left-hand fixed array.
rhsThe right-hand fixed array.