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


TypeScript Map.get函數代碼示例

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


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

示例1: function

					return function(this: TrackableSubCollection<T, O, U, C>, idOrIds?: string | string[]) {
						if (idOrIds || !instanceStateMap.get(this).isTracking) {
							return observe.call(this, idOrIds);
						}
						else {
							return instanceStateMap.get(this).observable;
						}
					};
開發者ID:maier49,項目名稱:store,代碼行數:8,代碼來源:createTrackableMixin.ts

示例2:

			updateAndAddIds.forEach(function(id, itemIndex) {
				if (newIndex.has(id) && !state.idToIndex.has(id)) {
					if (itemIndex < update.updates.length) {
						trackedUpdates.push(update.updates[itemIndex]);
					}
					else {
						trackedAdds.push(update.adds[itemIndex - update.updates.length]);
					}
					trackedAdds.push();
					const index = newIndex.get(id);
					addedToTracked.push({
						item: newData[index],
						id: id,
						index: index
					});
				}
			});
開發者ID:maier49,項目名稱:store,代碼行數:17,代碼來源:createTrackableMixin.ts

示例3: if

			updateIds.forEach(function(id, updateIndex) {
				if (!newIndex.has(id) && state.idToIndex.has(id)) {
					trackedUpdates.push(update.updates[updateIndex]);
					const index = state.idToIndex.get(id);
					removedFromTracked.push({
						item: update.updates[updateIndex],
						previousIndex: index,
						id: id
					});
				}
				else if (newIndex.has(id) && state.idToIndex.has(id)) {
					trackedUpdates.push(update.updates[updateIndex]);
					const previouxIndex = state.idToIndex.get(id);
					const index = newIndex.get(id);
					movedInTracked.push({
						item: newData[index],
						id: id,
						previousIndex: previouxIndex,
						index: index
					});
				}
			});
開發者ID:maier49,項目名稱:store,代碼行數:22,代碼來源:createTrackableMixin.ts

示例4: get

const idToWidgetMap = new Map<string, TodoItem>();
const widgetToIdMap = new WeakMap<TodoItem, string>();

interface TodoRegistryOptions {
	widgetStore: MemoryStore<Object>;
}

interface TodoRegistry {
	get(id: string): Promise<TodoItem>;
	identify(value: TodoItem): string;
	widgetStore?: MemoryStore<Object>;
}

const todoRegistryFactory = compose({
	get(id: string): Promise<TodoItem> {
		let widget: TodoItem = idToWidgetMap.get(id);
		if (!widget) {
			widget = createTodoItem({id, stateFrom: this.widgetStore});
			widgetToIdMap.set(widget, id);
			idToWidgetMap.set(id, widget);
		}
		return Promise.resolve(widget);
	},
	identify(value: TodoItem): string {
		return widgetToIdMap.get(value);
	}
}, function (todoRegistry: TodoRegistry, options: TodoRegistryOptions) {
	if (options) {
		todoRegistry.widgetStore = options.widgetStore;
	}
});
開發者ID:Tomdye,項目名稱:dojo2-todo-mvc,代碼行數:31,代碼來源:createTodoRegistry.ts

示例5: stackSelector

					const createSigned = (): [ Record, Record ] => {
						return [
							// Record negative and positive columns separately.
							{ originalPoints: [], columns: [], isNegative: true, relativeValue: 0, value: 0 },
							{ originalPoints: [], columns: [], isNegative: false, relativeValue: 0, value: 0 }
						];
					};

					for (const point of originalPoints) {
						const { datum } = point;
						const { input, relativeValue, value } = datum;

						// Note that the ordering of the stacks is determined by the original sort order, as is the
						// ordering of nodes within the stack.
						const stack = stackSelector(input);
						const signed = stacks.get(stack) || createSigned();
						const record = relativeValue < 0 ? signed[0] : signed[1];
						if (!stacks.has(stack)) {
							stacks.set(stack, signed);
						}

						record.originalPoints.push(point);
						record.columns.push(datum);
						record.relativeValue += relativeValue;
						record.value += value;

						if (record.relativeValue < mostNegativeRelValue) {
							mostNegativeRelValue = record.relativeValue;
						}
						else if (record.relativeValue > mostPositiveRelValue) {
							mostPositiveRelValue = record.relativeValue;
開發者ID:novemberborn,項目名稱:dojo2-dataviz,代碼行數:31,代碼來源:createStackedColumnChart.ts

示例6: method

				assert.doesNotThrow(function () {
					const method = map.get('method');
					method && method();
				});
開發者ID:GionHobby,項目名稱:core,代碼行數:4,代碼來源:aspect.ts

示例7: beforeEach

	'with maps': {

		beforeEach() {
			methodSpy = sinon.spy(function (a: number) {
				return a + 1;
			});
			map = new Map([ [ 'method', methodSpy ] ]);
		},

		'.before': {
			'return value passed as arguments'() {
				let aspectSpy = createBeforeSpy();

				aspect.before(map, 'method', aspectSpy);

				const method = map.get('method');
				method && method(0);
				assert.isTrue(aspectSpy.calledBefore(methodSpy));
				assert.isTrue(aspectSpy.calledOnce);
				assert.isTrue(methodSpy.calledOnce);
				assert.strictEqual(aspectSpy.lastCall.args[0], 0);
				assert.strictEqual(methodSpy.lastCall.args[0], 1);
				assert.strictEqual(methodSpy.returnValues[0], 2);
			},

			'no return value from advising function'() {
				let receivedArgs: string[] = [];
				let beforeCalled = false;
				map = new Map([ [ 'method', function (...args: string[]) {
						receivedArgs = args;
					} ] ]);
開發者ID:GionHobby,項目名稱:core,代碼行數:31,代碼來源:aspect.ts

示例8: groupSelector

						totalValue: number;
						value: number;
						y1: number;
					}
					const groups = new Map<G, Record>();
					const createRecord = (): Record => {
						return { originalPoints: [], columns: [], totalValue: 0, value: 0, y1: columnHeight };
					};

					for (const point of originalPoints) {
						const { input, relativeValue, value } = point.datum;

						// Note that the ordering of the groups is determined by the original sort order, as is the
						// ordering of nodes within the group.
						const group = groupSelector(input);
						const record = groups.get(group) || createRecord();
						if (!groups.has(group)) {
							groups.set(group, record);
						}

						record.originalPoints.push(point);
						record.columns.push(point.datum);
						record.totalValue += value;
						if (relativeValue < 0) {
							record.value = Math.min(record.value, value);
						}
						else {
							// Note that the expected value for mixed groups is undefined.
							record.value = Math.max(record.value, value);
						}
						record.y1 = Math.min(record.y1, point.y1);
開發者ID:novemberborn,項目名稱:dojo2-dataviz,代碼行數:31,代碼來源:createGroupedColumnChart.ts


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