Constrained genericity: Difference between revisions

From Rosetta Code
Content added Content deleted
m (<lang>)
(added java)
Line 129: Line 129:
eat x = munch x
eat x = munch x
</lang>
</lang>

=={{header|Java}}==
In Java type constraints are made on the type hierarchy, so here we make <code>Eatable</code> an interface, with an <code>eat</code> method. Types which are Eatable would have to implement the <code>Eatable</code> interface and provide an <code>eat</code> method.

<lang java>interface Eatable
{
void eat();
}</lang>

Type constraints in type parameters can be made via the <code>extends</code> keyword, indicating in this case that the type argument must be a type that is a subtype of <code>Eatable</code>.
<lang java>import java.util.List;

class FoodBox<T extends Eatable>
{
public List<T> food;
}</lang>

Similarly a generic method can constrain its type parameters
<lang java>public <T extends Eatable> void foo(T x) { }</lang>

Revision as of 05:24, 15 March 2009

Task
Constrained genericity
You are encouraged to solve this task according to the task description, using any language you may know.

Constrained genericity means that a parametrized type or function (see Parametric Polymorphism) can only be instantiated on types fulfilling some conditions, even if those conditions are not used in that function.

Say a type is called "eatable" if you can call the function eat on it. Write a generic type FoodBox which contains a collection of objects of a type given as parameter, but can only be instantiated on eatable types. The FoodBox shall not use the function eat in any way (i.e. without the explicit restriction, it could be instantiated on any type). The specification of a type being eatable should be as generic as possible in your language (i.e. the restrictions on the implementation of eatable types should be as minimal as possible). Also explain the restrictions, if any, on the implementation of eatable types, and show at least one example of an eatable type.

Ada

Ada allows various constraints to be specified in parameters of a generics. A formal type constrained to be derived from certain base is one of them: <lang ada> with Ada.Containers.Indefinite_Vectors;

package Nutrition is

  type Food is interface;
  procedure Eat (Object : in out Food) is abstract;
  package Food_Boxes is
     new Ada.Containers.Indefinite_Vectors
         (  Index_Type   => Positive,
            Element_Type => Food'Class
         );
  subtype Food_Box is Food_Boxes.Vector;

end Nutrition; </lang> The package Nutrition defines an interface of an eatable object, that is, the procedure Eat. Then a container package is instantiated with the elements to be of the class Food. I.e. the elements can be only the members of the class Food. Example of use: <lang ada> type Banana is new Food with null record; overriding procedure Eat (Object : in out Banana) is null;

type Tomato is new Food with null record; overriding procedure Eat (Object : in out Tomato) is null; </lang> We have declared Banana and Tomato as a Food. <lang ada>

  Lunch_Box : Food_Box;

begin

  Lunch_Box.Append (Banana'(null record));
  Lunch_Box.Append (Banana'(null record));
  Lunch_Box.Append (Tomato'(null record));

</lang> The lunch box contains two banana and one tomato.

C++

The current C++ standard doesn't support constrained genericity (however you can emulate it by having the container refer to the corresponding eat function without actually calling it). The next version will, however, allow it through concepts: <lang cpp>

  1. include <concepts>
  2. include <vector>

auto concept Eatable<typename T> // auto makes it apply automatically {

 void eat(T);

};

template<std::Moveable T>

requires Eatable<T>

class FoodBox { public:

 std::vector<T> food;

}; </lang> The only requirement to implement an Eatable type is, indeed, that a suitable function eat is defined for it (to put it in the FoodBox, in addition it has to be Moveable, since std::vector requires that; but that's ortogonal to the type being Eatable). A possible implementation of an eatable type could be: <lang cpp> class Banana {}; void eat(Banana const &) {} </lang> Even a built-in type can be made eatable by defining a suitable eat function. The following makes double an eatable type: <lang cpp> void eat(double) {} </lang>

Another way to make an existing type eatable is to use a concept map. Let's assume we have an abstract base class Food which looks like this; <lang cpp> class Food { public:

 virtual void munch() = 0;
 virtual ~Food() {}

}; </lang> Then we can make all classes derived from Food eatable using Food::munch() for eat with the following concept map template: <lang cpp> template<std::DerivedFrom<Food> T>

concept_map Eatable<T>

{

 void eat(T const& t) { t->munch(); }

} </lang> The difference to a global function void eat(Food const&) is that the function in the concept map is only visible to functions using that concept, thus reducing namespace polution. Functions directly operating on Food objects can use the interface provided by Food itself, e.g. apple.munch(), or explicitly invoke Eatable<Food>::eat(apple). Of course, concept maps also work with built-in types: <lang cpp> concept_map Eatable<int> {

 void eat(int) {}

} </lang>

Haskell

A type class defines a set of operations that must be implemented by a type: <lang haskell> class Eatable a where

 eat :: a -> String

</lang> We just require that instances of this type class implement a function eat which takes in the type and returns a string (I arbitrarily decided).

The FoodBox type could be implemented as follows: <lang haskell> data (Eatable a) => FoodBox a = F [a] </lang> The stuff before the => specify what type classes the type variable a must belong to.

We can create an instance of Eatable at any time by providing an implementation for the function eat. Here we define a new type Banana, and make it an instance of Eatable. <lang haskell> data Banana = Foo -- the implementation doesn't really matter in this case instance Eatable Banana where

 eat _ = "I'm eating a banana"

</lang> We can declare existing types to be instances in the exact same way. The following makes Double an eatable type: <lang haskell> instance Eatable Double where

 eat d = "I'm eating " ++ show d

</lang>

Another way to make an existing type eatable is to declare all instances of another type class instances of this one. Let's assume we have another type class Food which looks like this; <lang haskell> class Food a where

 munch :: a -> String

</lang> Then we can make all instances of Food eatable using munch for eat with the following instance declaration: <lang haskell> instance (Food a) => Eatable a where

 eat x = munch x

</lang>

Java

In Java type constraints are made on the type hierarchy, so here we make Eatable an interface, with an eat method. Types which are Eatable would have to implement the Eatable interface and provide an eat method.

<lang java>interface Eatable {

   void eat();

}</lang>

Type constraints in type parameters can be made via the extends keyword, indicating in this case that the type argument must be a type that is a subtype of Eatable. <lang java>import java.util.List;

class FoodBox<T extends Eatable> {

   public List<T> food;

}</lang>

Similarly a generic method can constrain its type parameters <lang java>public <T extends Eatable> void foo(T x) { }</lang>