-
Notifications
You must be signed in to change notification settings - Fork 17
Improve and repair some docs #142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Wrong docs were applied to `emplace`, and added details to other functions.
include/beman/optional/optional.hpp
Outdated
| * @brief Nullopt assignment operator. | ||
| * | ||
| * @return optional& | ||
| * |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[pre-commit] reported by reviewdog 🐶
| * | |
| * |
include/beman/optional/optional.hpp
Outdated
| * @tparam F | ||
| * @param f | ||
| * @return auto | ||
| * |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[pre-commit] reported by reviewdog 🐶
| * | |
| * |
include/beman/optional/optional.hpp
Outdated
| * | ||
| * @details | ||
| * The return type is the same as \tcode{std::invoke_result_t<F, T&>}, | ||
| * but wrapped in an optional. The function \p f must return an optional type. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[pre-commit] reported by reviewdog 🐶
| * but wrapped in an optional. The function \p f must return an optional type. | |
| * but wrapped in an optional. The function \p f must return an optional type. |
include/beman/optional/optional.hpp
Outdated
| * @tparam F | ||
| * @param f | ||
| * @return optional<std::invoke_result_t<F, T&>> | ||
| * |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[pre-commit] reported by reviewdog 🐶
| * | |
| * |
include/beman/optional/optional.hpp
Outdated
| * @return optional | ||
| * @details | ||
| * The return type is the same as the return type of \p f, which must | ||
| * return an optional type. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[pre-commit] reported by reviewdog 🐶
| * return an optional type. | |
| * return an optional type. |
Pull Request Test Coverage Report for Build 17786715427Details
💛 - Coveralls |
Fix whitespace issues.
Wrong docs were applied to
emplace, and added details to other functions.