الفرق بين المراجعتين لصفحة: «Ruby/Symbol/downcase»
لا ملخص تعديل |
لا ملخص تعديل |
||
سطر 3: | سطر 3: | ||
[[تصنيف: Ruby Method]] | [[تصنيف: Ruby Method]] | ||
[[تصنيف: Ruby Symbol]] | [[تصنيف: Ruby Symbol]] | ||
التابع <code>downcase</code> مشابه للتعبير <code>sym.to_s.downcase.intern</code> | التابع <code>downcase</code> مشابه للتعبير <code>sym.to_s.downcase.intern</code>. | ||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="ruby">downcase → symbol | <syntaxhighlight lang="ruby">downcase → symbol |
مراجعة 17:29، 4 نوفمبر 2018
التابع downcase
مشابه للتعبير sym.to_s.downcase.intern
.
البنية العامة
downcase → symbol
downcase([options])→ symbol
المعاملات
options
خيارات.
القيمة المُعادة
يعيد التابع downcase
كائنا من النوع Symbol
.
انظر أيضا
- التابع
swapcase
: يكافئ التعبيرsym.to_s.swapcase.intern
.