Searches one column for a value
[C++]
size_t find_in_col(
   const T& t,
   size_t col
) const;
Value to be matched.
Column coordinate.
The row of the first cell in the column that contains a matching value. 
            matrix<T>::npos is returned if no match is found.
The specified column of the matrix is searched, top to bottom, until
            
            at which point at(row, col) == t
row is returned.
Header: matrix.h