Correct some text in the test suite.
Chris Pressey
4 years ago
507 | 507 | | xor a, many + x |
508 | 508 | | } |
509 | 509 | = ok |
510 | ||
511 | 510 | |
512 | 511 | There are other operations you can do on tables. (3/3) |
513 | 512 | |
2588 | 2587 | You can copy the address of a routine into a vector, if that vector type |
2589 | 2588 | is at least as "wide" as the type of the routine. More specifically, |
2590 | 2589 | |
2591 | - the vector must take _exactly_ the same inputs as the routine | |
2592 | - the vector must make _exactly_ the same outputs as the routine | |
2590 | - the vector must take _at least_ the inputs that the routine takes | |
2591 | - the vector must produce _at least_ the outputs that the routine produces | |
2593 | 2592 | - the vector must trash _at least_ what the routine trashes |
2594 | 2593 | |
2595 | 2594 | If the vector and the routine have the very same signature, that's not an error. |