Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 1.9 KB

File metadata and controls

17 lines (11 loc) · 1.9 KB

获取元组长度 简单 #tuple

by sinoon @sinoon

接受挑战    English 日本語 한국어

欢迎 PR 改进翻译质量。

创建一个通用的Length,接受一个readonly的数组,返回这个数组的长度。

例如:

type tesla = ['tesla', 'model 3', 'model X', 'model Y']
type spaceX = ['FALCON 9', 'FALCON HEAVY', 'DRAGON', 'STARSHIP', 'HUMAN SPACEFLIGHT']

type teslaLength = Length<tesla> // expected 4
type spaceXLength = Length<spaceX> // expected 5

返回首页 分享你的解答 查看解答