الفرق بين المراجعتين ل"Sass/variable exists"

من موسوعة حسوب
اذهب إلى التنقل اذهب إلى البحث
(أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: الدالة <code>()variable_exists</code> في Sass}}</noinclude> تحدّد الدالة <code>variable_exists()‎</code> ما إذا ك...')
 
سطر 18: سطر 18:
 
مثال عن استخدام الدالة <code>variable_exists()‎</code>:<syntaxhighlight lang="sass">
 
مثال عن استخدام الدالة <code>variable_exists()‎</code>:<syntaxhighlight lang="sass">
 
$a-false-value: false;
 
$a-false-value: false;
variable-exists(a-false-value) // true
+
variable-exists(a-false-value); // true
variable-exists(a-null-value) // true
+
variable-exists(a-null-value); // true
  
variable-exists(nonexistent) // false
+
variable-exists(nonexistent); // false
 
</syntaxhighlight>
 
</syntaxhighlight>
  
سطر 27: سطر 27:
 
* الدالة <code>[[Sass/function exists|function_exists()]]</code>‎: تحدد ما إذا كانت دالة ما موجودة.
 
* الدالة <code>[[Sass/function exists|function_exists()]]</code>‎: تحدد ما إذا كانت دالة ما موجودة.
 
* الدالة <code>[[Sass/global variable exists|global_variable_exists()]]</code>‎: تحدد ما إذا كان متغير ما موجود في النطاق العام.
 
* الدالة <code>[[Sass/global variable exists|global_variable_exists()]]</code>‎: تحدد ما إذا كان متغير ما موجود في النطاق العام.
* الدالة <code>[[Sass/feature exists|feature_exists()]]</code>‎: تحدد ما إذا كانت ميزة معينةٌ موجودةٌ في وقت تشغيل <code>[[Sass]]</code>.
+
* الدالة <code>[[Sass/feature exists|feature_exists()]]</code>‎: تحدد ما إذا كانت ميزة معينةٌ موجودةٌ في وقت تشغيل <nowiki/>[[Sass]].
 
* الدالة <code>[[Sass/mixin exists|mixin_exists()]]</code>‎: تحدد ما إذا كان مخلوط ما موجودًا.
 
* الدالة <code>[[Sass/mixin exists|mixin_exists()]]</code>‎: تحدد ما إذا كان مخلوط ما موجودًا.
  

مراجعة 12:11، 22 أبريل 2018

تحدّد الدالة variable_exists()‎ ما إذا كان متغير ما موجودًا في النطاق الحالي ( current scope) أو في النطاق العام (global scope).

البنية العامة

variable_exists($name)

المعاملات

‎$name

اسم المتغير الذي نتحقق منه. لا ينبغي أن يتضمن الإسمُ البادئةَ $.

القيم المعادة

قيمة منطقية تحدد ما إذا كان المتغير مُعرّفًا في النطاق الحالي.

أمثلة

مثال عن استخدام الدالة variable_exists()‎:

$a-false-value: false;
variable-exists(a-false-value); // true
variable-exists(a-null-value); // true

variable-exists(nonexistent); // false

انظر أيضًا

  • الدالة function_exists()‎: تحدد ما إذا كانت دالة ما موجودة.
  • الدالة global_variable_exists()‎: تحدد ما إذا كان متغير ما موجود في النطاق العام.
  • الدالة feature_exists()‎: تحدد ما إذا كانت ميزة معينةٌ موجودةٌ في وقت تشغيل Sass.
  • الدالة mixin_exists()‎: تحدد ما إذا كان مخلوط ما موجودًا.

مصادر