Skip to main content

Module range

Module range 

Source
Expand description

Range type for Foundation.

Corresponds to Foundation/NSRange.hpp.

§C++ Equivalent

namespace NS {
struct Range {
    static Range Make(UInteger loc, UInteger len);
    Range(UInteger loc, UInteger len);
    bool     Equal(const Range& range) const;
    bool     LocationInRange(UInteger loc) const;
    UInteger Max() const;
    UInteger location;
    UInteger length;
} _NS_PACKED;
}

Structs§

Range
A structure used to describe a portion of a series.