class RubyTDMS::DataTypes::UInt64

Constants

ID
LENGTH_IN_BYTES

Public Class Methods

read_from_stream(tdms_file, big_endian) click to toggle source
# File lib/ruby_tdms/data_types/u_int64.rb, line 10
def self.read_from_stream(tdms_file, big_endian)
        if big_endian
                new tdms_file.read_u64_be
        else
                new tdms_file.read_u64
        end
end