Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Can I define an anti function?

From: lmecir:mbox:vol:cz at: 24-Feb-2004 16:05

Anton Rolls napsal(a):
>The function it produces is interesting. > >>>f: func [a b][a = b] >>>g: anti f >>>probe :g >>> >>> >func [a b][native func [a b][a = b] get/any 'a get/any 'b] > >This 'native function is undocumented and it's not obvious >to me what it does. > >Anton. >
that is just the NOT function used as a Rebol value. See this: reduce [:not] ; == [native] -L