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


TypeScript stream.Stream类代码示例

本文整理汇总了TypeScript中mithril/stream.Stream的典型用法代码示例。如果您正苦于以下问题:TypeScript Stream类的具体用法?TypeScript Stream怎么用?TypeScript Stream使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: stream

{
	const s = stream(1);
	const initialValue = s();
	s(2);
	const newValue = s();
	console.assert(initialValue === 1);
	console.assert(newValue === 2);
}

{
	const s = stream();
	console.assert(s() === undefined);
}

{
	const s: Stream<number | undefined> = stream(1);
	s(undefined);
	console.assert(s() === undefined);
}

{
	const s = stream(stream(1));
	console.assert(s()() === 1);
}

{
	const s = stream();
	const doubled = stream.combine(s => s() * 2, [s]);
	s(2);
	console.assert(doubled() === 4);
}
开发者ID:AlexGalays,项目名称:DefinitelyTyped,代码行数:31,代码来源:test-stream.ts

示例2: toJSON

 toJSON() {
   return {
     name: this.name(),
     type: RoleType[this.type()],
     attributes: this.attributes.toJSON()
   };
 }
开发者ID:Skarlso,项目名称:gocd,代码行数:7,代码来源:roles_new.ts

示例3: toJSON

 toJSON() {
   return {
     id: this.id(),
     plugin_id: this.pluginId(),
     properties: this.properties.toJSON()
   };
 }
开发者ID:GaneshSPatil,项目名称:gocd,代码行数:7,代码来源:artifact_stores.ts


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