`identity` in arrow is a universal polymorphic fun...
# arrow
r
identity
in arrow is a universal polymorphic function for any type that represents no effect:
Copy code
fun <A> A.identity(): A = this
fun <A> identity(a: A): A = a