问题标签 [std-expected]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c++ - C++ 中的 std::expected 是什么?
在最受尊敬的 stackoverflow 答案之一中,我找到了一个std::expected
模板类用法示例:
C++20 中的协程是什么?
同时,我在 cppreference.com 上找不到任何关于此类的提及。你能解释一下它是什么吗?
c++ - 为什么 std::expected 中没有单子操作?
在 C++23 中,采用了单子操作 in std::optional
,后来又采用了std::expected
. 为什么像and_then
,transform
和之类的单子操作or_else
没有包含在主要论文中?