[Typescript] Extract & Exclude

Extract is useful for obtaining some sub-part of a type that is assignable to some other type.

type FavoriteColors =
  | "dark sienna"
  | "van dyke brown"
  | "yellow ochre"
  | "sap green"
  | "titanium white"
  | "phthalo green"
  | "prussian blue"
  | "cadium yellow"
  | [number, number, number]
  | { red: number; green: number; blue: number }

type StringColors = Extract<FavoriteColors, string> // "dark sienna" | "van dyke brown" | "yellow ochre" | "sap green" | "titanium white" | "phthalo green" | "prussian blue" | "cadium yellow"
type StringColorsEndsWithA = Extract<FavoriteColors, `${string}a`> // "dark sienna"
type ObjectColors = Extract<FavoriteColors, { red: number }> // { red: number; green: number; blue: number; }
type TupleColors = Extract<FavoriteColors, [number, number, number]> // [number, number, number]
type SingleNumberArray = Extract<FavoriteColors, [number]> // never
type AnyNumberArray = Extract<FavoriteColors, number[]> // [number, number, number]

 

Exclude is the opposite of Extract, in that it’s useful for obtaining the part of a type that’s not assignable to some other type

type FavoriteColors =
  | "dark sienna"
  | "van dyke brown"
  | "yellow ochre"
  | "sap green"
  | "titanium white"
  | "phthalo green"
  | "prussian blue"
  | "cadium yellow"
  | [number, number, number]
  | { red: number; green: number; blue: number }
 
type NonStringColors = Exclude<FavoriteColors, string>
/*
[number, number, number] | {
    red: number;
    green: number;
    blue: number;
}
*/

 

Here’s the complete source code for these types:

/**
 * Exclude from T those types that are assignable to U
 */
type Exclude<T, U> = T extends U ? never : T
/**
 * Extract from T those types that are assignable to U
 */
type Extract<T, U> = T extends U ? T : never

 

posted @   Zhentiw  阅读(79)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2021-08-15 [SAA + SAP] 24. Extra storage
2021-08-15 [SAA + SAP] 26. VPC - 2
2021-08-15 [SAA + SAP] 25. VPC - 1
2020-08-15 [Linear Algebra] Matrix Vector Multiplication
2020-08-15 [Linear Algebra] Matrices and Vectors
2019-08-15 [GraphQL] Automatically poll data from GraphQL API with Apollo Client useQuery hook
2019-08-15 [GraphQL] Fetch data with Apollo GraphQL useQuery hook
点击右上角即可分享
微信分享提示