Inform - Support - Source

Back to List

Inventory
Complete

Backward
Forward

Plain
Coloured
Gaudy

This code
in plain text

Browsing parserm.h

MultiFilter (lines 3625-3641)

3625  !  The MultiFilter routine goes through the multiple-object-list and throws
3626  !  out anything without the given attribute "attr" set.
3627  ! ----------------------------------------------------------------------------
3628   
3629  [ MultiFilter attr  i j o;
3630   
3631    .MFiltl;
3632   
3633      i = multiple_object-->0;
3634      for (j=1 : j<=i : j++) {
3635          o = multiple_object-->j;
3636          if (o hasnt attr) {
3637              MultiSub(o);
3638              jump Mfiltl;
3639          }
3640      }
3641  ];


Last updated 27 February 2004. The librarian in charge of this page is Graham Nelson (graham@gnelson.demon.co.uk) assisted by C Knight. Please email any comments, suggestions or corrections to cedenqs@inform-fiction.org.