class MigemoRegex::RegexAlternation
Public Instance Methods
delete_if() { |x| ... }
click to toggle source
Calls superclass method
# File lib/migemo-regex.rb, line 25 def delete_if self.clone.replace(super {|x| yield(x)}) end
map() { |x| ... }
click to toggle source
Calls superclass method
# File lib/migemo-regex.rb, line 21 def map self.clone.replace(super {|x| yield(x)}) end
select() { |x| ... }
click to toggle source
Calls superclass method
# File lib/migemo-regex.rb, line 29 def select self.clone.replace(super {|x| yield(x)}) end
sort()
click to toggle source
Calls superclass method
# File lib/migemo-regex.rb, line 13 def sort self.clone.replace(super) end
uniq()
click to toggle source
Calls superclass method
# File lib/migemo-regex.rb, line 17 def uniq self.clone.replace(super) end