vote up -4 vote down star

In the spirit of:

  • Hidden Features of C#
  • Hidden Features of Java
  • Hidden Features of ASP.NET
  • Hidden Features of Python
  • Hidden Features of HTML
  • and other Hidden Features questions

What are the hidden features of Factor that every Factor developer should be aware of?

One hidden feature per answer, please.

I got inspired to ask this question after reading Guillaume Nargeot's post Think twice before naming your programming language

flag
4  
Community wiki, please. – earl Sep 4 at 11:26

2 Answers

vote up 3 vote down

To convert untagged pointers to tagged form, use code like the following:

#define RETAG(untagged,tag) (((CELL)(untagged) & ~TAG_MASK) | (tag))
CELL tag_array(F_ARRAY *untagged)
{
   return RETAG(untagged,ARRAY_TYPE);
}

For hi-tag types, such as strings, use a single tag_object() function:

CELL tag_object(void *untagged)
{
   return RETAG(untagged,OBJECT_TYPE);
}
link|flag
vote up 2 vote down

The ui.images vocabulary defines some words which can be called from your gadget's draw-gadget* method. The ui.gadgets.icons vocabulary defines a simple gadget that renders an image and nothing else.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.