type T struct {
// contains filtered or unexported fields
}
T is used to guess the type of a column in a TSV file.
The caller creates the object T for each column in the TSV file. It then
feeds the values of the column through Add() incrementally. Once Add() has an
unambiguous guess of the column type, it returns one of String, Float, Int,
or Bool.
Add should be called with a column value found in the TSV file. It returns
String,Float, or Int once it determines the column type. It returns Unknown
if the type is still ambiguous.