@@ -159,15 +159,10 @@ /*! * @brief The OFNumber as a `size_t`. */ @property (readonly, nonatomic) size_t sizeValue; -/*! - * @brief The OFNumber as an `ssize_t`. - */ -@property (readonly, nonatomic) ssize_t sSizeValue; - /*! * @brief The OFNumber as a `ptrdiff_t`. */ @property (readonly, nonatomic) ptrdiff_t ptrDiffValue; @@ -365,18 +360,10 @@ * @param value The `size_t` value which the OFNumber should contain * @return A new autoreleased OFNumber */ + (instancetype)numberWithSize: (size_t)value; -/*! - * @brief Creates a new OFNumber with the specified `ssize_t`. - * - * @param value The `ssize_t` value which the OFNumber should contain - * @return A new autoreleased OFNumber - */ -+ (instancetype)numberWithSSize: (ssize_t)value; - /*! * @brief Creates a new OFNumber with the specified `ptrdiff_t`. * * @param value The `ptrdiff_t` value which the OFNumber should contain * @return A new autoreleased OFNumber @@ -599,19 +586,10 @@ * @param value The `size_t` value which the OFNumber should contain * @return An initialized OFNumber */ - (instancetype)initWithSize: (size_t)value; -/*! - * @brief Initializes an already allocated OFNumber with the specified - * `ssize_t`. - * - * @param value The `ssize_t` value which the OFNumber should contain - * @return An initialized OFNumber - */ -- (instancetype)initWithSSize: (ssize_t)value; - /*! * @brief Initializes an already allocated OFNumber with the specified * `ptrdiff_t`. * * @param value The `ptrdiff_t` value which the OFNumber should contain