I'm using version 4.1 for this project.
The RTF documentation for all version I've seen says that "BitwiseOr, BitwiseAnd and BitwiseXor. The bitwise operations are for SqlServer or PostgreSql only." But I saw a forum post indicating that they're supported for Oracle as of v3.
When I use ExOp.BitwiseAnd for an Oracle project, the generated query uses SQL Server syntax :
where (x&y)=z
instead of Oracle syntax:
where bitand(x&y)=z
I haven't tested in a later version but don't see anything about this in any release notes.
So, if bitwise operators are supposed to be supported for Oracle, they don't appear to be working.