! File: ifaces.i90 ! Public domain 2006 James Van Buskirk public operator(.CLR.), operator(.NOR.), operator(.BCR.) public operator(.NOTA.), operator(.BIC.), operator(.NOTB.) public operator(.XOR.), operator(.NAND.), operator(.AND.) public operator(.XNOR.), operator(.SELB.), operator(.BNSR.) public operator(.SELA.), operator(.BNS.), operator(.OR.) public operator(.SET.) interface operator(.CLR.) module procedure L0 end interface operator(.CLR.) interface operator(.NOR.) module procedure L1 end interface operator(.NOR.) interface operator(.BCR.) module procedure L2 end interface operator(.BCR.) interface operator(.NOTA.) module procedure L3 end interface operator(.NOTA.) interface operator(.BIC.) module procedure L4 end interface operator(.BIC.) interface operator(.NOTB.) module procedure L5 end interface operator(.NOTB.) interface operator(.XOR.) module procedure L6 end interface operator(.XOR.) interface operator(.NAND.) module procedure L7 end interface operator(.NAND.) interface operator(.AND.) module procedure L8 end interface operator(.AND.) interface operator(.XNOR.) module procedure L9 end interface operator(.XNOR.) interface operator(.SELB.) module procedure LA end interface operator(.SELB.) interface operator(.BNSR.) module procedure LB end interface operator(.BNSR.) interface operator(.SELA.) module procedure LC end interface operator(.SELA.) interface operator(.BNS.) module procedure LD end interface operator(.BNS.) interface operator(.OR.) module procedure LE end interface operator(.OR.) interface operator(.SET.) module procedure LF end interface operator(.SET.) ! End of file: ifaces.i90