git @ Cat's Eye Technologies SixtyPical / 9b1d71a
Correct some text in the test suite. Chris Pressey 4 years ago
1 changed file(s) with 2 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
507507 | xor a, many + x
508508 | }
509509 = ok
510
511510
512511 There are other operations you can do on tables. (3/3)
513512
25882587 You can copy the address of a routine into a vector, if that vector type
25892588 is at least as "wide" as the type of the routine. More specifically,
25902589
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
25932592 - the vector must trash _at least_ what the routine trashes
25942593
25952594 If the vector and the routine have the very same signature, that's not an error.