Rebol Programming/in

USAGE:

edit
IN object word 

DESCRIPTION:

edit

Returns the word in the object's context.

IN is a native value.

ARGUMENTS:

edit
  • object -- (Type: object port)
  • word -- (Type: any-word)

SOURCE CODE

edit
in: native[
    "Returns the word in the object's context." 
    object [object! port!] 
    word [any-word!]
]