الفرق بين المراجعتين ل"Ruby/Numeric/remainder"
اذهب إلى التنقل
اذهب إلى البحث
(أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: التابع <code>remainder</code> الخاص بالصنف <code>Numeric</code> في روبي}}</noinclude> تصنيف: Ruby تص...') |
|||
سطر 3: | سطر 3: | ||
[[تصنيف: Ruby Method]] | [[تصنيف: Ruby Method]] | ||
[[تصنيف: Ruby Numeric]] | [[تصنيف: Ruby Numeric]] | ||
− | <code>x.remainder(y)</code> يكافئ <code>x-y*(x/y).truncate</code>. | + | <code>x.remainder(y)</code> يكافئ <code>x-y*(x/y).truncate</code>. |
− | انظر صفحة <code> | + | |
+ | انظر صفحة <code>[[Ruby/Numeric/divmod|divmod]]</code>. | ||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="ruby">remainder(numeric) → real</syntaxhighlight> | <syntaxhighlight lang="ruby">remainder(numeric) → real</syntaxhighlight> | ||
==المعاملات== | ==المعاملات== | ||
===<code>numeric</code>=== | ===<code>numeric</code>=== | ||
− | + | عدد. | |
− | |||
==القيمة المُعادة== | ==القيمة المُعادة== | ||
+ | يعيد ناتج التعبير <code>x-y*(x/y).truncate</code>. | ||
==انظر أيضا== | ==انظر أيضا== | ||
− | * التابع <code>[[Ruby/Numeric/rectangular| | + | *التابع <code>[[Ruby/Numeric/rectangular|divmod]]</code>: يعيد التابع <code>divmod</code> مصفوفة تحتوي على الحاصل (quotient) والباقي الناتج عن قسمة العدد الذي استُدعي معه على الوسيط المعطى <code>numeric</code> |
− | |||
− | |||
==مصادر== | ==مصادر== | ||
*[http://ruby-doc.org/core-2.5.1/Numeric.html#method-i-remainder قسم التابع remainder في الصنف Numeric في توثيق روبي الرسمي.] | *[http://ruby-doc.org/core-2.5.1/Numeric.html#method-i-remainder قسم التابع remainder في الصنف Numeric في توثيق روبي الرسمي.] |
مراجعة 23:02، 27 أكتوبر 2018
x.remainder(y)
يكافئ x-y*(x/y).truncate
.
انظر صفحة divmod
.
البنية العامة
remainder(numeric) → real
المعاملات
numeric
عدد.
القيمة المُعادة
يعيد ناتج التعبير x-y*(x/y).truncate
.
انظر أيضا
- التابع
divmod
: يعيد التابعdivmod
مصفوفة تحتوي على الحاصل (quotient) والباقي الناتج عن قسمة العدد الذي استُدعي معه على الوسيط المعطىnumeric