class Qt::ByteArray

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/Qt/qtruby4.rb, line 512
def initialize(*args)
  if args.size == 1 && args[0].kind_of?(String)
    super(args[0], args[0].size)
  else
    super
  end
end

Public Instance Methods

chop(*args) click to toggle source
# File lib/Qt/qtruby4.rb, line 532
def chop(*args)
  method_missing(:chop, *args)
end
split(*args) click to toggle source
# File lib/Qt/qtruby4.rb, line 536
def split(*args)
  method_missing(:split, *args)
end
to_f() click to toggle source
# File lib/Qt/qtruby4.rb, line 528
def to_f
  return toDouble()
end
to_i() click to toggle source
# File lib/Qt/qtruby4.rb, line 524
def to_i
  return toInt()
end
to_s() click to toggle source
# File lib/Qt/qtruby4.rb, line 520
def to_s
  return constData()
end