Malice
Malice
Does this still need an RFC ? I would like to give a shot at this.
1. `Subroutines` are a part of OpenQasm3 specs, but they are not part of openQasm2.0. OpenQasm2 only supports custom gate with `gate` keyword. 2. On `Circuit Operation` vs `_decompse_`, using...
I successfully created a pr using a template using this branch. :+1
>Any tips on how I could use packer to switch to this branch temporarily to help with testing? Use `branch` key in packerc onfiguration. Example copied from packer readme: ```...
I would like to take a shot at this..
Here's what I'm thinking. Let's extract two, and only two, functions ``` fn refresh(&mut self, secs: u64) -> Option fn refresh_now(&mut self, secs: u64, now: U) -> Option ``` into...
Sounds Good. Looks like `secs_elapsed` can have a default implementation based on `secs_since`. + You still have dependency on `std::time::Duration` for the `diff` function 😄 . If only we could...