با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
یک Reducer ایجاد می کند که دو کاهش دهنده را به صورت موازی اجرا می کند. خروجیهای کاهنده ترکیبی، خروجیهای کاهنده 1 و به دنبال آنهای کاهنده 2 خواهند بود، که در آن نام خروجی کاهنده 2 با رشته داده شده پیشوند است.
اگر sharedInputs درست باشد، کاهنده ها باید همان تعداد ورودی داشته باشند و کاهنده های ترکیبی با آنها مطابقت دارند. اگر نادرست باشد، ورودیهای کاهنده ترکیبی ورودیهای کاهنده 1 و به دنبال آن کاهنده 2 خواهد بود.
تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","easyToUnderstand","thumb-up"],["مشکلم را برطرف کرد","solvedMyProblem","thumb-up"],["غیره","otherUp","thumb-up"]],[["اطلاعاتی که نیاز دارم وجود ندارد","missingTheInformationINeed","thumb-down"],["بیشازحد پیچیده/ مراحل بسیار زیاد","tooComplicatedTooManySteps","thumb-down"],["قدیمی","outOfDate","thumb-down"],["مشکل ترجمه","translationIssue","thumb-down"],["مشکل کد / نمونهها","samplesCodeIssue","thumb-down"],["غیره","otherDown","thumb-down"]],["تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی."],[[["Creates a combined Reducer by running two reducers (reducer1 and reducer2) concurrently, with the outputs of reducer1 preceding those of reducer2."],["Outputs of reducer2 are prefixed with a specified string to differentiate them from reducer1's outputs."],["Input handling for the combined reducer is configurable: if `sharedInputs` is true, both reducers utilize the same inputs; otherwise, the combined reducer's inputs are those of reducer1 followed by those of reducer2."],["It can be invoked using `Reducer.combine()` method, accepting reducer2, output prefix, and shared input preference as arguments."]]],[]]