TensorDataType is the parent S3 class for all tensor data types.
All data type classes inherit from TensorDataType, enabling cross-type
comparisons with == and != operators.
The specific data type classes are:
BooleanType()- Boolean (i1)IntegerType()- Signed integers (i8, i16, i32, i64)UnsignedType()- Unsigned integers (ui8, ui16, ui32, ui64)FloatType()- Floating point (f32, f64)
Details
This is a virtual base class - you cannot create instances directly. Use the specific type constructors instead.