Quantcast
Channel: What is the undocumented block you get from THIRD on object/function in Rebol2? - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by HostileFork says dont trust SE for What is the undocumented block...

You noticed:>> third o== [a: 1 b: 2]>> pick o 3** Script Error: Out of range or past end** Near: pick o 3...which is odd. It seems in Rebol2 that THIRD was not purely synonymous with PICK...

View Article



Answer by rebolek for What is the undocumented block you get from THIRD on...

Third returns object definition.>> body: [a: 1 b: 2]== [a: 1 b: 2]>> obj: context body>> equal? body third obj== true>> strict-equal? body third obj== trueIt's same as body-of...

View Article

What is the undocumented block you get from THIRD on object/function in Rebol2?

I've read internally R2 stores contexts as two tables, one for words and the other for values, so you can ask for them:o: context [a: 1 b: 2]>> first o== [self a b]>> second o== [make...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images