aboutsummaryrefslogtreecommitdiff
path: root/gen/any.erl
blob: bfca689caa4421024491f3647f62c9d14907f204 (plain)
1
2
3
4
5
6
7
8
9
10
-module(any).
-compile(no_auto_import).

-export([from/1, unsafeCoerce/1]).

from(A) ->
    gleam__stdlib:identity(A).

unsafeCoerce(A) ->
    gleam__stdlib:identity(A).