module Tdms::DataType

Constants

DataTypesById

Public Class Methods

find_by_id(id_byte) click to toggle source
# File lib/tdms/datatypes.rb, line 166
def find_by_id(id_byte)
  DataTypesById[id_byte] || raise(ArgumentError, "Don't know type %d" % id_byte)
end

Private Instance Methods

find_by_id(id_byte) click to toggle source
# File lib/tdms/datatypes.rb, line 166
def find_by_id(id_byte)
  DataTypesById[id_byte] || raise(ArgumentError, "Don't know type %d" % id_byte)
end