pipe<A> function

A pipe<A>(
  1. A a
)

Returns the input a without making any transformations.

Dart doesn't support function overloading, so different function names are used for a different number of function arguments.

Implementation

A pipe<A>(A a) {
  return a;
}