idSecond<A, B> function

B idSecond<A, B>(
  1. A a,
  2. B b
)

Returns the second argument from passed two.

Implementation

B idSecond<A, B>(A a, B b) => b;