home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / language / j32.sit / j.rsrc / TEXT_1802_e..txt < prev    next >
Text File  |  1991-06-13  |  468b  |  21 lines

  1. e.  (Verb)
  2.  
  3. RAZE IN (_)  e.y produce a boolean result that determines for each atom of y whether its open contains each item of the raze of y. For example:
  4.  
  5.       ] y=.'abc';'dc';'a'
  6. +---+--+-+
  7. |abc|dc|a|
  8. +---+--+-+
  9.       ,.y                   
  10. abcdca
  11.    e.y                            
  12. 1 1 1 0 1 1
  13. 0 0 1 1 1 0
  14. 1 0 0 0 0 1
  15.  
  16. IN (_ _)  If x has the shape of an item of y, then x e. y is 1 if x matches an item of y. In general, x e.y is (#y)>y i.x. Thus:
  17.  
  18.       'cat' e. 'abcd'
  19. 1 1 0
  20.       'cat' e. 2 3$ 'catdog'