Rob Hague

Results 21 issues of Rob Hague

Currently when multiplying a `DenseMatrix` with a `Vector` there is a path to a `ILinearAlgebraProvider` when the multiplicand and the result are both `DenseVector`, otherwise we fall back to a...

This PR changes `private string GetField` to `public ReadOnlySpan GetFieldSpan` on CsvParser. It also adds a `RawRecordSpan` property and exposes both on `IParser`. Aside from any buffer resizes, it allows...

This PR fixes all remaining nullable warnings using a combination of: - Annotating members (public included) with `?` or nullable attributes - Note, on netfx and netstandard, these attributes don't...

### Describe the feature or problem you’d like to solve Often I want to checkout a PR with `gh pr checkout NNN` and then reference the upstream/"remote-tracking branch" in some...

enhancement
needs-triage

Move the constant data for picnic from the bz2 files embedded as resources in the assembly to be embedded as static properties in the source. Those properties can then be...

Let's discuss and coordinate ideas here to avoid crossing or unnecessary work. Feel free to add to (or remove from) the list. - [ ] Merge nuspec and AssemblyInfo into...

### 1. Replace AwaitableSocketAsyncEventArgs in SocketExtensions The existing AwaitableSocketAsyncEventArgs is useful in principal for being reusable in order to save on allocations. However, we don't reuse it and the implementation...

This should make troubleshooting apps easier

Originally this was just an exercise to further increase coverage for `AesCipher` when using padding, but it turns out padding is not implemented correctly at all: it is not added...