Current section

Files

Jump to
gleam_stdlib src gleam function.gleam
Raw

src/gleam/function.gleam

/// Takes a single argument and always returns its input value.
///
pub fn identity(x: a) -> a {
x
}