fetchEncoding method
- int row
Retrieve the Booth encoding for the row
Implementation
RadixEncode fetchEncoding(int row) {
if (row >= rows) {
throw RohdHclException('row $row is not < number of encoding rows $rows');
}
return _encodings[row];
}