当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Set.of方法代码示例

本文整理汇总了TypeScript中Immutable.Set.of方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Set.of方法的具体用法?TypeScript Set.of怎么用?TypeScript Set.of使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Immutable.Set的用法示例。


在下文中一共展示了Set.of方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

  it('can compose Immutable::Set initial states', () => {
    const state = compose(Set.of(1, 2, 3), Set.of(4, 5, 6), Set.of());
    expect(Set.isSet(state)).to.be.true;

    const plain = state.toJS();
    expect(plain).not.to.be.null;
    expect(plain).to.deep.equal([1, 2, 3, 4, 5, 6]);
  });
开发者ID:danielfigueiredo,项目名称:ng2-redux-form,代码行数:8,代码来源:compose-reducers.test.ts

示例2: it

  it('expresses value equality with set sequences', () => {
    var s1 = Set.of('A', 'B', 'C');
    expect(s1.equals(null)).toBe(false);

    var s2 = Set.of('C', 'B', 'A');
    expect(s1 === s2).toBe(false);
    expect(is(s1, s2)).toBe(true);
    expect(s1.equals(s2)).toBe(true);

    // Map and Set are not the same (keyed vs unkeyed)
    var v1 = Map({ A: 'A', C: 'C', B: 'B' });
    expect(is(s1, v1)).toBe(false);
  });
开发者ID:Harishs84,项目名称:immutable-js,代码行数:13,代码来源:Set.ts

示例3: it

 it('always returns the same type', () => {
   var a = Set.of(1,2,3);
   var b = List();
   expect(b.concat(a)).not.toBe(a);
   expect(List.isList(b.concat(a))).toBe(true);
   expect(b.concat(a)).is(List.of(1,2,3));
 })
开发者ID:AntanasBarauskas,项目名称:immutable-js,代码行数:7,代码来源:concat.ts

示例4: Set

export const findEntries = (context: Context) => {
    const { trace } = context
    let entries = Set() as Set<string>
    let modulesToExplore = Set.of(...trace.keys())

    while (modulesToExplore.size > 0) {
        // pick a node and add it to entries
        const node = modulesToExplore.first()
        modulesToExplore = modulesToExplore.remove(node)
        entries = entries.add(node)

        const removeDepsOf = (dep) => {
            modulesToExplore = modulesToExplore.remove(dep)

            if (trace.has(dep))
                getDependencies(context, dep)
                    .forEach(depToRemove => {
                        if (entries.has(depToRemove)) entries = entries.remove(depToRemove)
                        else if (modulesToExplore.has(depToRemove)) removeDepsOf(depToRemove)
                    })
        }

        removeDepsOf(node)
    }

    return entries.toJS()
        .filter(entry => !entry.includes('jspm_packages'))
}
开发者ID:alexisvincent,项目名称:systemjs-hmr,代码行数:28,代码来源:util.ts

示例5:

 const getData = () : typeof previous => {
   const dataSet = Set.of(...previous.selectedItems);
   if (!args.isSelect) {
     return {
       selectedItems: dataSet.subtract(args.items).toArray()
     }
   }
   else {
     return {
       selectedItems: dataSet.union(args.items).toArray()
     }
   }
 };
开发者ID:,项目名称:,代码行数:13,代码来源:

示例6: steps

 public steps(): Set<this> {
   return Set.of(1, -1).flatMap((z) =>
     this.xy((i) => i + z),
   ).toSet();
 }
开发者ID:wjordan,项目名称:polyomino,代码行数:5,代码来源:Point.ts


注:本文中的Immutable.Set.of方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。