Nick Strupat
Nick Strupat
Hi! Thanks for all your hard work on this project so far. I'm wondering if you have plans or designs to implement `anyOf`, `allOf`, `oneOf`, `not` as a schema generation...
I've been generating a fairly complex schema using your library. It's been a pleasure to use for the most part! That said, I've run into what I believe to be...
Have you thought about adding this project as a package to vcpkg?
Like this: ```csharp readonly struct OneOf { private readonly Object? value; private readonly Int32 index; public OneOf(T0 value) => (this.value, index) = (value, 1); // Start at 1 since all...
Hi! Thanks for the awesome work here. I've been tinkering with it for the past couple of evenings. I've been testing for potential performance improvements by switching from `std::vector` &...
I could put together a PR if you're open to trying it out. https://github.com/mcintyre321/OneOf
This way, any byte-representation can be used as a key.
Assuming the Node.js scripting from .NET Core support has been put off until .NET Core settles down, that time has come! What needs to be done on that front? I'm...
Wondering if it's something you've thought about. Semantically, I'm thinking it'd be equivalent to this: ```csharp public void Foo(ref int i) { if (Unsafe.IsNullRef(ref i)) throw ...; ... } ```
Hi folks, I was just perusing some implementations of `Result` types and noticed yours doesn't seem to handle the case where a `Result` instance has been default-initialized. I'm wondering if...