Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 541 Bytes

File metadata and controls

18 lines (10 loc) · 541 Bytes

Home > @josh-brown/vector > MatrixEntryFunction

MatrixEntryFunction type

A function that generates a matrix entry based on an existing entry entry, its row index i, and its column index j

Signature:

export type MatrixEntryFunction<S> = (entry: S, i: number, j: number) => S;

Remarks

This should be a pure function