Top "Inline" questions

Use this tag for questions specifically about the effects of the inline keyword, together with the appropriate language tag.

Inline IF statement for ItemIndex asp:Repeater VB.NET

I am trying to do an inline IF statement inside a asp:Repeater control to add a class to the …

asp.net vb.net inline asprepeater
MethodImplOptions.AggressiveInlining vs TargetedPatchingOptOut

What is the difference between the MethodImplAttribute with the option MethodImplOptions.AggressiveInlining and the TargetedPatchingOptOut? When I searched on Google …

c# .net inline jit ngen
C++ inline functions using GCC - why the CALL?

I have been testing inline function calls in C++. Thread model: win32 gcc version 4.3.3 (4.3.3-tdm-1 mingw32) Stroustrup in The C++ …

c++ inline tdm-mingw
Forward declaration of inline functions

I have a header file that is going to contain a large amount (30+) of inline functions. Rather than having the …

c++ c inline c99 forward-declaration
files served with content-disposition: inline still sometimes prompt for download

My subject line says most of what I'm asking. I've got a web site that outputs reports in various formats (…

internet-explorer http inline content-disposition
css - dynamic width horizontal lists

I'm trying to build a horizontal list based menu. In this menu, the two left floated menu links are fixed …

list css inline horizontallist
Cython inline function with numpy array as parameter

Consider code like this: import numpy as np cimport numpy as np cdef inline inc(np.ndarray[np.int32_t] …

python performance numpy inline cython
decreasing cache misses through good design

How to decrease the number of possible cache misses when designing a C++ program? Does inlining functions help every time? …

c++ caching inline
"Microsoft Edge PDF inline issue" Same Issue Again

I'm still having the same issue that was previously reported and answered under Microsoft Edge PDF inline issue even though …

pdf inline mime-types content-disposition microsoft-edge
inline vs. constexpr?

With the new C++11 standard, when should I use the inline keyword over the constexpr keyword? Does the constexpr keyword …

c++ optimization c++11 inline constexpr