Twitter Image Pipline v2.21.5 Release Notes

    • 👍 Adopt direct support for Objective-C code and eliminate PRIVATE_SELF C function pattern
      • Preserves Objective-C calling syntax for better code legibility (less C-style calls interleaving ObjC)
      • Safer than PRIVATE_SELF C functions (don't need to check self != nil)
      • Avoids awkward self->_ivar access in the direct methods (can stick with just using _ivar)
      • Same low binary overhead as private C functions