File: byte_array.rb

package info (click to toggle)
ruby-dataobjects 0.10.14-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 396 kB
  • ctags: 193
  • sloc: ruby: 2,921; 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