Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion talk/expert/cpp20spaceship.tex
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@
\end{block}
\begin{exampleblock}{3 types of ordering}
\begin{description}[partial]
\item[strong] exactly one test among \cppinline{<0}, \cppinline{==0}, and \cppinline{>0} will return \cppinline{true}
\item[strong] exactly one test among \cppinline{<0}, \cppinline{==0}, and \cppinline{>0} will return \cppinline{true};
\begin{itemize}
\item equivalent values are indistinguishable, i.e.\ all members that take part in the comparison are equal
\end{itemize}
\item[weak] like strong but two \emph{equivalent} values may differ
\begin{itemize}
\item they are however \emph{equivalent} for ranking
Expand Down
2 changes: 1 addition & 1 deletion talk/expert/perfectforwarding.tex
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@

\begin{frame}[fragile]
\frametitlecpp[11]{Perfect forwarding}
\begin{exampleblock}{Example - putting it all together}
\begin{exampleblock}{Example - putting it all together \hfill \cppinsightLink{https://cppinsights.io/s/21f8fe90}}
\begin{cppcode}
template <typename... T>
void wrapper(T&&... args) {
Expand Down
2 changes: 1 addition & 1 deletion talk/expert/variadictemplate.tex
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@

\begin{frame}[fragile]
\frametitlecpp[14]{\texttt{std::integer\_sequence}}
\begin{exampleblock}{Example - make\_from\_tuple with helper}
\begin{exampleblock}{Example - make\_from\_tuple with helper \hfill \cppinsightLink{https://cppinsights.io/s/f4200401}}
\begin{cppcode*}{}
template<typename T,
typename... Args, std::size_t... Is>
Expand Down