File: byte_array.rb

package info (click to toggle)
ruby-dataobjects 0.10.8-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 416 kB
  • sloc: ruby: 2,917; makefile: 4
file content (6 lines) | stat: -rw-r--r-- 262 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
# This class has exists to represent binary data. This is mainly
# used by DataObjects. Binary data sometimes needs to be quoted differently
# than regular string data (even if the string is just plain ASCII).
module Extlib
  class ByteArray < ::String; end
end