libdart
libdart copied to clipboard
Add support for exception constrained environments
Dart targets high performance streaming environments, but many such environments have mandates against using exceptions, which Dart doesn't currently have a good answer for.
This may take the form of adding overloads that use return codes, or something like std::expected, don't know, but we need some answer to this other than "just get everything right all of the time so exceptions aren't thrown."