%% %CopyrightBegin%
%%
%% SPDX-License-Identifier: Apache-2.0
%%
%% Copyright Ericsson AB 2021-2025. All Rights Reserved.
%%
%% %CopyrightEnd%

[;1m  max(Term1, Term2)[0m

  Returns the largest of [;;4mTerm1[0m and [;;4mTerm2[0m. If the terms compare
  equal with the [;;4m==[0m operator, [;;4mTerm1[0m is returned.

  The Expressions section contains descriptions of the [;;4m==[0m operator
  and how terms are ordered.

  Examples:

    > max(1, 2).
    2

    > max(1.0, 1).
    1.0

    > max(1, 1.0).
    1

    > max("abc", "b").
    "b"

  [;;4mChange[0m

    Allowed in guards tests from Erlang/OTP 26.
