Connor Skees
Connor Skees
This has been implemented in 31bbe8f and will be released as a new minor version to crates.io at some point this week.
`grass` has added support for the indented syntax in version `0.12.0`. Upgrading to that version should allow you to close out this issue.
Does `@inheritDoc` work for you today in vscode? I run into this quite frequently where it doesn't seem that inheritDoc is supported at all by vscode.
A [change adding `#[track_caller]`](https://github.com/ferrilab/bitvec/pull/201) got merged a few weeks ago. This should be resolved by the next release.
Actually I've opened https://github.com/ferrilab/bitvec/pull/230 after running into another crash without the attribute.
My use case is running this library on a somewhat under-powered server, where when trying to build z3 LLVM runs for several minutes until it fails due to OOM. Using...
In your particular case, you could just load a u32 and call [`u32::to_be_bytes()`](https://doc.rust-lang.org/std/primitive.u32.html#method.to_be_bytes). Otherwise, there's also [`BitVec::as_raw_slice`](https://docs.rs/bitvec/latest/bitvec/vec/struct.BitVec.html#method.as_raw_slice). I don't see an equivalent method on BitSlice, however.
import schedule import time def job(): print("I'm working...") schedule.every(15).minutes.do(job) while True: schedule.run_pending() time.sleep(1)
@mccolljr I wonder if it's possible to store `Vec`, rather than `Vec`. this should avoid the double indirection at the potential expense of memory. though, i think it might not...
I am open to supporting this, but I will likely not implement anything myself until I have a usecase for it. I'm not aware of any benefits to using `grass`...