overloading and subtyping liam o connor
play

Overloading and Subtyping Liam OConnor CSE, UNSW (and data61) Term - PowerPoint PPT Presentation

Overloading Subtyping Overloading and Subtyping Liam OConnor CSE, UNSW (and data61) Term 3 2019 1 Overloading Subtyping Motivation Suppose we added Float to MinHS. Ideally, the same functions should be able to work on both Int and Float


  1. Overloading Subtyping Overloading and Subtyping Liam O’Connor CSE, UNSW (and data61) Term 3 2019 1

  2. Overloading Subtyping Motivation Suppose we added Float to MinHS. Ideally, the same functions should be able to work on both Int and Float . 4 + 6 :: Int 4 . 3 + 5 . 1 :: Float Similarly, a numeric literal should take on whatever type is inferred from context. (5 :: Int ) mod 3 sin (5 :: Float ) 2

  3. Overloading Subtyping Without Overloading We effectively have two functions: (+ Int ) :: Int → Int → Int (+ Float ) :: Float → Float → Float 3

  4. Overloading Subtyping Without Overloading We effectively have two functions: (+ Int ) :: Int → Int → Int (+ Float ) :: Float → Float → Float We would like to refer to both of these functions by the same name and have the specific implementation chosen based on the type. 4

  5. Overloading Subtyping Without Overloading We effectively have two functions: (+ Int ) :: Int → Int → Int (+ Float ) :: Float → Float → Float We would like to refer to both of these functions by the same name and have the specific implementation chosen based on the type. Such type-directed name resolution is called ad-hoc polymorphism or overloading . 5

  6. Overloading Subtyping Type Classes Type classes are a common approach to ad-hoc polymorphism, and exist in various languages under different names: Type Classes in Haskell Traits in Rust Implicits in Scala Protocols in Swift Contracts in Go 2 Concepts in C++ Other languages approximate with subtype polymorphism (coming) 6

  7. Overloading Subtyping Type Classes A type class is a set of types for which implementations ( instances ) have been provided for various functions, called methods 1 . 1 Nothing to do with OO methods. 7

  8. Overloading Subtyping Type Classes A type class is a set of types for which implementations ( instances ) have been provided for various functions, called methods 1 . Example (Numeric Types) In Haskell, the types Int , Float , Double etc. are all instances of the type class Num , which has methods such as (+), negate , etc. 1 Nothing to do with OO methods. 8

  9. Overloading Subtyping Type Classes A type class is a set of types for which implementations ( instances ) have been provided for various functions, called methods 1 . Example (Numeric Types) In Haskell, the types Int , Float , Double etc. are all instances of the type class Num , which has methods such as (+), negate , etc. Example (Equality) In Haskell, the Eq type class contains methods ( == ) and ( /= ) for computable equality. What types cannot be an instance of Eq ? 1 Nothing to do with OO methods. 9

  10. Overloading Subtyping Notation We write: f :: ∀ a . P ⇒ τ To indicate that f has the type τ where a can be instantiated to any type under the condition that the constraint P is satisfied. Typically, P is a list of instance constraints , such as Num a or Eq b . 10

  11. Overloading Subtyping Notation We write: f :: ∀ a . P ⇒ τ To indicate that f has the type τ where a can be instantiated to any type under the condition that the constraint P is satisfied. Typically, P is a list of instance constraints , such as Num a or Eq b . Example (+) :: ∀ a . ( Num a ) ⇒ a → a → a ( == ) :: ∀ a . ( Eq a ) ⇒ a → a → Bool Is (1 :: Int ) + 4 . 4 a well-typed expression? 11

  12. Overloading Subtyping Notation We write: f :: ∀ a . P ⇒ τ To indicate that f has the type τ where a can be instantiated to any type under the condition that the constraint P is satisfied. Typically, P is a list of instance constraints , such as Num a or Eq b . Example (+) :: ∀ a . ( Num a ) ⇒ a → a → a ( == ) :: ∀ a . ( Eq a ) ⇒ a → a → Bool Is (1 :: Int ) + 4 . 4 a well-typed expression? No. The type of (+) requires its arguments to have the same type. 12

  13. Overloading Subtyping Extending MinHS Extending implicitly typed MinHS with type classes: Predicates ::= P C τ Polytypes ::= τ | ∀ a . π | P ⇒ π π Monotypes ::= Int | Bool | τ + τ | · · · τ Class names C 13

  14. Overloading Subtyping Extending MinHS Extending implicitly typed MinHS with type classes: Predicates ::= P C τ Polytypes ::= τ | ∀ a . π | P ⇒ π π Monotypes ::= Int | Bool | τ + τ | · · · τ Class names C Our typing judgement Γ ⊢ e : π now includes a set of type class axiom schema: A | Γ ⊢ e : π This set contains predicates for all type class instances known to the compiler. 14

  15. Overloading Subtyping Typing Rules The existing rules now just thread A through. 15

  16. Overloading Subtyping Typing Rules The existing rules now just thread A through. In order to use an overloaded type one must first show that the predicate is satisfied by the known axioms: A | Γ ⊢ e : P ⇒ π A � P Inst e : π Right now, A � P iff P ∈ A , but we will complicate this situation later. 16

  17. Overloading Subtyping Typing Rules The existing rules now just thread A through. In order to use an overloaded type one must first show that the predicate is satisfied by the known axioms: A | Γ ⊢ e : P ⇒ π A � P Inst e : π Right now, A � P iff P ∈ A , but we will complicate this situation later. If, adding a predicate to the known axioms, we can conclude a typing judgement, then we can overload the expression with that predicate: P , A | Γ ⊢ e : π A | Γ ⊢ e : P ⇒ π Gen 17

  18. Overloading Subtyping Example Suppose we wanted to show that 3 . 2 + 4 . 4 :: Float . (+) :: ∀ a . ( Num a ) ⇒ a → a → a ∈ Γ. 1 Num Float ∈ A . 2 18

  19. Overloading Subtyping Example Suppose we wanted to show that 3 . 2 + 4 . 4 :: Float . (+) :: ∀ a . ( Num a ) ⇒ a → a → a ∈ Γ. 1 Num Float ∈ A . 2 Using AllE (from previous lecture), we can conclude 3 (+) :: ( Num Float ) ⇒ Float → Float → Float . 19

  20. Overloading Subtyping Example Suppose we wanted to show that 3 . 2 + 4 . 4 :: Float . (+) :: ∀ a . ( Num a ) ⇒ a → a → a ∈ Γ. 1 Num Float ∈ A . 2 Using AllE (from previous lecture), we can conclude 3 (+) :: ( Num Float ) ⇒ Float → Float → Float . 2 , we can conclude Using Inst (on previous slide) and 4 (+) :: Float → Float → Float 20

  21. Overloading Subtyping Example Suppose we wanted to show that 3 . 2 + 4 . 4 :: Float . (+) :: ∀ a . ( Num a ) ⇒ a → a → a ∈ Γ. 1 Num Float ∈ A . 2 Using AllE (from previous lecture), we can conclude 3 (+) :: ( Num Float ) ⇒ Float → Float → Float . 2 , we can conclude Using Inst (on previous slide) and 4 (+) :: Float → Float → Float By the function application rule, we can conclude 5 3 . 2 + 4 . 4 :: Float as required. 21

  22. Overloading Subtyping Dictionaries and Resolution This is called ad-hoc polymorphism because the type checker removes it — it is not a fundamental language feature, but merely a naming convenience. The type checker will convert ad-hoc polymorphism to parametric polymorphism. Type classes are converted to types: class Eq a where ( == ) : a → a → Bool ( /= ) : a → a → Bool 22

  23. Overloading Subtyping Dictionaries and Resolution This is called ad-hoc polymorphism because the type checker removes it — it is not a fundamental language feature, but merely a naming convenience. The type checker will convert ad-hoc polymorphism to parametric polymorphism. Type classes are converted to types: class Eq a where ( == ) : a → a → Bool ( /= ) : a → a → Bool becomes type EqDict a = ( a → a → Bool × a → a → Bool ) A dictionary contains all the method implementations of a type class for a specific type. 23

  24. Overloading Subtyping Dictionaries and Resolution Instances become values of the dictionary type: instance Eq Bool where True == True = True = False == False True == = False = not ( a == b ) a /= b 24

  25. Overloading Subtyping Dictionaries and Resolution Instances become values of the dictionary type: instance Eq Bool where True == True = True = False == False True == = False = not ( a == b ) a /= b becomes True == Bool True = True = False == Bool False True == Bool = False = not ( a == Bool b ) a /= Bool b eqBoolDict = (( == Bool ) , ( /= Bool )) 25

  26. Overloading Subtyping Dictionaries and Resolution Programs that rely on overloading now take dictionaries as parameters: same :: ∀ a . ( Eq a ) ⇒ [ a ] → Bool same [] = True same ( x : []) = True same ( x : y : xs ) = x == y ∧ same ( y : xs ) 26

  27. Overloading Subtyping Dictionaries and Resolution Programs that rely on overloading now take dictionaries as parameters: same :: ∀ a . ( Eq a ) ⇒ [ a ] → Bool same [] = True same ( x : []) = True same ( x : y : xs ) = x == y ∧ same ( y : xs ) Becomes: same :: ∀ a . ( EqDict a ) → [ a ] → Bool same eq [] = True same eq ( x : []) = True same eq ( x : y : xs ) = (fst eq ) x y ∧ same eq ( y : xs ) 27

  28. Overloading Subtyping Generative Instances We can make instances also predicated on some constraints: instance ( Eq a ) ⇒ ( Eq [ a ]) where [] [] = == True ( x : xs ) == ( y : ys ) = x == y ∧ ( xs == ys ) = == False a /= b = not ( a == b ) Such instances are transformed into functions: eqList :: EqDict a → EqDict [ a ] Our set of axiom schema A now includes implications, like ( Eq a ) ⇒ ( Eq [ a ]). This makes the relation A � P much more complex to solve. 28

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend