Say I have an object "car" with attributes color and speed.
Classical approach:
Car A = hash A with keys color and speed
Car B = hash B with keys color and speed
Inside out approach:
Car A = one hash for color, another for speed
Car B = one hash for color, another for speed