class String

stdext

Public Instance Methods

+(other) click to toggle source
# File lib/interscript/node/item/string.rb, line 51
def + other
  if Interscript::Node === other
    Interscript::Node::Item.try_convert(self) + other
  else
    self.plus_before_interscript(other)
  end
end
Also aliased as: plus_before_interscript
plus_before_interscript(other)
Alias for: +