rubyx/lib/parfait/space.rb
Torsten Ruger aaf6da8808 make object derivation explicit
in parfait
2015-04-08 20:33:15 +03:00

14 lines
371 B
Ruby

# A Space is a collection of pages. It stores objects, the data for the objects,
# not references. See Page for more detail.
# Pages are stored by the object size they represent in a hash.
# Space and Page work together in making *new* objects available.
# "New" is slightly misleading in that normal operation only ever
# recycles objects.
class Space < Object
end