Return an `isa` builder configured for the current host machine, or `Err(())` if the host machine is not supported in the current configuration.
()
| 14 | /// machine, or `Err(())` if the host machine is not supported |
| 15 | /// in the current configuration. |
| 16 | pub fn builder() -> Result<isa::Builder, &'static str> { |
| 17 | builder_with_options(true) |
| 18 | } |
| 19 | |
| 20 | /// Return an `isa` builder configured for the current host |
| 21 | /// machine, or `Err(())` if the host machine is not supported |