* 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)
| 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. |
no outgoing calls
no test coverage detected