Here is the first stab at it showing AND and OR functions with a simple example. XOR and NOT are also in there, but not shown simply because the graph gets too messy.
If you have a real-world meaningful example you'd like to try out, send it to me. Or you can try out the new function parser yourself. Exit DPlot if it is running and download
http://www.dplot.com/fparser.dll and save to the folder where dplot.exe resides, overwriting the existing version.
Syntax, in C-speak:
AND(y,z) returns (floor(y) & floor(z))
NOT(y,z) returns (floor(y) & ~floor(z))
OR(y,z) returns (floor(y) | floor(z))
XOR(y,z) returns (floor(y) ^ floor(z))
And thanks for the suggestion.