本文整理匯總了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)
}
示例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)
}