-module(gleeps@stdlib@function).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src/gleeps/stdlib/function.gleam").
-export([identity/1]).
-if(?OTP_RELEASE >= 27).
-define(MODULEDOC(Str), -moduledoc(Str)).
-define(DOC(Str), -doc(Str)).
-else.
-define(MODULEDOC(Str), -compile([])).
-define(DOC(Str), -compile([])).
-endif.
-file("src/gleeps/stdlib/function.gleam", 3).
?DOC(" Takes a single argument and always returns its input value.\n").
-spec identity(CLV) -> CLV.
identity(X) ->
X.