Getting the Max number from a set of numbers
Quote from Forum Archives on April 4, 2022, 10:07 pmPosted by: richlove <richlove@...>
The following works in Objective-C
But how is this done in FutureBasic? (without using a C Function)
NSArray *unsortedArray = @[ @2, @44, @11, @99, @35 ];
NSNumber *maxNumber = [unsortedArray valueForKeyPath:@"@max.self"];
NSLog(@"%@", maxNumber); // 99
Rich
Carnation Software
MacWise Terminal emulation for Macintosh
http://www.CarnationSoftware.com
512 858-9234
--
To unsubscribe, send ANY message to: [email protected] To access the list archives, go to: http://freegroups.net/groups/futurebasic/
Posted by: richlove <richlove@...>
The following works in Objective-C
But how is this done in FutureBasic? (without using a C Function)
NSArray *unsortedArray = @[ @2, @44, @11, @99, @35 ];
NSNumber *maxNumber = [unsortedArray valueForKeyPath:@"@max.self"];
NSLog(@"%@", maxNumber); // 99
Rich
Carnation Software
MacWise Terminal emulation for Macintosh
http://www.CarnationSoftware.com
512 858-9234
--
To unsubscribe, send ANY message to: [email protected] To access the list archives, go to: http://freegroups.net/groups/futurebasic/