本文整理汇总了TypeScript中@bokehjs/core/util/object.size函数的典型用法代码示例。如果您正苦于以下问题:TypeScript size函数的具体用法?TypeScript size怎么用?TypeScript size使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了size函数的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("can have all_models with cycles", () => {
const d = new Document()
expect(d.roots().length).to.equal(0)
expect(size(d._all_models)).to.equal(0)
const root1 = new SomeModel()
const root2 = new SomeModel()
const child1 = new SomeModel()
root1.child = child1
root2.child = child1
child1.child = root1
d.add_root(root1)
d.add_root(root2)
expect(d.roots().length).to.equal(2)
expect(size(d._all_models)).to.equal(3)
root1.child = null
expect(size(d._all_models)).to.equal(3)
root2.child = null
expect(size(d._all_models)).to.equal(2)
root1.child = child1
expect(size(d._all_models)).to.equal(3)
})