الفرق بين المراجعتين لصفحة: «Ruby/Kernel/block given-3F»
أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: التابع <code>block_given?</code> الخاص بالصنف <code>Kernel</code> في روبي}}</noinclude> [[تصنيف: Ruby]...' |
لا ملخص تعديل |
||
سطر 3: | سطر 3: | ||
[[تصنيف: Ruby Method]] | [[تصنيف: Ruby Method]] | ||
[[تصنيف: Ruby Kernel]] | [[تصنيف: Ruby Kernel]] | ||
يعيد التابع القيمة <code>true</code> إذا كان <code>yield</code> سينفذ كتلة برمجية في السياق الحالي. الشكل <code>iterator?</code> صار شبه مُتجاوز. | يعيد التابع <code>block_given?</code> القيمة <code>true</code> إذا كان <code>yield</code> سينفذ كتلة برمجية في السياق الحالي. الشكل <code>iterator?</code> صار شبه مُتجاوز. | ||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="ruby">block_given?→ true or false</syntaxhighlight> | <syntaxhighlight lang="ruby">block_given?→ true or false</syntaxhighlight> | ||
==القيمة المُعادة== | ==القيمة المُعادة== | ||
يعيد التابع <code>block_given?</code> القيمة <code>true</code> إذا كان <code>yield</code> سينفذ كتلة برمجية في السياق الحالي. | |||
==أمثلة== | ==أمثلة== | ||
سطر 21: | سطر 20: | ||
try #=> "no block" | try #=> "no block" | ||
try { "hello" } #=> "hello" | try { "hello" } #=> "hello" | ||
try do "hello" end #=> "hello" | try do "hello" end #=> "hello"</syntaxhighlight> | ||
==انظر أيضا== | ==انظر أيضا== | ||
* | * صفحة الصنف <code>[[Ruby/Kernel|Kernel]]</code>: | ||
==مصادر== | ==مصادر== | ||
*[http://ruby-doc.org/core-2.5.1/Kernel.html#method-i-block_given-3F قسم التابع block_given? في الصنف Kernel في توثيق روبي الرسمي.] | *[http://ruby-doc.org/core-2.5.1/Kernel.html#method-i-block_given-3F قسم التابع block_given? في الصنف Kernel في توثيق روبي الرسمي.] |
مراجعة 11:09، 21 أكتوبر 2018
يعيد التابع block_given?
القيمة true
إذا كان yield
سينفذ كتلة برمجية في السياق الحالي. الشكل iterator?
صار شبه مُتجاوز.
البنية العامة
block_given?→ true or false
القيمة المُعادة
يعيد التابع block_given?
القيمة true
إذا كان yield
سينفذ كتلة برمجية في السياق الحالي.
أمثلة
مثال على استخدام التابع block_given?
:
def try
if block_given?
yield
else
"no block"
end
end
try #=> "no block"
try { "hello" } #=> "hello"
try do "hello" end #=> "hello"
انظر أيضا
- صفحة الصنف
Kernel
: