File: byte_array.rb

package info (click to toggle)
ruby-extlib 0.9.16-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 576 kB
  • sloc: ruby: 7,014; makefile: 5
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