Reader small image

You're reading from  Soar with Haskell

Product typeBook
Published inDec 2023
Reading LevelBeginner
PublisherPackt
ISBN-139781805128458
Edition1st Edition
Languages
Right arrow
Author (1)
Tom Schrijvers
Tom Schrijvers
author image
Tom Schrijvers

Tom Schrijvers is a professor of computer science at KU Leuven in Belgium since 2014, and previously from 2011 until 2014 at Ghent University in Belgium. He has over 20 years of research experience in programming languages and has co-authored more than 100 scientific papers. Much of his research focuses on functional programming and on the Haskell programming language in particular: he has made many contributions to the language, its ecosystem and applications, and chaired academic events like the Haskell Symposium. At the same time, he has more than a decade of teaching experience (including functional programming with Haskell) and received several teaching awards.
Read more about Tom Schrijvers

Right arrow

Answers

  1. An ad hoc overloaded function (or operator) is similar to a polymorphic function in that it works for different types. Yet, it differs in two ways from a polymorphic function: 1) it does not work for all types, and 2) it has a different implementation per type. Haskell groups ad hoc overloaded functions into type classes, such as Eq with its (==) and (/=) methods. To indicate that a polymorphic function makes use of ad hoc overloaded operations, its type signature lists type class constraints on the type variables. For example, sort :: Ord a => [a] -> [a] lists the Ord a constraint to indicate that it works for all element types that provide total ordering.
  2. You write a type class instance that provides implementations for the methods of the type class. Not all methods need to be implemented, only those that provide a minimal complete definition. For example, only (==) or (/=) needs to be implemented for Eq. An instance is expected to satisfy the laws of the type...
lock icon
The rest of the page is locked
Previous PageNext Chapter
You have been reading a chapter from
Soar with Haskell
Published in: Dec 2023Publisher: PacktISBN-13: 9781805128458

Author (1)

author image
Tom Schrijvers

Tom Schrijvers is a professor of computer science at KU Leuven in Belgium since 2014, and previously from 2011 until 2014 at Ghent University in Belgium. He has over 20 years of research experience in programming languages and has co-authored more than 100 scientific papers. Much of his research focuses on functional programming and on the Haskell programming language in particular: he has made many contributions to the language, its ecosystem and applications, and chaired academic events like the Haskell Symposium. At the same time, he has more than a decade of teaching experience (including functional programming with Haskell) and received several teaching awards.
Read more about Tom Schrijvers