4

如果您了解 TypeScript,那么您可能知道绝对类型存储库。我想知道是否有类似的东西,但具有 .NET-Like-features 的 .ts-Files?

因此,例如,如果我喜欢 .NET 中的 Queue-Class,并且想知道是否有人在 TypeScript 中进行了实现,我可以在那里查找 - 或者如果我做了一个实现,我会知道在哪里存储它。

我猜大多数 TypeScript 用户都使用 .NET 背景,我认为这是有道理的,我希望有人已经这么想了:)?

干杯!

4

2 回答 2

4

我有一个项目实现了一堆这些通用<T>数据结构:

- Linked List
- Dictionary
- Multi Dictionary
- Binary Search Tree
- Stack
- Queue
- Set
- Bag
- Binary Heap
- Priority Queue

来源:https ://github.com/basarat/typescript-collections

例如一组:

/// <reference path="collections.ts" />
var x = new collections.Set<number>(); 
x.add(123);
x.add(123); // Duplicates not allowed in a set so will get filtered out
// The following will give error due to wrong type: 
// x.add("asdf"); // Can only add numbers since that is the type argument. 

var y = new collections.Set<number>();
y.add(456);
x.union(y);

console.log(x.toString()); // [123,456] 
于 2013-10-31T14:30:47.207 回答
2

我在TypeScript 中为 C# 程序员编写了一个通用列表的示例实现(来自 InfoQ)。

TypeScript 没有自己的框架类库,因此除非 TypeScript 团队有计划开始开发一个,否则社区将需要创建一个。好消息是 TypeScript 具有所需的所有语言功能,并且将其模块化应该是微不足道的,因此您只加载需要使用的 FCL 元素(使用模块加载器)。例如:

import collections = require('fcl/collections');

var customers = new collections.List<Customer>();
于 2013-10-31T11:44:06.843 回答