當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript object.merge函數代碼示例

本文整理匯總了TypeScript中core/util/object.merge函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript merge函數的具體用法?TypeScript merge怎麽用?TypeScript merge使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了merge函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: update_through_union

 update_through_union(other: Selection): void {
   this.indices = union(other.indices, this.indices)
   this.selected_glyphs = union(other.selected_glyphs, this.selected_glyphs)
   this.line_indices = union(other.line_indices, this.line_indices)
   if(!this.get_view())
     this.get_view = other.get_view
   this.multiline_indices = merge(other.multiline_indices, this.multiline_indices)
 }
開發者ID:Zyell,項目名稱:bokeh,代碼行數:8,代碼來源:selection.ts

示例2: update_through_intersection

 update_through_intersection(other: Selection): void {
   this.indices = intersection(other.indices, this.indices)
   // TODO: think through and fix any logic below
   this.selected_glyphs = union(other.selected_glyphs, this.selected_glyphs)
   this.line_indices = union(other.line_indices, this.line_indices)
   if(!this.get_view())
     this.get_view = other.get_view
   this.multiline_indices = merge(other.multiline_indices, this.multiline_indices)
 }
開發者ID:Zyell,項目名稱:bokeh,代碼行數:9,代碼來源:selection.ts


注:本文中的core/util/object.merge函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。