MinMaxLocResult

Objective-C

@interface MinMaxLocResult : NSObject

Swift

class MinMaxLocResult : NSObject

Result of operation to determine global minimum and maximum of an array

Properties

  • Declaration

    Objective-C

    @property double minVal

    Swift

    var minVal: Double { get set }
  • Declaration

    Objective-C

    @property double maxVal

    Swift

    var maxVal: Double { get set }
  • Declaration

    Objective-C

    @property Point2i* minLoc

    Swift

    var minLoc: Point2i { get set }
  • Declaration

    Objective-C

    @property Point2i* maxLoc

    Swift

    var maxLoc: Point2i { get set }

Constructors