الفرق بين المراجعتين لصفحة: «Sass/global variable exists»

من موسوعة حسوب
لا ملخص تعديل
لا ملخص تعديل
سطر 1: سطر 1:
<noinclude>{{DISPLAYTITLE: الدالة <code>()variable_exists</code> في Sass}}</noinclude>
<noinclude>{{DISPLAYTITLE: الدالة <code>()global_variable_exists</code> في Sass}}</noinclude>
تحدّد الدالة <code>variable_exists()‎</code>  ما إذا كان متغير ما موجودًا في النطاق الحالي ( current scope) أو في النطاق العام (global scope).
تحدّد الدالة <code>global_variable_exists()‎</code>  ما إذا كان متغير ما موجود في النطاق الحالي ( current scope) أو في النطاق العام (global scope).


== البنية العامة ==
== البنية العامة ==
<syntaxhighlight lang="sass">
<syntaxhighlight lang="sass">
variable_exists($name)
global_variable_exists($name)
</syntaxhighlight>
</syntaxhighlight>


سطر 16: سطر 16:


==  أمثلة ==
==  أمثلة ==
مثال عن استخدام الدالة <code>variable_exists()‎</code>:<syntaxhighlight lang="sass">
مثال عن استخدام الدالة <code>global_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
سطر 31: سطر 31:


== مصادر ==
== مصادر ==
* [https://sass-lang.com/documentation/Sass/Script/Functions.html#variable_exists-instance_method قسم الدالة variable_exists في صفحة الدوال في توثيق Sass الرسمي.]
* [https://sass-lang.com/documentation/Sass/Script/Functions.html#global_variable_exists-instance_method قسم الدالة global_variable_exists في صفحة الدوال في توثيق Sass الرسمي.]
[[تصنيف:Sass]]
[[تصنيف:Sass]]
[[تصنيف: Sass Function]]
[[تصنيف: Sass Function]]

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

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

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

global_variable_exists($name)

المعاملات

‎$name

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

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

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

أمثلة

مثال عن استخدام الدالة global_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()‎: تحدد ما إذا كان مخلوط ما موجودًا.

مصادر