Hello,

The 'bake' vocabulary has been revisited.

Baking is like frying, but it's for arrays.

        10 20 30 `{ , , , }
=>
        { 10 20 30 }


        10 { 21 22 23 } 30 `{ , , , }
=>
        { 10 { 21 22 23 } 30 }


        10 { 21 22 23 } 30 `{ , @ , }
=>
        { 10 21 22 23 30 }

Bake has been changed so that the elements are "baked" in order, just like 
fry.

Bake is now much more efficient. It is a macro which generates code which will 
construct the array at runtime.

Fry offers three directives: , @ _. Bake only supports the , and @. The '_' 
isn't applicable to arrays.

Ed

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Factor-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/factor-talk

Reply via email to