We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Polymorphism is often associated with ObjectOrientedProgramming, but Functions and Procedures can implement polymorphic interfaces too, e.g.
[1,2,3].map(double) // => [2, 4, 6]
Here, double implements the role expected by map: a pure function of one argument.
double
map