WrappedValue

export class WrappedValue

exported from angular2/core defined in angular2/src/core/change_detection/change_detection_util.ts (line 16)

Indicates that the result of a PipeMetadata transformation has changed even though the reference has not changed.

The wrapped value will be unwrapped by change detection, and the unwrapped value will be stored.

Example:

if (this._latestValue === this._latestReturnedValue) { return this._latestReturnedValue; } else { this._latestReturnedValue = this._latestValue; return WrappedValue.wrap(this._latestValue); // this will force update }

Constructor

constructor(wrapped: any)

Not Yet Documented

Members

wrapped : any

Not Yet Documented