Let's Make a Generic Inference Algorithm

Rate this content
Bookmark

How does generic inference in TypeScript work? For most people, this can seem like a black box. TypeScript's developer lead, Ryan Cavanaugh, walks us from a simple single-step generic inference algorithm up to a simplified model of how generic inference in TypeScript actually works, with a focus on motivating examples.

This talk has been presented at TypeScript Congress 2023, check out the latest edition of this Tech Conference.

FAQ

The speaker is Ryan Kavanaugh, the dev lead for the TypeScript compiler team at Microsoft.

The main goal is to provide a high-level overview of how TypeScript's generic inference process works, using example-driven explanations.

Examples are used because they help illustrate why things work the way they do, discuss other possible options, and explain the tradeoffs involved in different decisions.

TypeScript tries to infer the type arguments based on the values passed to the function parameters.

The options mentioned are 'any', 'unknown', 'number', and the literal type 42 (though literals are not considered for simplicity in this talk).

Generics should mimic what would happen if you had inlined the call to the function, meaning replacing the call with the function body.

TypeScript looks for the best common supertype among the candidates, which is the type that contains all other candidate types.

Variance helps determine whether a type parameter appears in an input (contravariant) or output (covariant) position, affecting how candidates are collected and prioritized.

Context sensitivity refers to whether an expression's type can be determined by its surrounding context. Non-context sensitive expressions are processed first to infer types for context-sensitive expressions.

The main takeaway is that correct inference is not enough; the goal is to achieve the best inference by understanding user intent through motivating examples.

Ryan Cavanaugh
Ryan Cavanaugh
25 min
21 Sep, 2023

Comments

Sign in or register to post your comment.

Video Summary and Transcription

Hello, welcome to Let's Make an Inference Algorithm. Today, I'll give you a high-level overview of how TypeScript's generic inference process works. We'll explore different possibilities like 'any,' 'unknown,' or 'number.' The algorithm for inferring type arguments collects candidates and picks the first one, ensuring the best correct answer. The concept of the best common supertype is used to determine the best candidate. Context sensitivity is addressed in the algorithm, allowing for optimal behavior.

1. Introduction to TypeScript's Generic Inference

Short description:

Hello, welcome to Let's Make an Inference Algorithm. I'm Ryan Kavanaugh, the dev lead for the TypeScript compiler team at Microsoft. Today, I'll give you a high-level overview of how TypeScript's generic inference process works. We'll discuss examples, possible options, and tradeoffs. Let's start with an example: F, a function with a type parameter, a regular parameter, and a return type. TypeScript infers the type argument based on the provided value. We'll explore different possibilities like 'any,' 'unknown,' or 'number.'

Hello, welcome to Let's Make an Inference Algorithm. I'm Ryan Kavanaugh. I'm the dev lead for the TypeScript compiler team at Microsoft. My goals today are to show you a high-level overview of how TypeScript's generic inference process works.

People often ask me how this works and I can't give you a complete explanation in 20 minutes, but we can go over a lot of the high-level concepts and explain what the general goals are. This is going to be an example-driven talk because our language is driven by motivating examples that really show why things work the way they do, and we're going to discuss possible other options of how things might work and discuss some of the tradeoffs that you take as you make different decisions along the way.

So let's start with an example. I have F here. It has one type parameter, T, it has a regular parameter, x, of type T, and it returns a T. Whenever TypeScript sees a generic function call, it acts as if you had written a type argument here. You can write type arguments yourself, but you don't have to. And if you don't, we will try to figure out what you want it to go here. In this case, we're going to pass in the value 42 for x, and the question that we need to answer is, like, fill in the blank. What goes there? If we had forced the user to write a type argument in that position, what would they have written? We can start making some guesses about what we might want to do.

One thing you might say is, it's any. If you don't tell us, we're just going to assume any, and then let the chips fall where they may, right? That wouldn't be very good. I think people wouldn't like that. We could say unknown. In this example, unknown is a safe bet, right? 42 is a valid unknown. Whatever f returns is sure to be an unknown. So unknown is a correct inference, and you could make that, and you could make a theoretical argument for unknown. We could say, well, 42 is a primitive. The primitives are number and string and Boolean. So maybe you meant the whole family of primitives when you invoked f here, and maybe that's what you want to happen. Or we might say, no, number. 42 is a number. That's probably what you want for t. We could also talk about the literal type 42. I will be pretending that literal types don't exist for the purpose of this talk, because it complicates things a lot. So a number is as low as it goes right now.

2. Algorithm for Specifying Generic Inference

Short description:

We think that number is the right answer here. It seems like if you called f of t and gave it a number, the most specific value that we can pick is the right one. So what is the algorithm that we would write down if we had to specify how that works?

We think that number is the right answer here. It seems like if you called f of t and gave it a number, the most specific value that we can pick is the right one. So what is the algorithm that we would write down if we had to specify how that works? Well, we would say we're going to look for t and find a place where it occurs in the argument list, in the parameter list in this case. We're going to say, oh, 42 was passed to x, so we found this guy, we found this one, we lined up, we say, yup, that's the t. We'll say 42 is a number, therefore t is a type number, therefore it's as if you had written f of number, therefore x is a number. Cool. Talk's over. Everyone go home.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

React's Most Useful Types
React Day Berlin 2023React Day Berlin 2023
21 min
React's Most Useful Types
Top Content
Watch video: React's Most Useful Types
Today's Talk focuses on React's best types and JSX. It covers the types of JSX and React components, including React.fc and React.reactnode. The discussion also explores JSX intrinsic elements and react.component props, highlighting their differences and use cases. The Talk concludes with insights on using React.componentType and passing components, as well as utilizing the react.element ref type for external libraries like React-Select.
TypeScript and React: Secrets of a Happy Marriage
React Advanced Conference 2022React Advanced Conference 2022
21 min
TypeScript and React: Secrets of a Happy Marriage
Top Content
React and TypeScript have a strong relationship, with TypeScript offering benefits like better type checking and contract enforcement. Failing early and failing hard is important in software development to catch errors and debug effectively. TypeScript provides early detection of errors and ensures data accuracy in components and hooks. It offers superior type safety but can become complex as the codebase grows. Using union types in props can resolve errors and address dependencies. Dynamic communication and type contracts can be achieved through generics. Understanding React's built-in types and hooks like useState and useRef is crucial for leveraging their functionality.
Making Magic: Building a TypeScript-First Framework
TypeScript Congress 2023TypeScript Congress 2023
31 min
Making Magic: Building a TypeScript-First Framework
Top Content
Daniel Rowe discusses building a TypeScript-first framework at TypeScript Congress and shares his involvement in various projects. Nuxt is a progressive framework built on Vue.js, aiming to reduce friction and distraction for developers. It leverages TypeScript for inference and aims to be the source of truth for projects. Nuxt provides type safety and extensibility through integration with TypeScript. Migrating to TypeScript offers long-term maintenance benefits and can uncover hidden bugs. Nuxt focuses on improving existing tools and finds inspiration in frameworks like TRPC.
Stop Writing Your Routes
Vue.js London 2023Vue.js London 2023
30 min
Stop Writing Your Routes
Designing APIs is a challenge, and it's important to consider the language used and different versions of the API. API ergonomics focus on ease of use and trade-offs. Routing is a misunderstood aspect of API design, and file-based routing can simplify it. Unplugging View Router provides typed routes and eliminates the need to pass routes when creating the router. Data loading and handling can be improved with data loaders and predictable routes. Handling protected routes and index and ID files are also discussed.
Faster TypeScript builds with --isolatedDeclarations
TypeScript Congress 2023TypeScript Congress 2023
24 min
Faster TypeScript builds with --isolatedDeclarations
Top Content
This talk discusses the performance issues in TypeScript builds and introduces a new feature called isolated declarations. By running the compiler in parallel and using isolated modules, significant performance gains can be achieved. Isolated declarations improve build speed, compatibility with other tools, and require developers to write types in code. This feature has the potential to further increase performance and may be available in TypeScript soon.
Full-stack & typesafe React (+Native) apps with tRPC.io
React Advanced Conference 2021React Advanced Conference 2021
6 min
Full-stack & typesafe React (+Native) apps with tRPC.io
Top Content
Alex introduces tRPC, a toolkit for making end-to-end type-safe APIs easily, with auto-completion of API endpoints and inferred data from backend to frontend. tRPC works the same way in React Native and can be adopted incrementally. The example showcases backend communication with a database using queries and validators, with types inferred to the frontend and data retrieval done using Prisma ORM.

Workshops on related topic

React, TypeScript, and TDD
React Advanced Conference 2021React Advanced Conference 2021
174 min
React, TypeScript, and TDD
Top Content
Featured WorkshopFree
Paul Everitt
Paul Everitt
ReactJS is wildly popular and thus wildly supported. TypeScript is increasingly popular, and thus increasingly supported.

The two together? Not as much. Given that they both change quickly, it's hard to find accurate learning materials.

React+TypeScript, with JetBrains IDEs? That three-part combination is the topic of this series. We'll show a little about a lot. Meaning, the key steps to getting productive, in the IDE, for React projects using TypeScript. Along the way we'll show test-driven development and emphasize tips-and-tricks in the IDE.
Mastering advanced concepts in TypeScript
React Summit US 2023React Summit US 2023
132 min
Mastering advanced concepts in TypeScript
Top Content
Featured WorkshopFree
Jiri Lojda
Jiri Lojda
TypeScript is not just types and interfaces. Join this workshop to master more advanced features of TypeScript that will make your code bullet-proof. We will cover conditional types and infer notation, template strings and how to map over union types and object/array properties. Each topic will be demonstrated on a sample application that was written with basic types or no types at all and we will together improve the code so you get more familiar with each feature and can bring this new knowledge directly into your projects.
You will learn:- - What are conditional types and infer notation- What are template strings- How to map over union types and object/array properties.
Deep TypeScript Tips & Tricks
Node Congress 2024Node Congress 2024
83 min
Deep TypeScript Tips & Tricks
Top Content
Featured Workshop
Josh Goldberg
Josh Goldberg
TypeScript has a powerful type system with all sorts of fancy features for representing wild and wacky JavaScript states. But the syntax to do so isn't always straightforward, and the error messages aren't always precise in telling you what's wrong. Let's dive into how many of TypeScript's more powerful features really work, what kinds of real-world problems they solve, and how to wrestle the type system into submission so you can write truly excellent TypeScript code.
Best Practices and Advanced TypeScript Tips for React Developers
React Advanced Conference 2022React Advanced Conference 2022
148 min
Best Practices and Advanced TypeScript Tips for React Developers
Top Content
Featured Workshop
Maurice de Beijer
Maurice de Beijer
Are you a React developer trying to get the most benefits from TypeScript? Then this is the workshop for you.In this interactive workshop, we will start at the basics and examine the pros and cons of different ways you can declare React components using TypeScript. After that we will move to more advanced concepts where we will go beyond the strict setting of TypeScript. You will learn when to use types like any, unknown and never. We will explore the use of type predicates, guards and exhaustive checking. You will learn about the built-in mapped types as well as how to create your own new type map utilities. And we will start programming in the TypeScript type system using conditional types and type inferring.
Building Your Own Custom Type System
React Summit 2024React Summit 2024
38 min
Building Your Own Custom Type System
Featured Workshop
Kunal Dubey
Kunal Dubey
I'll introduce the audience to a concept where they can have end-to-end type systems that helps ensure typesafety across the teams Such a system not only improves communication between teams but also helps teams collaborate effectively and ship way faster than they used to before. By having a custom type system, teams can also identify the errors and modify the API contracts on their IDE, which contributes to a better Developer Experience. The workshop would primarily leverage TS to showcase the concept and use tools like OpenAPI to generate the typesystem on the client side. 
Frictionless Development With Unified Type System
JSNation 2024JSNation 2024
113 min
Frictionless Development With Unified Type System
Featured Workshop
Ejiro Asiuwhu
Ejiro Asiuwhu
Imagine developing where frontend and backend sing in harmony, types dance in perfect sync, and errors become a distant memory. That's the magic of TypeScript Nirvana!
Join me on a journey to unveil the secrets of unified type definitions, the key to unlocking frictionless development. We'll dive into:
- Shared language, shared love: Define types once, share them everywhere. Consistency becomes your BFF, errors your worst nightmare (one you'll rarely see).- Effortless coding: Ditch the manual grind of type checking. TypeScript's got your back, freeing you to focus on building awesomeness.- Maintainability magic: With crystal-clear types guiding your code, maintaining it becomes a walk in the park. More time innovating, less time debugging.- Security fortress: TypeScript's type system shields your app from common vulnerabilities, making it a fortress against security threats.