Top "Internals" questions

The internals tag denotes questions about how things work, as opposed to how to accomplish something specific.

How to get array of bits in a structure?

I was pondering (and therefore am looking for a way to learn this, and not a better solution) if it …

c++ c internals
Python generator objects: __sizeof__()

This may be a stupid question but I will ask it anyway. I have a generator object: >>> …

python generator internals
Python string interning

While this question doesn't have any real use in practice, I am curious as to how Python does string interning. …

python string python-internals internals string-interning
How does c# figure out the hash code for an object?

This question comes out of the discussion on tuples. I started thinking about the hash code that a tuple should …

c# hash internals
Internals of Spring Framework and other IoC containers

I've been using spring for some time, but I always wondered how does it work, more specifically, how do they …

java spring jvm internals
How to do internal interfaces visible for Moq?

I have 3 project in my C# solution. Signatures Structures Tests Signatures has public and internal interfaces. Also it has [assembly: …

c# unit-testing nunit moq internals
How does object_id assignment work?

I'm playing around with Ruby's .object_id and noticed that, in several sequential sessions of irb, I get these identical …

ruby internals
Should I use internal or public visibility by default?

I'm a pretty new C# and .NET developer. I recently created an MMC snapin using C# and was gratified by …

c# .net public internals
STL internals: deque implementation

I am using a std::deque for storing a large collection of items. I know that deques is implemented as …

c++ stl internals
Are Git's pack files deltas rather than snapshots?

One of the key differences between Git and most other version control systems is that the others tend to store …

git version-control internals