@@ -40,10 +40,22 @@ * Modifying the returned array directly is allowed and will change the contents * of the data. */ @property (readonly, nonatomic) void *mutableItems OF_RETURNS_INNER_POINTER; +/*! + * @brief The first item of the OFMutableData or `NULL`. + */ +@property OF_NULLABLE_PROPERTY (readonly, nonatomic) void *mutableFirstItem + OF_RETURNS_INNER_POINTER; + +/*! + * @brief The last item of the OFMutableData or `NULL`. + */ +@property OF_NULLABLE_PROPERTY (readonly, nonatomic) void *mutableLastItem + OF_RETURNS_INNER_POINTER; + /*! * @brief Creates a new OFMutableData with an item size of 1. * * @return A new autoreleased OFMutableData */