Class: Lua::Multret
- Inherits:
-
Object
- Object
- Lua::Multret
- Defined in:
- ext/rlua.c
Instance Method Summary collapse
-
#Lua::Multret.new(*values) ⇒ Object
constructor
Creates a new Multret object with
valuesinside.
Constructor Details
#Lua::Multret.new(*values) ⇒ Object
Creates a new Multret object with values inside. Example:
Lua::Multret.new(1, 2, 3) # three return values
873 874 875 876 877 |
# File 'ext/rlua.c', line 873 static VALUE rbLuaMultret_initialize(VALUE self, VALUE args) { rb_iv_set(self, "@args", args); return self; } |