| 1 | //! Multiplexer (Mux) operation that takes three inputs a, b, c and returns b if a is 1 or c if a is 0. |
| 2 | use crate::custom_ops::CustomOperationBody; |
| 3 | use crate::data_types::{scalar_type, Type, BIT}; |
| 4 | use crate::errors::Result; |
nothing calls this directly
no outgoing calls
no test coverage detected