ZenScript main repository
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Assoc.zs 189B

12345678
  1. export expand <K, V> V[K] {
  2. mapValues<W>(projection as function(value as V) as W) as W[K] {
  3. val result = new W[K];
  4. for k, v in this
  5. result[k] = projection(v);
  6. return result;
  7. }
  8. }