In computer science, polymorphism is a programming language feature that allows values of different data types to be handled using a uniform interface. The concept of parametric polymorphism applies to both data types and functions.

learn more… | top users | synonyms

0
votes
1answer
54 views

Polymorphic function documentation in Google Apps Script

I want my library function to work in two ways, depending on whether the second parameter was provided. For example: function sheet_to_dict(a, b) { var array = ( b ? ...
4
votes
2answers
164 views

Example of “True Polymorphism”? (Preferably, using Haskell) [closed]

I've seen lots of partial definitions of "True Polymorphism", for example here and here but nowhere have I been able to find a clear example of the difference with two concrete examples. I understand ...
2
votes
1answer
36 views

Are lax natural transformations just natural transformations without naturality?

In page 4 of Theorems for free!, Philip Wadler says that parametricity can be expressed in terms of lax natural transformations. Is he referring to the fact that parametrically polymorphic functions ...
16
votes
3answers
311 views

Advanced polymorphism in Java

I have classes in advanced programming at my university and I have a little trouble understanding how this code works. public final class GenericClass<T> { private void ...
6
votes
1answer
118 views

Scala converting recursively bounded type parameter (F-bounded) to type member

How would I convert: trait Foo[A <: Foo[A]] to a type member? I.e., I want something along the lines of the following: trait Foo { type A <: Foo {type A = ???} } but I am having ...
3
votes
2answers
153 views

C programming: void* - Why not parametric polymorphism? [closed]

Why isn't it correct to say that we can implement a parametric polymorphism in C programming with a void*? Professor raised the question and never answered. I believe that a void* is actually ...
2
votes
3answers
121 views

datastructure that holds closures, parametrically in scala

I am implementing a GUI event system in Scala. I have something like: case class EventObject case class KeyEventObject extends EventObject case class MouseEventObject extends EventObject I would ...
1
vote
1answer
261 views

Parametric Polymorphism vs Subtype polymorphism F#

What is the difference (if any) between these two F# type signatures? UseTheStream<'a when 'a :> Stream> : 'a -> unit and UseTheStream : (stream : Stream) -> unit Do they mean the ...
3
votes
2answers
176 views

Scala polymorphic function for filtering an input List of Either

Seeking a more elegant solution I have this piece of code, I just use it in test cases where it isn't necessary to do any error handling. What it does is: take an input list of strings parse them ...
2
votes
2answers
109 views

Passing a polymorphic function as a parameter to another function in C

I am working only in C regarding this issue. I have two function prototypes : int pkg_permserver(const char *service, const char *protocol, int backlog, void (*errlog) (char *msg)) int ...
9
votes
4answers
484 views

Java: Polymorphic Return Type in an Abstract Method?

I have the following code in an abstract java class: protected abstract <E extends HasText & IsWidget> E createNewDisplayWidget(); Which compiles fine. However if I call it anywhere, the ...
16
votes
3answers
654 views

What are type quantifiers?

Many statically typed languages have parametric polymorphism. For example in C# one can define: T Foo<T>(T x){ return x; } In a call site you can do: int y = Foo<int>(3); These types ...
1
vote
1answer
99 views

Sort-parametric wrapper functions

Assuming the use of several built-in and user defined Z3 sorts, e.g. Int, Bool, S1, S2, ..., is there a way of writing a generic sort-wrapping and -unwrapping function that kind of casts from sort A ...
21
votes
2answers
496 views

Use case for rank-3 (or higher) polymorphism?

I've seen a few use cases for rank-2 polymorphism (the most prominent example being the ST monad), but none for a higher rank than that. Does anyone know of such a use case?
7
votes
1answer
155 views

Data.Foldable for unordered containers

I'm working on a Haskell-meets-SQL language for database manipulations, and on a common type class library to go with it, cribbing from Hackage wherever it makes sense. Because a significant ...
0
votes
1answer
279 views

Parametric polymorphism struggles

In addition to implementing a Bag & List for an assignment, the next step is to create an ordered version. A requirement is to specify the parametric interface OrderedCollection with the correct ...
7
votes
2answers
749 views

How do I get around Go not having parametric polymorphism?

I'm a Go newcomer, but I have read that Go regulars do not miss parametric polymorphism. Every time I try to learn a new language I use the L99 list of problems to get some practice. Even if I try to ...
0
votes
3answers
223 views

Using C++ to make a generic type - a template with shared implementation

As an example, consider a simple data structure like a linked list. In C, it might look like: struct Node { struct Node *next; void *data; }; void *getLastItem(struct Node*); ... I'd like ...
6
votes
3answers
380 views

what are Parametric and Inclusion polymorphism in C++

I am reading some C++ text at the address https://cs.senecac.on.ca/~chris.szalwinski/archives/btp200.082/content/adhoc.html. In the section UNIVERSAL POLYMORPHISM, the author mentioned about ...
3
votes
2answers
126 views

How does List.max<'T> work?

From MSDN docs, the signature of List.max is: List.max : 'T list -> 'T (requires comparison) My questions are: How does compiler statically verify that 'T supports comparison operation? Is ...