MCPcopy
hub / github.com/processing/p5.js / get

Method get

src/io/p5.Table.js:1038–1044  ·  view source on GitHub ↗

* Retrieves a value from the Table's specified row and column. * The row is specified by its ID, while the column may be specified by * either its ID or title. * * @deprecated p5.Table will be removed in a future version of p5.js to make way for a new, friendlier version :) * @param {

(row, column)

Source from the content-addressed store, hash-verified

1036 * }
1037 */
1038 get (row, column) {
1039 if(typeof column === 'string'){
1040 return this.rows[row].get(this.columns.indexOf(column));
1041 } else {
1042 return this.rows[row].get(column);
1043 }
1044 }
1045
1046 /**
1047 * Retrieves a Float value from the Table's specified row and column.

Callers 15

findTestCasesFunction · 0.45
p5.sound.min.jsFile · 0.45
p5.sound.jsFile · 0.45
resolveMainClientFunction · 0.45
passthroughFunction · 0.45
drawFunction · 0.45
setupFunction · 0.45
setupFunction · 0.45
mocks.jsFile · 0.45
p5.Image.jsFile · 0.45
loading.jsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected