-
_Submitted by:_ **kealist**
I noticed some string corruption in the printing of TRACE. I don't know how deep that it extends or if it's just confined to trace output, but it's worth investigating
`…
-
Sadly, relaxing package upper bounds doesn't just work:
```
$ ghc --version
The Glorious Glasgow Haskell Compilation System, version 7.10.1
$ cabal install bitset==1.4.8 --allow-newer
Configuring bi…
-
BitSet has many more readonly methods compared to Bits. Similarly, BitSet has many more write methods compared to MutableBits.
This Jira issue is to add a new ImmutableBits interface to BitSet that i…
-
_Submitted by:_ **BrianH**
Bitsets are not series: they have no position. There are functions that work on series that have no meaning for bitsets and don't work - almost every function that has seri…
-
I believe that BitVec provides all the necessary functionality to implement a BitSet wrapper, in a way that would be reasonably convenient.
* Inserting an element -- resize (inserting 0) if needed …
-
```
>> bs: make bitset! "hello"
== make bitset! #{0000000000000000000000000489}
>> empty bs
== #[false]
>> length of bs
Assertion failed!
Program: C:\...\r3-438f4aa-debug.exe
File: ../src/core…
-
```
as a lot of vendors are releasing products with configs that use bitsets to
setup various features, we should probably also implement a BitSet ValueID
class.
Preferably maybe just a wrapper aro…
-
```c++
constexpr codlili::List Nat::bits() const;
constexpr Nat::Nat(const codlili::List& bits);
template
constexpr Nat::Nat(const std::bitset& bits);
```
We can use `std::bitset` to take…
-
```
$ go build uniqbloom.go
uniqbloom.go:7:2: no required module provides package github.com/willf/bloom: go.mod file not found in current directory or any parent directory; see 'go help modules'
…
-
Currently, IPs are tracked as a byte slice `[]byte` [here](https://github.com/threefoldtech/tfgrid-sdk-go/blob/development/grid-client/deployer/deployment_deployer.go#L293) and [here](https://github.c…