D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
usr
/
share
/
rubygems
/
rubygems
/
util
/
Filename :
list.rb
back
Copy
# frozen_string_literal: true module Gem class List include Enumerable attr_accessor :value, :tail def initialize(value = nil, tail = nil) @value = value @tail = tail end def each n = self while n yield n.value n = n.tail end end def to_a super.reverse 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
Name
Size
Last Modified
Owner
Permissions
Actions
licenses.rb
6.107
KB
April 05 2021 11:46:35
root
0644
list.rb
0.57
KB
April 05 2021 11:46:35
root
0644
2017 © D7net | D704T team