// Ensures consistency in naming vectors that interact with matrices. interface ColumnVector { applyMatrix(σ: M): V; } export default ColumnVector;