MCPcopy Index your code
hub / github.com/processing/p5.js / tableRow

Function tableRow

src/io/p5.TableRow.js:330–345  ·  view source on GitHub ↗
(p5, fn)

Source from the content-addressed store, hash-verified

328};
329
330function tableRow(p5, fn){
331 /**
332 * A TableRow object represents a single row of data values,
333 * stored in columns, from a table.
334 *
335 * A Table Row contains both an ordered array, and an unordered
336 * JSON object.
337 *
338 * @class p5.TableRow
339 * @deprecated p5.Table will be removed in a future version of p5.js to make way for a new, friendlier version :)
340 * @constructor
341 * @param {any[]} row optional: populate the row with an
342 * array of values
343 */
344 p5.TableRow = TableRow;
345}
346
347export default tableRow;
348

Callers 3

saveTable.jsFile · 0.85
loadTable.jsFile · 0.85
p5.TableRow.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected