Takes in a predicate and two functions. Returns a function that applies
one function when the predicate evaluates to true
, otherwise applies the
other function.
Takes an array of candidate cell values and returns a column of Cells.
Returns the height of the cell. Defaults to 1.
Takes an array of cells and returns the maximum row index including merged coords.
Takes an array of cells and returns the maximum column index.
Takes an array of cells and returns the maximum row index.
Takes in an argument and an array of functions. Returns the output of the left-to-right composed function applied on the argument.
Takes an array of keys and an array records containing the candidate cell values associated to the input keys. Returns a table of Cells.
Takes an array of cells and returns the maximum column index including merged coords.
Takes an array of candidate cell values and returns a row of Cells.
Takes in an array of Result
objects, and splits the Ok
and Err
objects as a pair of arrays.
Takes an array of arrays of candidate cell values, and returns a table of Cells.
Returns a valid Border object.
Takes a candidate cell value and returns a fxl Cell object.
Returns the width of the cell. Defaults to 1.
Generated using TypeDoc
Takes in a predicate and function. Returns a function that applies the function only when the predicate evaluates to
true
.