15
votes
17answers
1k views
Why should I ever use inline code?
I'm a C/C++ developer, and here are a couple of questions that always baffled me.
Is there a big difference between "regular" code and inline code?
Which is the main difference?
Is inline code …
13
votes
11answers
2k views
What is wrong with using inline functions?
While it would be very convenient to use inline functions at some situations,
Are there any drawbacks with inline functions?
Conclusion:
Apparently, There is nothing wrong with using inline …
11
votes
10answers
1k views
What Does It Mean For a C++ Function To Be Inline?
See title: what does it mean for a C++ function to be inline?
11
votes
9answers
2k views
Benefits of inline functions in C++?
What is the advantages/disadvantages of using inline functions in C++? I see that it only increase performance for the code that the compiler output but with today's optimized compilers, fast CPUs, …
8
votes
5answers
3k views
Animating inline elements with JQuery
I am trying to show and hide an inline element (eg a span) using jquery. If I just use toggle(), it works as expected but if I use toggle("slow") to give it an animation, it turns the span into a …
7
votes
12answers
415 views
C++: When should I write the keyword ‘inline’ for a function/method?
Main Question
When should I write the keyword
'inline' for a function/method in
C++?
Edit:
Questions added by seeing some answers...
When should I not write the
keyword 'inline' …
6
votes
4answers
597 views
display:block inside display:inline
I want to understand what happens when an element whose CSS is display:block is a DOM child of an element whose CSS is display:inline (so that the block element is a child of an inline element).
This …
6
votes
4answers
480 views
Isn’t C++’s inline totally optional?
I have a class that had an inline member, but I later decided that I wanted to remove the implementation from the headers so I moved the members body of the functions out to a cpp file. At first I …
6
votes
8answers
1k views
Are inline virtual functions really a non-sense?
I got this question when I received a code review comment saying virtual functions need not be inline.
I thought inline virtual functions could come in handy in scenarios where functions are called …
5
votes
4answers
310 views
Delphi 2010 inlining useless?!
What is the go with inlining functions or procedures in Delphi (specifically v2010 here, but I had the same issue with Turbo Delphi)?
There is some discalimer in the help about it may not always …
5
votes
8answers
232 views
If its bad to use inline SQL, how does using LINQ to perform queries differ in practice?
Whats the general consensus on using LINQ to perform quieries and manipulation inline and how does this differ to embedding SQL statements into your code which is considered a no no.
5
votes
9answers
619 views
Can I check if the C# compiler inlined a method call?
I'm writing an XNA game where I do per-pixel collision checks. The loop which checks this does so by shifting an int and bitwise ORing and is generally difficult to read and understand.
I would like …
5
votes
7answers
550 views
When should I use __forceinline instead of inline?
Visual Studio includes support for __forceinline. The Microsoft Visual Studio 2005 documentation states:
The __forceinline keyword overrides
the cost/benefit analysis and relies
on the …
4
votes
4answers
249 views
return by value inline functions
I'm implementing some math types and I want to optimize the operators to minimize the amount of memory created, destroyed, and copied. To demonstrate I'll show you part of my Quaternion …
4
votes
3answers
179 views
What is this x86 inline assembly doing?
I came across this code and need to understand what it is doing. It just seems to be declaring two bytes and then doing nothing...
uint64_t x;
__asm__ __volatile__ (".byte 0x0f, 0x31" : "=A" (x));
…
