Lines Matching refs:tt
27 We could just as well have written <tt>template <class T></tt>; the keywords \c typename and …
49 <tt>mat.topLeftCorner(3,3)</tt> as the parameter \c src, then this is copied into a temporary varia…
75 …ived2 in the example). That means that the compiler cannot know that <tt>dst.triangularPart</tt> is
77 parameter. Another possibility would be that <tt>dst.triangularPart</tt> is a member variable with …
78 symbol refering to the <tt>operator<()</tt> function. In fact, the compiler should choose the se…
79 possibility, according to the standard. If <tt>dst.triangularPart</tt> is a member template (as in …
80 the programmer should specify this explicitly with the \c template keyword and write <tt>dst.templa…
81 triangularPart</tt>.
85 …example, \c dst is a dependent name because it is of type <tt>MatrixBase<Derived1></tt> whic…
87 - If the code contains either one of the contructions <tt>xxx.yyy</tt> or <tt>xxx->yyy</tt> and …
89 \c yyy, leading to <tt>xxx.template yyy</tt> or <tt>xxx->template yyy</tt>.
90 - If the code contains the contruction <tt>xxx::yyy</tt> and \c xxx is a dependent name and \c yyy …
92 <tt>typename xxx::yyy</tt>.