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

[;1m  is_type(Term)[0m

  Returns [;;4mtrue[0m if term [;;4mTerm[0m is a type.

[;1mExamples[0m

    1> sofs:is_type(atom).
    true
    2> sofs:is_type([atom]).
    true
    3> sofs:is_type({a,b}).
    true
    4> sofs:is_type(42).
    false
