/* * Copyright (c) 2008-2024 Jonathan Schleifer * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import #import "OFNumber+NSObject.h" #import "OFInvalidArgumentException.h" int _OFNumber_NSObject_reference; @implementation OFNumber (NSObject) - (NSNumber *)NSObject { const char *type = self.objCType; if (strcmp(type, "B") == 0) return [NSNumber numberWithBool: self.boolValue]; else if (strcmp(type, "c") == 0) return [NSNumber numberWithChar: self.charValue]; else if (strcmp(type, "C") == 0) return [NSNumber numberWithUnsignedChar: self.unsignedCharValue]; else if (strcmp(type, "s") == 0) return [NSNumber numberWithShort: self.shortValue]; else if (strcmp(type, "S") == 0) return [NSNumber numberWithUnsignedShort: self.unsignedShortValue]; else if (strcmp(type, "i") == 0) return [NSNumber numberWithInt: self.intValue]; else if (strcmp(type, "I") == 0) return [NSNumber numberWithUnsignedInt: self.unsignedIntValue]; else if (strcmp(type, "l") == 0) return [NSNumber numberWithLong: self.longValue]; else if (strcmp(type, "L") == 0) return [NSNumber numberWithUnsignedLong: self.unsignedLongValue]; else if (strcmp(type, "q") == 0) return [NSNumber numberWithLongLong: self.longLongValue]; else if (strcmp(type, "Q") == 0) return [NSNumber numberWithUnsignedLongLong: self.unsignedLongLongValue]; else if (strcmp(type, "f") == 0) return [NSNumber numberWithFloat: self.floatValue]; else if (strcmp(type, "d") == 0) return [NSNumber numberWithDouble: self.doubleValue]; @throw [OFInvalidArgumentException exception]; } @end