الفرق بين المراجعتين لصفحة: «Ruby/InstructionSequence/load from binary extra data»

من موسوعة حسوب
أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: التابع <code>load_from_binary_extra_data‎</code> الخاص بالصنف <code>InstructionSequence</code> في روبي}}</noinclud...'
 
ط مراجعة وتدقيق.
 
(مراجعة متوسطة واحدة بواسطة مستخدم واحد آخر غير معروضة)
سطر 1: سطر 1:
<noinclude>{{DISPLAYTITLE: التابع <code>load_from_binary_extra_data‎</code> الخاص بالصنف <code>InstructionSequence</code> في روبي}}</noinclude>
<noinclude>{{DISPLAYTITLE: التابع <code>InstructionSequence.load_from_binary_extra_data‎</code> في روبي}}</noinclude>
[[تصنيف: Ruby]]
[[تصنيف: Ruby]]
[[تصنيف: 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>===
سلسلة نصية ثنائية  (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>: يُحمّل سلسلة تعليمات من [[Ruby/String|سلسلة نصية]] ثنائية (binary format String) مُنشأ بواسطة <code>[[Ruby/InstructionSequence/to binary|to_binary]]</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‎ في توثيق روبي الرسمي.]

المراجعة الحالية بتاريخ 07:25، 4 ديسمبر 2018

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

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

RubyVM::InstructionSequence.load_from_binary_extra_data(binary)  str

المعاملات

binary‎

سلسلة نصية ثنائية (binary format String).

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

تعاد البيانات الإضافية المُضمّنة في السلسلة النصية الثنائية المعطاة.

انظر أيضا

مصادر