Changes between Initial Version and Version 1 of ParrotDeprecationsFor4.0

Show
Ignore:
Timestamp:
09/02/11 20:20:17 (10 years ago)
Author:
plobsing
Comment:

document FPA.set_pmc deprecation

Legend:

Unmodified
Added
Removed
Modified
  • ParrotDeprecationsFor4.0

    v1 v1  
     1= Parrot Deprecations for 4.0 = 
     2 
     3== FixedPMCArray.set_pmc == 
     4 
     5The set_pmc vtable, commonly accessed via the "assign" op, has been moved from FixedPMCArray to ResizablePMCArray. 
     6 
     7=== Rationale === 
     8 
     9This operation is potentially-resizing. It therefore stands to reason that a fixed-size array should not implement this interface. 
     10 
     11=== Replacement === 
     12 
     13If you need this operation, you should be using ResizablePMCArray, which still implements this interface.