class String
Public Instance Methods
getbyte(index)
click to toggle source
# File lib/net/ssh/ruby_compat.rb, line 5 def getbyte(index) self[index] end
setbyte(index, c)
click to toggle source
# File lib/net/ssh/ruby_compat.rb, line 9 def setbyte(index, c) self[index] = c end