Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
23
- C++11 unless otherwise specified
Sign in to like and favorite skills
Follow Boost C++ Libraries Javadoc style:
/**@param for function parameters@tparam for template parameters, except:
Args...) — omit@param)@return for return value details@pre for preconditions@post for postconditions@throws for exceptions@note for important notes@see for cross-references@code / @endcode for examples/** Return the size of the buffer sequence. @param buffers The buffer sequence to measure. @return The total byte count. */ template<class BufferSequence> std::size_t buffer_size(BufferSequence const& buffers);
No
@tparam needed—BufferSequence is evident from @param buffers.
/** Return the default value. @tparam T The value type. */ template<class T> T default_value();
@tparam needed—T has no corresponding function parameter.