-
Would you be interested in a contribution that would add an iterator or folder over the nodes? For instance, the use-case would be to get all the `classes` defined in a document.
-
The existence of `mutable` members:
https://github.com/microsoft/STL/blob/a1bc1261795d4097cf7c12cfd0b5e2091809f281/stl/inc/iterator#L480-L482
modified by `const` member functions without any kind of…
-
Currently there are two mechanisms for interacting with gatt events in TrouBLE:
- `server.next()` iterator/stream approach
- attribute callbacks
Each of these methods currently have different str…
-
Looking at the API, I do not see support for ordered traversal? Am I missing something?
-
We still need to deal with \n and \r\n
```js
export async function* getSDFIterator(readStream) {
const moleculeStream = readStream.pipeThrough(createMoleculeStream());
for await (let molecule of…
-
Observed this crash several times while running the unit tests on windows in the CI:
```Assertion failed: dummy_versions_.next_ == &dummy_versions_```
A quick search seems to indicate that this is l…
-
Install failed for me, details below: `fatal error: 'iterator' file not found.`
Thought I should share since I didn't see this in the installation troubleshooting section. I have not found a solut…
-
I've run into this issue a few times when the SDK supports return multiple items but the actual API response ends up being empty. The developer/end-user ends up with an unhelpful exception like `'Non…
-
Python calls it [`itertools.chain`](https://docs.python.org/3/library/itertools.html#itertools.chain):
```js
chain("ABC", [1, 2, 3]).toArray() === ["A", "B", "C", 1, 2, 3]
```
Like `Array.concat…
-
In C++ iterators are presumed to be lightweight objects and are therefore commonly passed by value.
However, the internal implementation of pqxx iterators makes them not so lightweight:
`pqxx::c…