私はここに来たばかりで、質問があります。TypeScript でジェネリックを使用する利点は何ですか。
TypeScript 0.9 更新に関する msdn: http://blogs.msdn.com/b/typescript/archive/2013/03/25/working-on-typescript-0-9-generics-overload-on-constants-and-compiler -パフォーマンス.aspx
TypeScript 0.8.x:
var myArray : String[];
TypeScript 0.9.x:
var myArray : Array<String>;
型安全性の向上などと関係がありますか?