class String
Public Instance Methods
to_sequence(pos=0)
click to toggle source
convert a string to a seq starting at pos
# File lib/sequence/indexed.rb, line 249 def to_sequence (pos=0) Sequence::OfString.new(self,pos) end