rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/lasso
2019-10-21 10:18:17 +02:00

13 lines
227 B
Plaintext

/**!
Inserts all of the elements from #rhs into the array.
*/
define array->+(rhs::trait_forEach) => {
local(a = .asCopy);
#rhs->forEach => {
#a->insert(#1)
}
return (#a)
}
define array->onCompare(n::null) => 1