الفرق بين المراجعتين ل"Ruby/InstructionSequence/load from binary extra data"

من موسوعة حسوب
اذهب إلى التنقل اذهب إلى البحث
(أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: التابع <code>load_from_binary_extra_data‎</code> الخاص بالصنف <code>InstructionSequence</code> في روبي}}</noinclud...')
 
سطر 3: سطر 3:
 
[[تصنيف: Ruby Method]]
 
[[تصنيف: Ruby Method]]
 
[[تصنيف: Ruby InstructionSequence]]
 
[[تصنيف: Ruby InstructionSequence]]
يُحمّل التابع <code>load_from_binary_extra_data</code> البيانات الإضافية المُضمّنة في السلسلة النصية الثنائية المعطاة (binary format String) <code>[[Ruby/String|String]]</code>.
+
يُحمّل التابع <code>load_from_binary_extra_data</code> البيانات الإضافية المُضمّنة في السلسلة النصية الثنائية المعطاة (binary format String) .
 
==البنية العامة==
 
==البنية العامة==
 
<syntaxhighlight lang="ruby">RubyVM::InstructionSequence.load_from_binary_extra_data(binary) → str‎</syntaxhighlight>
 
<syntaxhighlight lang="ruby">RubyVM::InstructionSequence.load_from_binary_extra_data(binary) → str‎</syntaxhighlight>
 
==المعاملات==
 
==المعاملات==
 
===<code>binary‎</code>===
 
===<code>binary‎</code>===
 +
سلسلة نصية ثنائية
  
 
==القيمة المُعادة==
 
==القيمة المُعادة==
 +
يعيد التابع <code>load_from_binary_extra_data</code> البيانات الإضافية المُضمّنة في السلسلة النصية الثنائية المعطاة (binary format String) .
  
 
==انظر أيضا==
 
==انظر أيضا==
* التابع <code>[[Ruby/InstructionSequence/load_from_binary|load_from_binary]]</code>: يُحمّل  كائنًا ككك من النوع InstructionSequence من سسس ثنائية (binary format String) <code>[[Ruby/String|String]]</code> مُنشأ بواسطة <code>[[Ruby/InstructionSequence/to_binary|#to_binary]]</code>.
+
* التابع <code>[[Ruby/InstructionSequence/load_from_binary|load_from_binary]]</code>: يُحمّل  كائنًا من النوع <code>InstructionSequence.</code>
* التابع <code>[[Ruby/InstructionSequence/new|new]]</code>: يأخذ  وسيطًا <code>source</code> ، وهو سسس (<code>[[Ruby/String|String]]</code>) تحتوي أكواد برمجية بلغة روبي، ويُصرّفها (compiles it) إلى كائن من النوع <code>[[Ruby/InstructionSequence|InstructionSequence]]</code>.
 
  
 
==مصادر==
 
==مصادر==
 
*[http://ruby-doc.org/core-2.5.1/RubyVM/InstructionSequence.html#method-c-load_from_binary_extra_data قسم  التابع load_from_binary_extra_data‎ في الصنف InstructionSequence‎ في توثيق روبي الرسمي.]
 
*[http://ruby-doc.org/core-2.5.1/RubyVM/InstructionSequence.html#method-c-load_from_binary_extra_data قسم  التابع load_from_binary_extra_data‎ في الصنف InstructionSequence‎ في توثيق روبي الرسمي.]

مراجعة 21:57، 1 نوفمبر 2018

يُحمّل التابع load_from_binary_extra_data البيانات الإضافية المُضمّنة في السلسلة النصية الثنائية المعطاة (binary format String) .

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

RubyVM::InstructionSequence.load_from_binary_extra_data(binary)  str

المعاملات

binary‎

سلسلة نصية ثنائية

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

يعيد التابع load_from_binary_extra_data البيانات الإضافية المُضمّنة في السلسلة النصية الثنائية المعطاة (binary format String) .

انظر أيضا

  • التابع load_from_binary: يُحمّل كائنًا من النوع InstructionSequence.

مصادر